/* ================================================
   DOVAR LABS — Design System v2
   DOVAR LABS fidelity upgrade: density, motion, trust
   ================================================ */

/* --- Custom Properties --- */
:root {
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  --font-display: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --bg-deepest: #0F172A;
  --bg-deep: #0A192F;
  --bg-section: #0F172A;
  --bg-card: #1E293B;
  --bg-card-hover: #334155;
  --bg-card-solid: #1E293B;
  --bg-input: #0F172A;
  --bg-nav: rgba(15, 23, 42, 0.92);

  --accent: #00e5bc;
  --accent-bright: #00ffd1;
  --accent-dim: #00b894;
  --accent-gradient: linear-gradient(135deg, #00e5bc 0%, #00b894 100%);
  --accent-glow: 0 0 20px rgba(0, 229, 188, 0.15);
  --accent-glow-strong: 0 0 36px rgba(0, 229, 188, 0.3);

  --gold: #f59e0b;
  --gold-dim: #d97706;
  --green: #10b981;
  --green-bright: #34d399;
  --red: #ef4444;

  --text-primary: #e8ecf2;
  --text-secondary: #93A2B7;
  --text-muted: #5a6679;
  --text-accent: var(--accent);

  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 229, 188, 0.15);
  --border-accent-hover: rgba(0, 229, 188, 0.4);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.25);
  --shadow-card-hover: 0 6px 32px rgba(0, 0, 0, 0.35);

  --container: 1200px;
  --container-narrow: 780px;

  --section-py: 48px;
  --section-py-mobile: 32px;
  --gap: 20px;
  --gap-lg: 28px;

  --nav-height: 64px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-deepest);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-bright); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Ambient Background (subtle, non-hero pages only) --- */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 10%, rgba(0, 229, 188, 0.03) 0%, transparent 100%),
    radial-gradient(ellipse 500px 500px at 80% 60%, rgba(0, 229, 188, 0.02) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; color: var(--text-primary); }
h1 { font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
.text-accent { color: var(--accent); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-gradient,
.hero__title-accent {
  --hero-accent-gradient: linear-gradient(90deg, #64FFDA, #FFD700, #64FFDA, #FFD700, #64FFDA);
  background: var(--hero-accent-gradient);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  animation: title-shimmer 4s ease-in-out infinite;
}
.page-hero__accent {
  display: inline;
  unicode-bidi: isolate;
  direction: inherit;
  white-space: normal;
}
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
}
.section-subtitle.centered { margin-left: auto; margin-right: auto; }
.section-header { margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header.text-left { text-align: left; }
.section-header.text-left .section-subtitle { margin-left: 0; margin-right: 0; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.container--narrow { max-width: var(--container-narrow); }
.section {
  padding: var(--section-py) 0;
  position: relative;
}
.section--alt { background: var(--bg-section); }
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* --- Background Grid Texture --- */
.bg-grid { position: relative; }
.bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 188, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 188, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
.bg-grid > * { position: relative; z-index: 1; }

/* Section edge glow */
.section--alt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 188, 0.12), transparent);
}
.section--alt::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 188, 0.08), transparent);
}

/* ================================================
   NAVIGATION
   ================================================ */
.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-logo span { color: var(--accent); font-weight: 700; }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent-gradient);
  color: #000;
  box-shadow: var(--accent-glow);
}
.btn-primary:hover {
  box-shadow: var(--accent-glow-strong);
  transform: translateY(-1px);
  color: #000;
}
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-accent);
}
.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(0, 229, 188, 0.06);
  color: var(--accent);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-sm svg { width: 18px; height: 18px; vertical-align: -4px; margin-right: 2px; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: var(--radius-md); }

/* ================================================
   TRUST STRIP
   ================================================ */
.trust-strip {
  background: linear-gradient(90deg, rgba(0, 229, 188, 0.06) 0%, rgba(0, 229, 188, 0.1) 50%, rgba(0, 229, 188, 0.06) 100%);
  border-bottom: 1px solid rgba(0, 229, 188, 0.1);
  padding: 8px 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: var(--nav-height);
}
.trust-strip .trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.trust-strip .divider {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0F172A 0%, #0A192F 40%, #0F172A 60%, #0d1f3c 100%);
  background-size: 400% 400%;
  animation: gradient-shift 20s ease infinite;
  will-change: background-position;
}

@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero__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: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 65%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  will-change: transform;
  animation: glow-drift 25s ease-in-out infinite alternate;
}

@keyframes glow-drift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(30px, -20px); }
}

.hero__glow--1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -10%;
  right: -5%;
  opacity: 0.08;
}

.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: var(--accent-bright);
  bottom: -5%;
  left: -5%;
  opacity: 0.06;
  animation-direction: alternate-reverse;
  animation-duration: 30s;
}

.hero__glow--3 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: 40%;
  left: 20%;
  opacity: 0.05;
  animation-duration: 28s;
}

/* Floating geometric shapes */
.hero__shape {
  position: absolute;
  border: 1px solid rgba(100, 255, 218, 0.06);
  pointer-events: none;
  animation: shape-drift 20s ease-in-out infinite alternate;
}

.hero__shape--1 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  top: 12%;
  right: 10%;
}

.hero__shape--2 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  bottom: 18%;
  left: 6%;
  border-color: rgba(255, 215, 0, 0.04);
  animation-duration: 25s;
  animation-direction: alternate-reverse;
}

.hero__shape--3 {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  top: 30%;
  left: 12%;
  animation-duration: 18s;
}

.hero__shape--4 {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  bottom: 12%;
  right: 18%;
  border-color: rgba(100, 255, 218, 0.04);
  animation-duration: 22s;
  animation-direction: alternate-reverse;
}

@keyframes shape-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, -15px); }
}

/* Rising particles */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__particles span {
  position: absolute;
  bottom: -5%;
  left: var(--x);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: rgba(100, 255, 218, 0.7);
  box-shadow: 0 0 10px rgba(100, 255, 218, 0.5), 0 0 25px rgba(100, 255, 218, 0.2);
  animation: particle-rise var(--d) var(--del) linear infinite;
  will-change: transform, opacity;
}

@keyframes particle-rise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  10% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
    transform: translateY(-55vh) scale(1);
  }
  80% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: translateY(-110vh) scale(0.6);
  }
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Two-column layout */
.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero__text {
  text-align: center;
}

/* Badge with shine effect */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(100, 255, 218, 0.08);
  border: 1px solid rgba(100, 255, 218, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero__badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.12), transparent);
  transform: translateX(-100%);
  animation: badge-shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badge-shine {
  0% { transform: translateX(-100%); }
  25% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* Title */
.hero__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* Animated gradient accent */
@keyframes title-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Button shimmer effect */
.btn--shimmer {
  position: relative;
  overflow: hidden;
}

.btn--shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.btn--shimmer:hover::after {
  transform: translateX(100%);
}

/* Social Proof */
.hero__proof {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.hero__review-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__review-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
}

.hero__review-arrow:hover {
  border-color: rgba(100, 255, 218, 0.3);
  color: var(--accent);
  background: rgba(100, 255, 218, 0.05);
}

.hero__review-card {
  width: 100%;
  max-width: 480px;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 60px rgba(100, 255, 218, 0.05);
  transition: opacity 0.4s ease;
}

.hero__review-card--fading {
  opacity: 0;
}

.hero__review-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.hero__review-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0 0 1.5rem;
}

.hero__review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(100, 255, 218, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.hero__review-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.hero__review-verified {
  display: block;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.15rem;
}

.hero__trust {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: border-color 0.2s ease;
}

.hero__trust-badge:hover {
  border-color: rgba(100, 255, 218, 0.2);
}

.hero__trust-badge svg {
  flex-shrink: 0;
}

/* Stats cards */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 800px;
  margin: auto auto 0;
}

.hero__stat-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.hero__stat-card:hover {
  border-color: rgba(100, 255, 218, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(100, 255, 218, 0.08);
}

.hero__stat-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero__stat-value-row {
  display: flex;
  align-items: baseline;
}

.hero__stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  font-family: monospace;
  line-height: 1.2;
}

.hero__stat-value--static {
  font-size: 1.35rem;
  font-family: var(--font-primary);
  letter-spacing: -0.01em;
}

.hero__stat-symbol {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.hero__stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: block;
  margin-top: 0.1rem;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero__scroll a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.hero__scroll a:hover {
  color: var(--accent);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-8px); }
  60% { transform: translateX(-50%) translateY(-4px); }
}

/* Responsive */
@media (min-width: 640px) {
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero__layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .hero__text {
    text-align: left;
  }

  .hero__subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__review-card {
    max-width: none;
  }
}

@media (max-width: 639px) {
  .hero__glow {
    filter: blur(80px);
  }

  .hero__shape {
    display: none;
  }

  .hero__glow--3 {
    display: none;
  }
}

/* ================================================
   TRUST CHIPS
   ================================================ */
.trust-chips-row {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.trust-chips-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(100, 255, 218, 0.08);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.18);
  color: rgba(226, 232, 240, 0.9);
  font-weight: 500;
  white-space: nowrap;
  transition: var(--transition);
}

.trust-chip:hover {
  border-color: rgba(100, 255, 218, 0.14);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.trust-chip .chip-icon {
  color: var(--accent);
  font-size: 0.9rem;
  margin-inline-end: 8px;
}

.trust-chip strong { color: var(--text-primary); }

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--bg-deep);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}

.about__value:hover {
  border-color: rgba(100, 255, 218, 0.2);
}

.about__value h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.about__value p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* About card */
.about__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.about__card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
}

.about__card-header i {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.about__card-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.about__card-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-md);
}

.about__card-stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  font-family: monospace;
}

.about__card-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  display: block;
}

.about__card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Pipeline card */
.about__card--pipeline .about__card-header span {
  font-family: monospace;
  letter-spacing: 0;
}

.about__pipeline {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.about__pipeline-step {
  display: flex;
  gap: 1rem;
}

.about__pipeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 14px;
}

.about__pipeline-node::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(100, 255, 218, 0.4);
  flex-shrink: 0;
}

.about__pipeline-node::after {
  content: '';
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, rgba(100, 255, 218, 0.3), rgba(100, 255, 218, 0.05));
}

.about__pipeline-step:last-child .about__pipeline-node::after {
  display: none;
}

.about__pipeline-info {
  padding-bottom: 1.5rem;
}

.about__pipeline-step:last-child .about__pipeline-info {
  padding-bottom: 0;
}

.about__pipeline-label {
  display: block;
  font-family: monospace;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.about__pipeline-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (min-width: 640px) {
  .about__values {
    grid-template-columns: 1fr 1fr;
  }

  .about__card-stats {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  background: var(--bg-deepest);
  padding-bottom: 2rem;
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  border-color: rgba(100, 255, 218, 0.15);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card--featured {
  border-color: rgba(100, 255, 218, 0.2);
  box-shadow: var(--shadow-glow);
}

.product-card--featured::before {
  opacity: 1;
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  background: rgba(100, 255, 218, 0.15);
  color: var(--accent-bright);
  border: 1px solid rgba(100, 255, 218, 0.25);
}

.product-card__badge--gold {
  background: rgba(255, 215, 0, 0.15);
  color: #FFE44D;
  border-color: rgba(255, 215, 0, 0.25);
}

.product-card__badge--new {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  border-color: rgba(34, 197, 94, 0.25);
}

.product-card__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-card__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
}

.product-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card__platform {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  font-family: monospace;
}

.product-card__name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.product-card__meta {
  margin-bottom: 1rem;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.stars {
  display: flex;
  gap: 2px;
}

.star-filled {
  width: 16px;
  height: 16px;
  color: #FFD700;
  fill: #FFD700;
}

.star-partial {
  width: 16px;
  height: 16px;
  color: #FFD700;
  fill: none;
}

.product-card__reviews {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.82rem;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.tag--risk-low {
  background: rgba(34, 197, 94, 0.08);
  color: var(--success);
  border-color: rgba(34, 197, 94, 0.2);
}

.tag--risk-med {
  background: rgba(245, 158, 11, 0.08);
  color: var(--warning);
  border-color: rgba(245, 158, 11, 0.2);
}

.product-card__performance {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.65rem 0.85rem;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.product-card__price {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: monospace;
  color: var(--text-primary);
}

@media (min-width: 640px) {
  .products__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .products__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  background: var(--bg-deepest);
  padding: 1.5rem 0 3rem;
}

.reviews__carousel {
  position: relative;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Override fade-in for cards inside carousel */
.reviews__carousel .review-card {
  opacity: 1;
  transform: none;
}

.review-card {
  flex: 0 0 100%;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease;
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 3.5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: var(--accent);
  opacity: 0.12;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(100, 255, 218, 0.15);
}

.review-card__stars {
  display: flex;
  gap: 2px;
}

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
  margin: 0;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(100, 255, 218, 0.1);
  border: 1px solid rgba(100, 255, 218, 0.2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.review-card__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.review-card__product {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* Carousel Arrows */
.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
  padding: 0;
}

.reviews__arrow:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}

.reviews__arrow--prev {
  left: 0.75rem;
}

.reviews__arrow--next {
  right: 0.75rem;
}

/* Carousel Dots */
.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.reviews__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.reviews__dot:hover {
  background: var(--text-muted);
}

.reviews__dot--active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.reviews__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
  text-align: center;
}

.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.reviews__badge i {
  color: var(--success);
}

@media (min-width: 640px) {
  .review-card {
    flex: 0 0 calc(50% - 0.625rem);
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 calc(33.333% - 0.834rem);
  }
}

@media (max-width: 639px) {
  .reviews__arrow {
    width: 36px;
    height: 36px;
  }

  .reviews__arrow--prev {
    left: 0.5rem;
  }

  .reviews__arrow--next {
    right: 0.5rem;
  }
}

/* ============================================
   SIGNALS
   ============================================ */
.signals {
  background: var(--bg-deep);
}

.signals__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.signal-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  padding-bottom: 1.25rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.signal-card:hover {
  border-color: rgba(100, 255, 218, 0.15);
  box-shadow: var(--shadow-card);
}

.signal-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.signal-card__header h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.signal-card__status {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  flex-shrink: 0;
}

.signal-card__status--active {
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

/* SVG Chart */
.signal-card__chart {
  margin: 0 -1.5rem;
  height: 80px;
  overflow: hidden;
}

.signal-chart {
  width: 100%;
  height: 100%;
  display: block;
}

.signal-chart__line {
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Line draw animation */
.signal-card .signal-chart__line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  transition: stroke-dashoffset 1.5s ease-out;
}

.signal-card .signal-chart__area {
  opacity: 0;
  transition: opacity 1s ease-out 0.5s;
}

.signal-card.visible .signal-chart__line,
.fade-in.visible .signal-chart__line {
  stroke-dashoffset: 0;
}

.signal-card.visible .signal-chart__area,
.fade-in.visible .signal-chart__area {
  opacity: 1;
}

.signal-card__growth {
  text-align: center;
  padding: 0.6rem 0 0.75rem;
}

.signal-card__growth-value {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: monospace;
}

.signal-card__growth-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.1rem;
}

.signal-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.signal-card__detail-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.1rem;
}

.signal-card__detail-value {
  font-size: 0.85rem;
  font-weight: 600;
}

.signal-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s ease;
}

.signal-card__link:hover {
  color: var(--accent-bright);
}

.signals__cta {
  text-align: center;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .signals__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .signals__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  background: var(--bg-deepest);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem 1.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

/* Gradient accent line at top */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Subtle corner glow decoration */
.feature-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(100, 255, 218, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  transition: all var(--transition-slow);
  pointer-events: none;
}

.feature-card:hover {
  border-color: rgba(100, 255, 218, 0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover), 0 0 40px rgba(100, 255, 218, 0.06);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::after {
  transform: scale(1.5);
  opacity: 1;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(100, 255, 218, 0.06);
  border: 1px solid rgba(100, 255, 218, 0.12);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  color: var(--accent);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-card__icon i {
  width: 26px;
  height: 26px;
}

.feature-card:hover .feature-card__icon {
  background: rgba(100, 255, 218, 0.12);
  border-color: rgba(100, 255, 218, 0.3);
  box-shadow: 0 0 25px rgba(100, 255, 218, 0.12);
  transform: scale(1.08);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .why-us__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .why-us__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--bg-deepest);
}

.faq__list {
  max-width: 740px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  min-height: 48px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq__item.active .faq__answer {
  max-height: 600px;
  padding-bottom: 1.25rem;
}

.faq__answer p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--bg-deep);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact__info p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.contact__channel:hover {
  border-color: rgba(100, 255, 218, 0.2);
  background: var(--bg-card-hover);
}

.contact__channel-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(100, 255, 218, 0.08);
  border-radius: var(--radius-md);
  color: var(--accent);
  flex-shrink: 0;
}

.contact__channel-icon i {
  width: 20px;
  height: 20px;
}

.contact__channel h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.contact__channel p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Contact form */
.contact__form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  min-height: 44px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(100, 255, 218, 0.03);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  --footer-secondary-color: var(--text-muted);
  --footer-heading-color: var(--text-secondary);
  --footer-disclaimer-bg: var(--surface-slate, rgba(255, 255, 255, 0.02));
  --footer-disclaimer-border-color: var(--surface-slate-border, var(--border));
  --footer-disclaimer-shadow: var(--surface-slate-shadow, none);
  --footer-disclaimer-color: rgba(226, 232, 240, 0.82);
  --footer-disclaimer-strong-color: var(--text-primary);
  background: var(--bg-deepest);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}

.footer__secondary-text,
.footer__secondary-link {
  color: var(--footer-secondary-color);
}

.footer__secondary-link {
  transition: color 0.2s ease;
}

.footer__secondary-link:hover {
  color: var(--accent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__brand {
  max-width: 320px;
}

.footer__brand .navbar__logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.footer__brand p {
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer__tagline,
.footer__copyright {
  margin: 0;
}

.footer__links h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
  color: var(--footer-heading-color);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.88rem;
}

.footer__disclaimer {
  padding: 1.05rem 1.2rem;
  background: var(--footer-disclaimer-bg);
  border: 1px solid var(--footer-disclaimer-border-color);
  border-radius: 18px;
  box-shadow: var(--footer-disclaimer-shadow);
  margin-bottom: 1.5rem;
}

.footer__disclaimer p {
  font-size: 0.78rem;
  color: var(--footer-disclaimer-color);
  line-height: 1.75;
}

.footer__disclaimer strong {
  color: var(--footer-disclaimer-strong-color);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}


@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ============================================
   LEGAL PAGES (Privacy Policy / Terms)
   ============================================ */
.legal {
  padding-top: 8rem;
}

.legal .container {
  max-width: 800px;
}

.legal h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal__updated {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.legal h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.legal p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.35rem;
}

.legal ul li strong {
  color: var(--text-primary);
}

.legal a {
  color: var(--accent);
  transition: color 0.2s ease;
}

.legal a:hover {
  color: var(--accent-bright);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  background: var(--bg-deep);
  overflow: hidden;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
  position: relative;
  padding-top: 1rem;
}

/* Connecting track between badges — desktop only */
.steps::before {
  content: '';
  position: absolute;
  top: calc(1rem + 17px);
  left: calc(12.5% + 17px);
  right: calc(12.5% + 17px);
  height: 2px;
  background: linear-gradient(90deg,
    rgba(100, 255, 218, 0.06),
    rgba(100, 255, 218, 0.25) 15%,
    rgba(100, 255, 218, 0.25) 85%,
    rgba(100, 255, 218, 0.06)
  );
  z-index: 1;
}

.step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}

.step:hover {
  border-color: rgba(100, 255, 218, 0.25);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover), 0 0 40px rgba(100, 255, 218, 0.08);
}

/* Accent gradient line at top of card */
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 0 0 4px 4px;
}

.step__number {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--bg-deepest);
  font-size: 0.8rem;
  font-weight: 800;
  font-family: monospace;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
  transition: all 0.3s ease;
  border: 3px solid var(--bg-deep);
  margin: 0;
}

.step:hover .step__number {
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 0 30px rgba(100, 255, 218, 0.5);
}

.step__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(100, 255, 218, 0.06);
  border: 1px solid rgba(100, 255, 218, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 1.25rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.step__icon i {
  width: 28px;
  height: 28px;
}

.step:hover .step__icon {
  background: rgba(100, 255, 218, 0.12);
  border-color: rgba(100, 255, 218, 0.3);
  box-shadow: 0 0 30px rgba(100, 255, 218, 0.12);
  transform: scale(1.08);
}

.step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.step__desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.steps__cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem;
  }

  .steps::before {
    display: none;
  }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(30, 41, 59, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--accent);
}

.cookie-banner__text a:hover {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
}

/* ============================================
   404 ERROR PAGE
   ============================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 5rem;
}

.error-page__content {
  max-width: 500px;
}

.error-page__code {
  display: block;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  font-family: monospace;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.error-page__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deepest);
}

::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.2);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: rgba(100, 255, 218, 0.3);
  color: var(--text-primary);
}

/* ============================================
   TELEGRAM FLOATING BUTTON
   ============================================ */
.telegram-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.telegram-fab__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  color: #fff;
  box-shadow:
    0 4px 16px rgba(42, 171, 238, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  order: 2;
}

.telegram-fab__btn:hover {
  transform: scale(1.1);
  box-shadow:
    0 6px 24px rgba(42, 171, 238, 0.5),
    0 3px 10px rgba(0, 0, 0, 0.3);
}

.telegram-fab__btn:active {
  transform: scale(0.95);
}

.telegram-fab__icon {
  width: 28px;
  height: 28px;
}

/* Tooltip */
.telegram-fab__tooltip {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  order: 1;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.telegram-fab:hover .telegram-fab__tooltip {
  opacity: 1;
  transform: translateX(0);
}

.telegram-fab__tooltip-arrow {
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid rgba(255, 255, 255, 0.1);
}

/* Entrance animation */
.telegram-fab__btn {
  animation: fab-enter 0.6s ease 1s both;
}

@keyframes fab-enter {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Pulse ring */
.telegram-fab__btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(42, 171, 238, 0.4);
  animation: fab-pulse 3s ease-in-out infinite;
}

@keyframes fab-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.15); opacity: 0; }
}

/* Mobile: smaller, tighter to corner */
@media (max-width: 639px) {
  .telegram-fab {
    bottom: 1rem;
    right: 1rem;
  }

  .telegram-fab__btn {
    width: 50px;
    height: 50px;
  }

  .telegram-fab__icon {
    width: 24px;
    height: 24px;
  }

  .telegram-fab__tooltip {
    display: none;
  }
}

/* ============================================
   PERFORMANCE & ACCESSIBILITY
   ============================================ */

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .hero__gradient,
  .hero__glow,
  .hero__scroll,
  .hero__shape,
  .hero__particles span,
  .hero__badge::after,
  .hero__title-accent,
  .text-gradient,
  .telegram-fab__btn,
  .telegram-fab__btn::after {
    animation: none;
  }

  .hero__title-accent,
  .text-gradient {
    background-position: 0% 50%;
  }

  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   MOBILE RESPONSIVE FIXES
   ============================================ */

/* Prevent horizontal overflow globally */
html {
  overflow-x: hidden;
}

/* Medium mobile (< 768px) */
@media (max-width: 767px) {
  :root {
    --container-padding: 1rem;
    --section-padding: 4rem 0;
  }

  .section__title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .section__desc {
    font-size: 0.95rem;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  .hero__badge {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
  }

  .hero__review-card {
    padding: 1.5rem;
  }

  .hero__review-text {
    font-size: 0.9rem;
  }

  .hero__stat-card {
    padding: 0.85rem 1rem;
  }

  .hero__stat-value {
    font-size: 1.35rem;
  }

  .hero__stat-label {
    font-size: 0.65rem;
  }

  .about__text {
    font-size: 0.95rem;
  }

  .product-card {
    padding: 1.5rem;
  }

  .product-card__name {
    font-size: 1.25rem;
  }

  .product-card__desc {
    font-size: 0.85rem;
  }

  .product-card__price {
    font-size: 1.4rem;
  }

  .signal-card__growth-value {
    font-size: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem 1.25rem;
  }

  .feature-card h3 {
    font-size: 1rem;
  }

  .feature-card p {
    font-size: 0.82rem;
  }


  .faq__question {
    font-size: 0.92rem;
    padding: 1rem 0;
  }

  .contact__form-wrapper {
    padding: 1.5rem;
  }

  .footer__disclaimer {
    padding: 1rem;
  }

  .footer__disclaimer p {
    font-size: 0.72rem;
  }

  .cookie-banner {
    padding: 1rem;
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__text {
    font-size: 0.82rem;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner__actions .btn {
    min-height: 44px;
    padding: 0.6rem 1.5rem;
  }

  .signal-card__details {
    gap: 0.75rem;
  }

  .signal-card__detail-label {
    font-size: 0.7rem;
  }

  .signal-card__detail-value {
    font-size: 0.88rem;
  }
}

/* Small mobile (< 480px) */
@media (max-width: 479px) {
  :root {
    --container-padding: 0.875rem;
    --section-padding: 3rem 0;
  }

  .section__header {
    margin-bottom: 2.5rem;
  }

  .section__title {
    font-size: 1.4rem;
  }

  .hero {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }

  .hero__title {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
  }

  .hero__subtitle {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .hero__stat-card {
    padding: 0.65rem 0.6rem;
    gap: 0.5rem;
  }

  .hero__stat-svg {
    width: 18px;
    height: 18px;
  }

  .hero__stat-value {
    font-size: 1.1rem;
  }

  .hero__stat-value--static {
    font-size: 0.95rem;
  }

  .hero__stat-label {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  .hero__stat-symbol {
    font-size: 0.9rem;
  }

  .hero__review-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero__review-arrow {
    display: none;
  }

  .hero__review-card {
    padding: 1.25rem;
  }

  .hero__review-stars svg {
    width: 16px;
    height: 16px;
  }

  .hero__review-text {
    font-size: 0.85rem;
  }

  .hero__trust {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero__trust-badge {
    width: 100%;
    justify-content: center;
  }

  .about__value {
    padding: 0.85rem;
  }

  .about__value h4 {
    font-size: 0.85rem;
  }

  .about__value p {
    font-size: 0.78rem;
  }

  .about__card {
    padding: 1.5rem;
  }

  .about__card-stat-value {
    font-size: 1.6rem;
  }

  .product-card {
    padding: 1.25rem;
  }

  .product-card__icon {
    width: 60px;
    height: 60px;
  }

  .product-card__name {
    font-size: 1.15rem;
  }

  .product-card__desc {
    font-size: 0.82rem;
  }

  .product-card__price {
    font-size: 1.25rem;
  }

  .product-card__footer {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .product-card__footer .btn {
    width: 100%;
    justify-content: center;
  }

  .review-card {
    padding: 1.25rem;
  }

  .review-card__text {
    font-size: 0.85rem;
  }

  .signal-card {
    padding: 1.25rem;
  }

  .signal-card__growth-value {
    font-size: 1.35rem;
  }

  .signal-card__details {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 0.5rem;
  }

  .signal-card__detail-label {
    font-size: 0.62rem;
  }

  .signal-card__detail-value {
    font-size: 0.78rem;
  }

  .feature-card {
    padding: 1.25rem 1rem;
  }

  .feature-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .feature-card__icon i {
    width: 22px;
    height: 22px;
  }

  .step {
    padding: 2rem 1.25rem 1.5rem;
  }

  .step__icon {
    width: 52px;
    height: 52px;
  }

  .step__icon i {
    width: 24px;
    height: 24px;
  }

  .step__title {
    font-size: 1rem;
  }

  .step__desc {
    font-size: 0.8rem;
  }


  .faq__question {
    font-size: 0.88rem;
    min-height: 48px;
    padding: 0.85rem 0;
  }

  .faq__icon {
    width: 18px;
    height: 18px;
    margin-left: 0.75rem;
  }

  .faq__answer p {
    font-size: 0.85rem;
  }

  .contact__channel {
    padding: 0.85rem;
  }

  .contact__channel-icon {
    width: 38px;
    height: 38px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 1rem;
  }

  .cookie-banner__actions {
    flex-direction: row;
    width: 100%;
  }

  .cookie-banner__actions .btn {
    flex: 1;
    min-height: 44px;
    justify-content: center;
  }

  .contact__form-wrapper {
    padding: 1.25rem;
  }

  .footer__grid {
    gap: 1.5rem;
  }

  .footer__brand p {
    font-size: 0.82rem;
  }

  .footer__links h4 {
    font-size: 0.78rem;
  }

  .footer__links a {
    font-size: 0.82rem;
  }

  .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
  }

  .btn--lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .navbar__logo {
    font-size: 1.2rem;
  }

}

/* Extra small mobile (< 360px) */
@media (max-width: 359px) {
  :root {
    --container-padding: 0.75rem;
  }

  .hero__title {
    font-size: 1.5rem;
  }

  .hero__stat-card {
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
    padding: 0.5rem 0.4rem;
  }

  .hero__stat-value {
    font-size: 1rem;
  }

  .hero__stat-svg {
    width: 16px;
    height: 16px;
  }

  .section__title {
    font-size: 1.25rem;
  }

  .product-card__icon {
    width: 52px;
    height: 52px;
  }

  .signal-card__details {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 0.4rem;
  }

  .signal-card__detail-label {
    font-size: 0.58rem;
  }

  .signal-card__detail-value {
    font-size: 0.72rem;
  }
}

/* ============================================
   LANGUAGE SELECTOR
   ============================================ */
.lang-selector {
  position: relative;
  z-index: 100;
}

.lang-selector-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lang-selector-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.lang-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-chevron {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  transition: transform 0.2s ease;
}

.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.15s ease;
  overflow: hidden;
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--accent);
  background: rgba(100, 255, 218, 0.06);
}

.lang-option .lang-flag {
  font-size: 1.15rem;
}

.lang-option-name {
  flex: 1;
}

.lang-option .lang-check {
  width: 14px;
  height: 14px;
  opacity: 0;
}

.lang-option.active .lang-check {
  opacity: 1;
  color: var(--accent);
}

@media (max-width: 768px) {
  .lang-selector-btn {
    padding: 0.3rem 0.5rem;
    font-size: 0.8rem;
  }
  .lang-dropdown {
    min-width: 150px;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent-gradient);
  color: #030712;
  box-shadow: 0 2px 12px rgba(100, 255, 218, 0.25);
}

.btn--primary:hover {
  box-shadow: 0 4px 24px rgba(100, 255, 218, 0.4);
  transform: translateY(-1px);
}

.btn--outline {
  border: 1px solid var(--border);
  color: var(--text-primary);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(100, 255, 218, 0.05);
}

.btn--lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(6, 10, 19, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-right: 1.5rem;
}

.logo-text {
  color: var(--text-primary);
}

.logo-accent {
  color: var(--accent);
}

.navbar__links {
  display: none;
  align-items: center;
  gap: 1.25rem;
}

.navbar__links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.navbar__links a:hover {
  color: var(--text-primary);
}

.navbar__ctas {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
}

.navbar__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.navbar__toggle:active {
  background: rgba(255, 255, 255, 0.06);
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.navbar__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--accent);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--accent);
}

/* Desktop nav */

/* ============================================
   DOVAR LABS COMPONENT SYSTEM
   Unified styles for all Dovar Labs pages
   ============================================ */

/* --- Page Hero (used on products, about, why-dovar, insights, faq, contact, terms, privacy) --- */
.page-hero {
  padding: 7rem 0 2.5rem;
  background: var(--bg-deepest);
  position: relative;
  text-align: start;
}
.page-hero {
  --page-hero-intro-max: 80ch;
  --page-hero-heading-max: 24ch;
  --page-hero-subtitle-max: 72ch;
}
.page-hero .container {
  display: grid;
  gap: clamp(0.9rem, 1.6vw, 1.35rem);
  justify-items: start;
  max-width: min(100%, var(--page-hero-container-max, var(--container)));
}
.page-hero .section-label,
.page-hero .section__label { margin-bottom: 0.75rem; }
.page-hero h1 {
  max-inline-size: min(var(--page-hero-heading-max), 100%);
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  text-wrap: pretty;
  overflow-wrap: normal;
}
.page-hero .section-subtitle,
.page-hero .section__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: min(var(--page-hero-subtitle-max), 100%);
  margin: 0;
  line-height: 1.72;
}
.page-hero__intro {
  display: grid;
  gap: clamp(0.72rem, 1vw, 0.98rem);
  width: min(100%, var(--page-hero-intro-max));
  max-width: none;
  margin: 0 auto;
  justify-items: center;
  text-align: center;
}
.page-hero__intro > :is(.section-label, .section__label, h1, .section-subtitle, .section__desc, .page-hero__actions) {
  margin: 0;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.78rem;
}
.page-hero--wide-copy {
  --page-hero-intro-max: 92ch;
  --page-hero-heading-max: 25ch;
  --page-hero-subtitle-max: 80ch;
}
.page-hero--collection {
  --page-hero-intro-max: 88ch;
  --page-hero-heading-max: 24.5ch;
  --page-hero-subtitle-max: 78ch;
}
.page-hero--collection h1 {
  margin-inline: 0;
  text-wrap: pretty;
  overflow-wrap: normal;
}
.page-hero--collection .text-gradient {
  display: inline;
}
.page-hero.bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 188, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 188, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
}

/* --- Section Label alias (shared Dovar Labs label treatment) --- */
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* --- Section Header alignment --- */
.section-header { margin-bottom: 2rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header.text-left { text-align: left; }
.section-header.text-left .section-subtitle { margin-left: 0; }

/* --- Section padding override for tighter section density --- */
.section { padding: 3.5rem 0; position: relative; }
.section--alt {
  background: var(--bg-deep);
}
.section--alt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 188, 0.08), transparent);
}

/* --- Card Component (Dovar Labs system quality) --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.card:hover {
  border-color: rgba(0, 229, 188, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-3px);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(0, 229, 188, 0.08);
  border: 1px solid rgba(0, 229, 188, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

/* --- Product Card (catalog page) --- */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card:hover {
  border-color: rgba(0, 229, 188, 0.15);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
  color: inherit;
}
.product-card:hover::before { opacity: 1; }

.product-card-image {
  padding: 1.5rem 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 120px;
}
.product-card-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}
.product-card-body {
  padding: 0 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.product-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  flex: 1;
}
.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.product-card-tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.product-card-tag.risk-low {
  background: rgba(34, 197, 94, 0.08);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.2);
}
.product-card-tag.risk-med {
  background: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
  border-color: rgba(245, 158, 11, 0.2);
}
.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.product-card-price {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-primary);
}
.product-card-price.free {
  color: var(--accent);
}
.product-card-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
}
.product-card-rating .stars {
  color: #FFD700;
  letter-spacing: 1px;
}
.product-card-rating .count {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
}
.badge-mt5 {
  background: rgba(0, 229, 188, 0.12);
  color: var(--accent);
  border: 1px solid rgba(0, 229, 188, 0.25);
}
.badge-ea {
  background: rgba(99, 102, 241, 0.12);
  color: #818cf8;
  border: 1px solid rgba(99, 102, 241, 0.25);
}
.badge-util {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.badge-indi {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.25);
}
.badge-lib {
  background: rgba(168, 85, 247, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(168, 85, 247, 0.25);
}
.badge-free {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.badge-new {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

/* --- Product Detail Page --- */
.product-hero-section {
  padding: 7rem 0 3rem;
  background: var(--bg-deepest);
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.product-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-height: 240px;
}
.product-info h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.product-info-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.product-promise {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.product-price-block {
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: rgba(0, 229, 188, 0.04);
  border: 1px solid rgba(0, 229, 188, 0.12);
  border-radius: var(--radius-md);
}
.product-price-value {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.product-price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.product-cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.product-icon {
  color: var(--accent);
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.feature-list li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
}
.feature-list.not-list li::before {
  content: '✗';
  color: var(--red);
}

/* --- Button Aliases (old Dovar class → new) --- */
.btn-primary {
  background: var(--accent-gradient);
  color: #030712;
  box-shadow: 0 2px 12px rgba(0, 229, 188, 0.25);
}
.btn-primary:hover {
  box-shadow: 0 4px 24px rgba(0, 229, 188, 0.4);
  transform: translateY(-1px);
  color: #030712;
}
.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text-primary);
  background: transparent;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 229, 188, 0.05);
}

/* --- About Section (index about lane) --- */
.about {
  background: var(--bg-deep);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
.about__text {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.7;
}
.about__values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
.about__value {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}
.about__value:hover {
  border-color: rgba(0, 229, 188, 0.2);
}
.about__value h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.about__value p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.about__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Icon accent */
.icon-accent {
  color: var(--accent);
  flex-shrink: 0;
  font-style: normal;
}

/* --- Grid Section Gap --- */
.grid-section-gap { gap: 1.5rem; }

/* --- CTA Section --- */
.section.bg-grid { text-align: center; }
.section.bg-grid .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* --- Contact Page Extras --- */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.3s ease;
}
.contact-card:hover {
  border-color: rgba(0, 229, 188, 0.15);
}

/* --- Insight Article Layout --- */
.insight-content {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.insight-content h2 {
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.insight-content h3 {
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.insight-content p {
  margin-bottom: 1.25rem;
}
.insight-content ul,
.insight-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.insight-content li {
  margin-bottom: 0.5rem;
  list-style: disc;
}
.insight-content code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: rgba(255,255,255,0.06);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  color: var(--accent);
}

/* --- Responsive: Grid breakpoints --- */
@media (min-width: 640px) {
  .about__values {
    grid-template-columns: 1fr 1fr;
  }
  .product-hero-grid {
    grid-template-columns: auto 1fr;
  }
}

@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

@media (max-width: 1023px) {
  .grid-2 { grid-template-columns: 1fr !important; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .page-hero { padding: 7rem 0 2rem; }
  .page-hero h1 { font-size: 1.8rem; }
  .section { padding: 3rem 0; }
  .product-hero-section { padding: 6rem 0 2rem; }
  .product-hero-grid { grid-template-columns: 1fr; }
}

/* --- Footer secondary link hover uses the shared footer token system --- */

/* --- Trust Badge in footer --- */
.hero__trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  background: rgba(0, 229, 188, 0.06);
  border: 1px solid rgba(0, 229, 188, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
}

/* ============================================
   INSIGHT CARDS
   ============================================ */
.insight-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.insight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insight-card:hover {
  border-color: rgba(0, 229, 188, 0.2);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
  color: inherit;
}
.insight-card:hover::before { opacity: 1; }
.insight-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  height: 80px;
  background: rgba(0, 229, 188, 0.04);
  border-bottom: 1px solid var(--border);
  color: var(--accent);
}
.insight-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.insight-card-date {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}
.insight-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-primary);
}
.insight-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Responsive: smaller sections on mobile --- */
@media (max-width: 767px) {
  .section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 1.5rem; }
  .insight-card-image { height: 60px; font-size: 1.5rem; }
}

/* ============================================
   DOVAR LABS PATCH — UI/UX, bug fixes, and performance
   ============================================ */
:root {
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --gradient-text: linear-gradient(135deg, #00e5bc 0%, #00b894 100%);
  --shadow-glow: 0 12px 40px rgba(0, 229, 188, 0.18);
  --success: var(--green-bright);
  --warning: var(--gold);
  --transition-base: var(--transition);
  --transition-fast: 0.2s ease;
}

html {
  color-scheme: dark;
}

main {
  display: block;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 3000;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-card-solid);
  color: var(--text-primary);
  border: 1px solid var(--border-accent-hover);
  box-shadow: var(--shadow-card);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

body.menu-open {
  overflow: hidden;
}

.navbar__links a.active {
  color: var(--text-primary);
  position: relative;
}

.navbar__links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: var(--radius-full);
}

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.content-split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.form-status {
  display: none;
  margin-top: 0.85rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-status[data-state="success"],
.form-status[data-state="error"] {
  display: block;
}

.form-status[data-state="success"] {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #a7f3d0;
}

.form-status[data-state="error"] {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.24);
  color: #fecaca;
}

.hero__review-card {
  position: relative;
}

.hero__review-arrow.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 991px) {
  .content-split-layout,
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .catalog-toolbar__top {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .catalog-toolbar {
    padding: 1rem;
  }

  .catalog-chip {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   DOVAR LABS PREMIUM TUNING — round 2
   ============================================ */
.skip-link { display: none !important; }

.navbar {
  padding: 0.9rem 0;
  background: transparent;
}

.navbar__inner {
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  border-radius: 24px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(9, 15, 28, 0.28), rgba(9, 15, 28, 0.16));
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), padding var(--transition-base);
}

.navbar.scrolled {
  padding: 0.65rem 0;
  background: transparent;
  border-bottom: none;
}

.navbar.scrolled .navbar__inner {
  background: linear-gradient(135deg, rgba(12, 20, 36, 0.92), rgba(8, 14, 28, 0.86));
  border-color: rgba(100, 255, 218, 0.11);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.navbar__links {
  gap: 0.95rem;
}

.navbar__links a {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.76);
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.navbar__links a.active::after { display: none; }

.navbar__ctas {
  gap: 0.6rem;
}

.navbar__ctas .btn {
  border-radius: 999px;
}

.navbar__toggle {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.navbar__toggle:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(100, 255, 218, 0.12);
}

@media (min-width: 1080px) {
  .navbar__links { display: flex; }
  .navbar__ctas { display: flex; }
  .navbar__toggle { display: none; }
}

@media (max-width: 1079px) {
  .navbar__logo {
    margin-right: 0;
  }

  .navbar__links,
  .navbar__ctas { display: none; }
}

.home-catalog-section .section__header,
.home-catalog-section .catalog-style-header {
  max-width: 760px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.catalog-grid {
  gap: 1.5rem;
}

.home-catalog-section .product-card {
  height: 100%;
  padding: 1.55rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.78), rgba(10, 14, 26, 0.92));
  box-shadow: 0 22px 40px rgba(2, 6, 23, 0.2);
}

.home-catalog-section .product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 255, 218, 0.14);
  box-shadow: 0 30px 56px rgba(2, 6, 23, 0.32);
}

.home-catalog-section .card-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem !important;
  border-radius: 16px;
  background: rgba(100, 255, 218, 0.08);
  border: 1px solid rgba(100, 255, 218, 0.12);
}

.home-catalog-section h3,
.home-catalog-section h4 {
  font-size: 1.06rem;
  letter-spacing: -0.01em;
}

.home-catalog-section p {
  line-height: 1.7;
}

.catalog-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 991px) {
  .catalog-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .catalog-grid--4 {
    grid-template-columns: 1fr;
  }
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  line-height: 1;
  vertical-align: middle;
}

.rating-stars svg {
  width: 16px;
  height: 16px;
  fill: #FFD700;
  color: #FFD700;
  flex-shrink: 0;
}

.hero__review-stars svg {
  width: 20px;
  height: 20px;
}

.rating-stars--inline {
  justify-content: flex-end;
  margin-right: 0.45rem;
}

.rating-count {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

.product-card__rating .rating-stars,
.product-card-rating .rating-stars,
.review-card-stars.rating-stars,
.review-card__stars.rating-stars {
  min-height: 16px;
}

@media (max-width: 767px) {
  .navbar { padding: 0.75rem 0; }
  .navbar__inner { padding: 0.8rem 0.95rem; border-radius: 20px; }
}

/* ============================================
   DOVAR LABS PATCH — navbar rollback + mobile premium + catalog labels
   ============================================ */
.hero__review-stars {
  color: #FFD700;
}

.hero__review-stars svg {
  fill: #FFD700;
  color: #FFD700;
}

.home-catalog-section .section__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
}

.navbar {
  padding: 1rem 0;
  background: transparent;
}

.navbar__inner {
  gap: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.72rem 0;
}

.navbar.scrolled .navbar__inner {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.navbar__links {
  gap: 1.25rem;
}

.navbar__links a {
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transform: none;
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text-primary);
  background: transparent;
}

.navbar__links a.active::after {
  display: block;
}

.navbar__ctas .btn {
  border-radius: var(--radius-md);
}

.navbar__toggle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  box-shadow: none;
}

.navbar__toggle:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: transparent;
}

@media (max-width: 1079px) {
  .navbar {
    padding: 0.8rem 0;
  }

  .navbar__inner {
    gap: 1rem;
  }

  .navbar__toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  }

  .navbar__toggle:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(100, 255, 218, 0.12);
  }

}

/* ============================================
   DOVAR LABS UI POLISH — pages round 4
   ============================================ */
.insights-archive .grid-section-gap {
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.insights-archive .insight-card {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(8, 12, 24, 0.98));
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.2);
}

.insights-archive .insight-card::before {
  height: 2px;
}

.insights-archive .insight-card-image {
  display: none !important;
}

.insights-archive .insight-card-body {
  padding: 1.45rem 1.45rem 1.55rem;
  gap: 0.7rem;
}

.insights-archive .insight-card-date {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  background: rgba(100, 255, 218, 0.08);
  border: 1px solid rgba(100, 255, 218, 0.12);
}

.insights-archive .insight-card-title {
  font-size: 1.15rem;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.insights-archive .insight-card-desc {
  font-size: 0.92rem;
  line-height: 1.7;
}

.insight-page {
  padding: 8.5rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(100,255,218,0.08), transparent 32%),
    radial-gradient(circle at top right, rgba(255,215,0,0.05), transparent 28%),
    linear-gradient(180deg, rgba(6,10,19,0.96), rgba(6,10,19,1));
}

.insight-detail {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}

.insight-detail > .section-label {
  display: inline-flex;
  margin-bottom: 1rem;
}

.insight-detail > h1 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.insight-meta span {
  display: inline-flex;
  align-items: center;
}

.insight-meta .meta-chip {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.insight-body {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.6rem);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(9, 13, 24, 0.98));
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.28);
  overflow: hidden;
}

.insight-body::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0.95;
}

.insight-body > p:first-child {
  font-size: 1.06rem;
  color: var(--text-primary);
  line-height: 1.9;
}

.insight-body h2 {
  margin-top: 2rem;
  margin-bottom: 0.85rem;
  padding-top: 1.65rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.insight-body h2:first-of-type {
  margin-top: 0.3rem;
  padding-top: 0;
  border-top: 0;
}

.insight-body h3 {
  margin-top: 1.3rem;
  margin-bottom: 0.55rem;
  color: var(--text-primary);
  font-size: 1.04rem;
}

.insight-body p,
.insight-body li {
  color: var(--text-secondary);
  line-height: 1.82;
}

.insight-body ul,
.insight-body ol {
  margin: 0.9rem 0 0.9rem 1.2rem;
}

.insight-body li + li {
  margin-top: 0.45rem;
}

.insight-body a {
  color: var(--accent-bright);
}

.insight-body blockquote,
.article-note {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid rgba(100,255,218,0.5);
  background: rgba(100,255,218,0.06);
  border-radius: 16px;
  color: var(--text-primary);
}

.article-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.article-cta__copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.article-cta__copy p {
  margin: 0;
}

.article-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

.article-cta__actions .btn {
  justify-content: center;
}

.article-placeholder {
  display: grid;
  gap: 1rem;
}

.article-placeholder .placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.article-placeholder .placeholder-card {
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.custom-dev-page .page-hero .container,
.legal-page .page-hero .container {
  max-width: min(100%, var(--page-hero-container-max, 1120px));
}

.metric-strip {
  --metric-strip-columns: repeat(4, minmax(0, 1fr));
  --metric-strip-gap: 1rem;
  --metric-pill-padding: 1rem 1.05rem;
  --metric-pill-title-size: 1.12rem;
  --metric-pill-title-line-height: 1.18;
  --metric-pill-copy-size: 0.84rem;
  --metric-pill-copy-line-height: 1.62;
  display: grid;
  grid-template-columns: var(--metric-strip-columns);
  gap: var(--metric-strip-gap);
  margin-top: 2rem;
}

.metric-strip--compact {
  --metric-pill-title-size: 1.06rem;
}

.metric-strip--long-copy {
  --metric-strip-columns: repeat(4, minmax(0, 1fr));
  --metric-strip-gap: 0.95rem;
  --metric-pill-padding: 1.08rem 1.12rem;
  --metric-pill-title-size: 1.04rem;
  --metric-pill-copy-size: 0.92rem;
  --metric-pill-copy-line-height: 1.68;
}

.metric-pill {
  min-width: 0;
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 0.34rem;
  padding: var(--metric-pill-padding);
  border-radius: 20px;
}

.metric-pill strong {
  display: block;
  margin: 0;
  color: var(--text-primary);
  font-size: var(--metric-pill-title-size);
  line-height: var(--metric-pill-title-line-height);
  letter-spacing: -0.03em;
}

.metric-pill span {
  display: block;
  color: var(--text-secondary);
  font-size: var(--metric-pill-copy-size);
  line-height: var(--metric-pill-copy-line-height);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card,
.promo-card {
  border-radius: 24px;
}

.legal-summary,
.legal-card {
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(8, 12, 24, 0.98));
  box-shadow: 0 20px 44px rgba(2, 6, 23, 0.24);
}

.service-card {
  padding: 1.45rem;
  height: 100%;
}

.service-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(100,255,218,0.12);
  background: rgba(100,255,218,0.07);
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card h3,
.promo-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.service-card p,
.promo-card p,
.legal-card p,
.legal-card li,
.legal-summary p,
.legal-summary li {
  color: var(--text-secondary);
  line-height: 1.8;
}

.service-card ul,
.legal-card ul,
.legal-summary ul {
  margin: 0.9rem 0 0 1.1rem;
}

.promo-card {
  padding: 1.6rem;
}

.promo-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 110px;
  padding: 1.4rem;
}

.legal-card {
  padding: 1.55rem;
}

.legal-card + .legal-card {
  margin-top: 1rem;
}

.legal-card h2 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.legal-stack .article-note {
  margin-top: 0;
}

.product-author-link {
  color: var(--text-primary);
  font-weight: 600;
}

@media (max-width: 991px) {
  .service-grid,
  .promo-band,
  .legal-shell,
  .article-cta,
  .article-placeholder .placeholder-grid {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }
}

@media (max-width: 1199px) {
  .metric-strip--long-copy {
    --metric-strip-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .metric-strip {
    --metric-strip-columns: repeat(2, minmax(0, 1fr));
    --metric-strip-gap: 0.78rem;
  }
}

@media (max-width: 767px) {
  .metric-strip--long-copy {
    --metric-strip-columns: 1fr;
    --metric-strip-gap: 0.82rem;
  }
}

@media (max-width: 575px) {
  .metric-strip {
    --metric-strip-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .insight-page {
    padding-top: 7.25rem;
  }

  .insight-detail > h1 {
    max-width: none;
  }

  .metric-pill,
  .service-card,
  .promo-card,
  .legal-card,
  .legal-summary {
    border-radius: 20px;
  }
}

@media (max-width: 767px) {
  .page-hero__actions {
    width: 100%;
    justify-content: stretch;
  }

  .page-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   DOVAR LABS V6 — custom solutions + longform insights
   ============================================ */
.product-detail-layout aside .card.reveal,
.product-detail-layout aside .card.fade-in,
.product-detail-layout aside .card.fade-in-left,
.product-detail-layout aside .card.fade-in-right {
  opacity: 1 !important;
  transform: none !important;
}

.rating-count.rating-count--paren {
  margin-left: 0.05rem;
}

.custom-dev-hero .container {
  max-width: min(100%, var(--page-hero-container-max, 1120px));
}

.custom-dev-hero__actions,
.custom-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.custom-service-grid,
.custom-brief-grid,
.custom-process-grid {
  display: grid;
  gap: 1.25rem;
}

.custom-brief-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.custom-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.75rem;
}

.custom-process-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 24px;
}

.custom-process-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(100,255,218,0.1);
  border: 1px solid rgba(100,255,218,0.14);
  color: var(--accent-bright);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.custom-process-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.custom-process-card p {
  color: var(--text-secondary);
  line-height: 1.75;
}

.custom-dev-cta-band {
  align-items: stretch;
}

.insight-detail {
  max-width: 1180px;
}

.insight-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.5rem;
  align-items: start;
}

.insight-main {
  min-width: 0;
}

.insight-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 1rem;
}

.insight-sidebar__card {
  padding: 1.1rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(8, 12, 24, 0.96));
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.22);
}

.insight-sidebar__eyebrow {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-sidebar__card p,
.insight-sidebar__card li,
.insight-sidebar__card a {
  font-size: 0.88rem;
  line-height: 1.7;
}

.insight-sidebar__card ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insight-sidebar__card a {
  color: var(--text-secondary);
  text-decoration: none;
}

.insight-sidebar__card a:hover,
.insight-sidebar__card a.active {
  color: var(--text-primary);
}

.insight-body {
  padding: clamp(1.6rem, 3.5vw, 3rem);
}

.insight-body > p:first-child {
  font-size: 1.08rem;
  max-width: 72ch;
}

.insight-body p,
.insight-body ul,
.insight-body ol,
.insight-body blockquote,
.insight-body pre,
.insight-body table,
.insight-body figure {
  max-width: 76ch;
}

.insight-body h2,
.insight-body h3,
.insight-body h4,
.insight-body .full-bleed,
.insight-body .article-cta {
  max-width: none;
}

.insight-body h2,
.insight-body h3,
.insight-body h4 {
  scroll-margin-top: 110px;
}

.insight-body img,
.insight-body video,
.insight-body iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 1.2rem 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.insight-body pre {
  overflow-x: auto;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(2, 6, 23, 0.72);
}

.insight-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.92em;
}

.insight-body :not(pre) > code {
  padding: 0.14rem 0.38rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
}

.insight-body table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.insight-body th,
.insight-body td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}

.insight-body th {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}

.insight-related {
  margin-top: 2rem !important;
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88), rgba(8, 12, 24, 0.96));
}

.insight-related h3 {
  margin-bottom: 1rem;
}

.insight-backlink {
  margin-top: 1rem !important;
}

@media (max-width: 1080px) {
  .custom-brief-grid,
  .custom-process-grid,
  .insight-content-grid {
    grid-template-columns: 1fr;
  }

  .insight-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 767px) {
  .custom-dev-hero__actions .btn,
  .custom-contact-list .btn {
    width: 100%;
    justify-content: center;
  }

  .custom-process-card {
    border-radius: 20px;
  }
}

/* ================================================
   DOVAR LABS V8 — brand mark + custom development naming
   ================================================ */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}

.brand-logo__mark {
  width: 1.75rem;
  height: 1.75rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 12px rgba(0, 229, 188, 0.18));
}

.navbar__logo.brand-logo {
  font-size: 1.08rem;
  letter-spacing: 0.08em;
}

.navbar__logo.brand-logo .logo-text,
.navbar__logo.brand-logo .logo-accent,
.nav-logo.brand-logo .logo-text,
.nav-logo.brand-logo .logo-accent {
  line-height: 1;
}

.brand-logo--footer {
  display: inline-flex !important;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 1rem;
  font-size: 1.35rem !important;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-logo--footer .brand-logo__mark {
  width: 1.9rem;
  height: 1.9rem;
}

.brand-logo .logo-text {
  color: var(--text-primary);
}

.brand-logo .logo-accent {
  color: var(--accent);
}

@media (max-width: 767px) {
  .navbar__logo.brand-logo {
    gap: 0.58rem;
    font-size: 0.98rem;
    letter-spacing: 0.06em;
  }

  .brand-logo__mark {
    width: 1.5rem;
    height: 1.5rem;
  }
}

/* ================================================
   DOVAR LABS V9 — source cleanup + editorial polish
   ================================================ */
.btn--with-icon {
  gap: 0.4rem;
}

.btn__label {
  display: inline-flex;
  align-items: center;
}

.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1rem;
}

.footer__trust-badge {
  padding: 0.4rem 0.8rem;
  font-size: 0.72rem;
}

.product-card-image {
  padding: 3.35rem 1.5rem 1.25rem;
  min-height: 156px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.product-card-badges {
  max-width: calc(100% - 2rem);
  flex-wrap: wrap;
  row-gap: 0.35rem;
}

.product-card-thumb,
.product-card-image .product-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-card-thumb {
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.24);
}

.badge {
  line-height: 1.15;
}

.product-hero-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.24);
}

.insight-page {
  padding: 8rem 0 4.5rem;
}

.insight-detail {
  max-width: 1180px;
}

.insight-detail--pro > .section-label,
.insight-detail--pro > h1,
.insight-detail--pro > .insight-meta {
  display: none !important;
}

.insight-hero-panel {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at top right, rgba(100,255,218,0.08), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(9, 13, 24, 0.98));
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.24);
}

.insight-breadcrumb {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--accent-bright);
  text-decoration: none;
}

.insight-breadcrumb:hover {
  color: var(--text-primary);
}

.insight-hero-head {
  display: grid;
  gap: 0.95rem;
}

.insight-hero-panel .section-label {
  width: fit-content;
  margin: 0;
}

.insight-hero-panel h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.insight-lede {
  max-width: 72ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.82;
  color: var(--text-secondary);
}

.insight-meta {
  margin: 0;
}

.meta-chip--author {
  color: var(--text-primary);
  border-color: rgba(100,255,218,0.14) !important;
  background: rgba(100,255,218,0.06) !important;
}

.meta-chip--author,
.meta-chip--date {
  gap: 0.48rem;
}

.meta-chip__author-link,
.meta-chip--proof {
  color: inherit;
  text-decoration: none;
}

.meta-chip__author-link:hover,
.meta-chip__author-link:focus-visible,
.meta-chip--proof:hover,
.meta-chip--proof:focus-visible {
  color: inherit;
}

.meta-chip--proof {
  border-color: rgba(100,255,218,0.16);
  background: rgba(100,255,218,0.08);
  color: var(--text-primary);
}

.meta-chip--date time {
  white-space: nowrap;
}

.insight-body {
  padding: clamp(1.6rem, 3vw, 2.8rem);
  border-radius: 28px;
}

.insight-body > p:first-child {
  font-size: 1.04rem;
  color: var(--text-primary);
}

.insight-body h2 {
  margin-top: 2.3rem;
  margin-bottom: 0.8rem;
  padding-top: 1.4rem;
  font-size: 1.32rem;
}

.insight-body h3 {
  margin-top: 1.35rem;
  font-size: 1.02rem;
}

.insight-body p,
.insight-body li {
  color: var(--text-secondary);
  line-height: 1.86;
}

.insight-toc {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insight-toc__link {
  display: block;
  padding: 0.4rem 0.55rem;
  border-radius: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.insight-toc__link:hover,
.insight-toc__link.active {
  color: var(--text-primary);
  background: rgba(100,255,218,0.08);
  transform: translateX(2px);
}

.insight-toc__link--child {
  padding-left: 1.15rem;
  font-size: 0.84rem;
}

.insight-sidebar__cta {
  width: 100%;
  justify-content: center;
  margin-top: 0.75rem;
}

.insight-related {
  margin-top: 1.5rem !important;
}

.insight-related__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.insight-related__link {
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.insight-related__link:hover {
  border-color: rgba(100,255,218,0.22);
  background: rgba(100,255,218,0.06);
  transform: translateY(-1px);
}

.insight-related__link svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 767px) {
  .product-card-image {
    padding-top: 3.8rem;
  }

  .insight-hero-panel {
    border-radius: 24px;
  }

  .insight-hero-panel h1 {
    max-width: 100%;
  }

  .insight-related__link {
    width: 100%;
  }
}

/* ==================================================
   DOVAR LABS V10 — route architecture + locale UI
   ================================================== */
.navbar__ctas {
  gap: 0.72rem;
}

.lang-switcher {
  position: relative;
  z-index: 40;
}

.lang-switcher__button {
  min-width: 206px;
  padding: 0.76rem 0.95rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid rgba(100, 255, 218, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.14);
}

.lang-switcher__button:hover {
  border-color: rgba(100, 255, 218, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.lang-switcher__button-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  flex: 1;
  min-width: 0;
}

.lang-switcher__button-copy strong {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.lang-switcher__button-copy small {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}

.lang-switcher__globe,
.lang-switcher__chevron {
  flex-shrink: 0;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  right: 0;
  min-width: 270px;
  padding: 0.55rem;
  display: grid;
  gap: 0.35rem;
  border-radius: 20px;
  border: 1px solid rgba(100, 255, 218, 0.12);
  background: linear-gradient(180deg, rgba(14, 22, 38, 0.98), rgba(6, 10, 19, 0.98));
  box-shadow: 0 28px 56px rgba(2, 6, 23, 0.42);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.lang-switcher.is-open .lang-switcher__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-switcher__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  color: rgba(226, 232, 240, 0.88);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid transparent;
  text-decoration: none;
}

.lang-switcher__item:hover,
.lang-switcher__item.is-active {
  color: var(--text-primary);
  border-color: rgba(100, 255, 218, 0.14);
  background: rgba(100, 255, 218, 0.06);
}

.lang-switcher__item-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-switcher__item-name {
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lang-switcher__item-status {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.product-card-image {
  padding: 3.5rem 1.5rem 1.3rem;
  min-height: 160px;
}

.product-card-badges {
  top: 0.95rem;
  left: 0.95rem;
  max-width: calc(100% - 1.9rem);
  flex-wrap: wrap;
  align-items: flex-start;
  row-gap: 0.35rem;
}

.badge {
  padding: 0.28rem 0.62rem;
  line-height: 1.15;
}

.product-card-thumb,
.product-card-image .product-icon {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 14px;
}

.insight-page {
  padding: 7.6rem 0 4.8rem;
  background:
    radial-gradient(circle at top left, rgba(0,229,188,0.08), transparent 22%),
    radial-gradient(circle at top right, rgba(59,130,246,0.08), transparent 20%),
    linear-gradient(180deg, #f6fbff 0%, #eef4fb 54%, #e8f0f9 100%);
}

.insight-detail {
  max-width: 1200px;
}

.insight-hero-panel {
  gap: 1.1rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 1.45rem;
  border-radius: 28px;
  border: 1px solid rgba(15,23,42,0.08);
  background:
    radial-gradient(circle at top right, rgba(0,229,188,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,250,255,0.96));
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.insight-hero-head {
  gap: 0.8rem;
}

.insight-hero-panel h1,
.insight-hero-head h1 {
  max-width: 18ch;
  margin: 0;
  color: #0f172a;
  font-size: clamp(1.56rem, 2.1vw, 2.08rem);
  line-height: 1.14;
  letter-spacing: -0.036em;
}

.insight-lede {
  max-width: 68ch;
  font-size: 1rem;
  line-height: 1.86;
  color: #475569;
}

.insight-meta .meta-chip {
  color: #334155;
  border-color: rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.78);
}

.insight-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.64fr) minmax(280px, 320px);
  gap: 1.45rem;
  align-items: start;
}

.insight-body {
  padding: clamp(1.65rem, 3vw, 2.65rem);
  border-radius: 28px;
  border: 1px solid rgba(15,23,42,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.985), rgba(249,251,255,0.985));
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.insight-body > p:first-child {
  color: #334155;
  font-size: 1.03rem;
  line-height: 1.88;
}

.insight-body h2 {
  margin-top: 2.2rem;
  margin-bottom: 0.8rem;
  padding-top: 1.15rem;
  color: #0f172a;
  font-size: 1.28rem;
}

.insight-body h3 {
  margin-top: 1.15rem;
  color: #0f172a;
  font-size: 1.02rem;
}

.insight-body p,
.insight-body li {
  color: #475569;
  line-height: 1.88;
}

.insight-body strong,
.insight-body a,
.insight-sidebar__card strong {
  color: #0f172a;
}

.insight-body ul,
.insight-body ol {
  padding-left: 1.1rem;
}

.insight-sidebar {
  position: sticky;
  top: 6.8rem;
}

.insight-sidebar__card {
  border-radius: 22px;
  border: 1px solid rgba(15,23,42,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(245,248,253,0.96));
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.insight-sidebar__card p,
.insight-sidebar__card li,
.insight-sidebar__eyebrow,
.insight-toc__link {
  color: #475569;
}

.insight-sidebar__card h3,
.insight-related h3 {
  color: #0f172a;
}

.insight-toc__link {
  border: 1px solid transparent;
}

.insight-toc__link:hover,
.insight-toc__link.active {
  color: #0f172a;
  border-color: rgba(0,229,188,0.16);
  background: rgba(0,229,188,0.08);
}

.article-cta {
  border: 1px solid rgba(15,23,42,0.08);
  background: linear-gradient(180deg, rgba(239,247,255,0.92), rgba(247,252,255,0.98));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.article-cta p,
.article-cta h3 {
  color: #0f172a;
}

.insight-related__link {
  color: #0f172a;
  border-color: rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.84);
}

.insight-related__link:hover {
  background: rgba(0,229,188,0.08);
}

html[dir="rtl"] .lang-switcher__button-copy {
  align-items: flex-end;
}

html[dir="rtl"] .lang-switcher__menu {
  right: auto;
  left: 0;
}

@media (max-width: 1220px) {
  .lang-switcher__button {
    min-width: 190px;
  }
}

@media (max-width: 1079px) {
  .lang-switcher {
    display: none;
  }
}

@media (max-width: 980px) {
  .insight-content-grid {
    grid-template-columns: 1fr;
  }

  .insight-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .insight-page {
    padding: 7rem 0 4rem;
  }

  .insight-hero-panel {
    border-radius: 24px;
  }

  .insight-hero-panel h1,
  .insight-hero-head h1 {
    max-width: 100%;
    font-size: clamp(1.42rem, 7.1vw, 1.84rem);
  }

  .insight-body {
    border-radius: 22px;
  }

}

/* ==================================================
   DOVAR LABS V11 — scalable collections + locale polish
   ================================================== */
.badge-mt4 {
  background: rgba(56, 189, 248, 0.12);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.24);
}

.navbar__ctas {
  gap: 0.78rem;
}

.lang-switcher__button {
  min-width: 228px;
  padding: 0.82rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(100, 255, 218, 0.16);
  background: linear-gradient(180deg, rgba(18, 27, 44, 0.94), rgba(10, 15, 26, 0.94));
  box-shadow: 0 18px 36px rgba(2, 6, 23, 0.2);
}

.lang-switcher__button-copy strong {
  font-size: 1rem;
}

.lang-switcher__button-copy small {
  font-size: 0.68rem;
}

.lang-switcher__menu {
  min-width: 286px;
  border-radius: 22px;
}

.lang-switcher__item {
  grid-template-columns: auto 1fr auto;
  min-height: 56px;
  padding: 0.82rem 0.88rem;
}

.lang-switcher__item-code {
  min-width: 46px;
}

.lang-switcher__item-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: rgba(0, 229, 188, 0.14);
  color: var(--accent-bright);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-inline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
  margin-bottom: 1rem;
}

.product-detail-shell {
  max-width: 1100px;
}

.product-detail-layout--structured {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 340px);
  gap: 1.3rem;
  align-items: start;
}

.product-detail-main {
  display: grid;
  gap: 1.15rem;
}

.product-spec-card,
.product-detail-card {
  padding: 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.16);
}

.product-spec-card h2,
.product-detail-card h4 {
  margin: 0 0 1rem;
  font-size: 1.12rem;
}

.product-spec-card--warning {
  border-color: rgba(245, 158, 11, 0.22);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08), rgba(255, 255, 255, 0.02));
}

.product-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.product-detail-table tr + tr > :is(th, td) {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-detail-table th,
.product-detail-table td {
  padding: 0.76rem 0;
  vertical-align: top;
}

.product-detail-table th {
  width: 42%;
  text-align: start;
  font-weight: 600;
}

.product-detail-table td {
  text-align: right;
}

.product-detail-table__label {
  display: block;
  color: var(--text-muted);
  font-size: 0.76rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-detail-table__value {
  display: grid;
  gap: 0.12rem;
  justify-items: end;
}

.product-detail-table__value--rating {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.22rem;
  width: 100%;
  white-space: nowrap;
  direction: ltr;
}

.product-detail-table__value--rating .rating-stars--inline {
  margin-right: 0;
}

.product-detail-table__value--rating .rating-count--paren {
  margin-left: 0;
  flex: 0 0 auto;
}

@media (max-width: 560px) {
  .product-detail-table__value--rating {
    justify-content: flex-start;
  }

  html[dir="rtl"] .product-detail-table__value--rating {
    justify-content: flex-end;
  }
}

.product-detail-support {
  width: 100%;
  justify-content: center;
}

.product-detail-related {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
}

.product-related__item {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.78rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-secondary);
  text-decoration: none;
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.product-related__item:hover {
  color: var(--text-primary);
  border-color: rgba(100, 255, 218, 0.14);
  background: rgba(100, 255, 218, 0.06);
  transform: translateX(4px);
}

.product-related__emoji {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
}

.section-marketplace-push {
  text-align: center;
}

.section-marketplace-push__inner {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
}

.insight-page {
  padding: 7.35rem 0 4.6rem;
  background:
    radial-gradient(circle at top left, rgba(0, 229, 188, 0.06), transparent 22%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.06), transparent 20%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8fd 54%, #edf4fb 100%);
}

.insight-hero-panel {
  gap: 1rem;
  background:
    radial-gradient(circle at top right, rgba(0, 229, 188, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(249, 252, 255, 0.985));
}

.insight-hero-panel h1,
.insight-hero-head h1 {
  max-width: 20ch;
  font-size: clamp(1.44rem, 1.9vw, 1.92rem);
  line-height: 1.16;
}

.insight-lede {
  max-width: 70ch;
  font-size: 0.98rem;
  line-height: 1.82;
}

.insight-body {
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.07);
}

.insight-body p,
.insight-body li {
  line-height: 1.92;
}

@media (max-width: 1180px) {
  .lang-switcher__button {
    min-width: 210px;
  }
}

@media (max-width: 980px) {
  .product-detail-layout--structured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .lang-switcher__button {
    min-width: 0;
  }

  .product-spec-card,
  .product-detail-card {
    border-radius: 20px;
    padding: 1.15rem;
  }

  .product-detail-table {
    font-size: 0.88rem;
  }

  .insight-hero-panel h1,
  .insight-hero-head h1 {
    max-width: 100%;
    font-size: clamp(1.36rem, 6.9vw, 1.72rem);
  }
}

/* ======================================================================
   DOVAR LABS V12 — locale nav + dark insight editorial
   ====================================================================== */

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.lang-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.lang-switcher {
  position: relative;
  flex: 0 0 auto;
}

.lang-switcher__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 16, 28, 0.84);
  backdrop-filter: blur(14px);
  color: var(--text-primary);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.18);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.lang-switcher__button:hover,
.lang-switcher.is-open .lang-switcher__button {
  transform: translateY(-1px);
  border-color: rgba(100, 255, 218, 0.16);
  background: rgba(12, 21, 36, 0.96);
  box-shadow: 0 16px 34px rgba(2, 6, 23, 0.22);
}

.lang-switcher__button:focus-visible {
  outline: none;
  border-color: rgba(100, 255, 218, 0.26);
  box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.12), 0 16px 34px rgba(2, 6, 23, 0.22);
}

.lang-switcher__button-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.lang-switcher__chevron {
  display: none;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  width: min(286px, 82vw);
  padding: 0.55rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(11, 18, 31, 0.985), rgba(6, 12, 22, 0.985));
  box-shadow: 0 26px 56px rgba(2, 6, 23, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 80;
}

.lang-switcher.is-open .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.lang-switcher__menu-header {
  padding: 0.18rem 0.45rem 0.52rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lang-switcher__menu-list {
  display: grid;
  gap: 0.12rem;
}

.lang-switcher__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.72rem;
  min-height: 46px;
  padding: 0.62rem 0.68rem;
  border-radius: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  border: 1px solid transparent;
}

.lang-switcher__item:hover,
.lang-switcher__item.is-active {
  color: var(--text-primary);
  background: rgba(100, 255, 218, 0.07);
  border-color: rgba(100, 255, 218, 0.12);
  transform: translateX(1px);
}

.lang-switcher__item-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.lang-switcher__item-name {
  font-size: 0.91rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.lang-switcher__item-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  color: var(--accent-bright);
  font-size: 0.6rem;
  font-weight: 800;
}

.navbar__ctas {
  gap: 0.72rem;
}

.product-card-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 212px;
  padding: 2.7rem 1rem 1rem;
  overflow: hidden;
}

.product-card-badges {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  align-items: flex-start;
}

.product-card-thumb,
.product-card-image .product-icon {
  position: relative;
  z-index: 1;
  margin-top: auto;
  width: min(136px, 72%);
  height: auto;
}

.product-card-thumb {
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(2, 6, 23, 0.18));
}

.insight-page {
  padding: 7.25rem 0 4.7rem;
  background:
    radial-gradient(circle at top left, rgba(0, 229, 188, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 22%),
    linear-gradient(180deg, #07101d 0%, #0b1320 55%, #0d1726 100%);
}

.insight-detail--pro {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.insight-hero-panel {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.35rem;
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    radial-gradient(circle at top right, rgba(0,229,188,0.09), transparent 28%),
    linear-gradient(180deg, rgba(15,23,42,0.86), rgba(8,15,28,0.9));
  box-shadow: 0 28px 62px rgba(2, 6, 23, 0.28);
}

.insight-breadcrumb {
  color: var(--text-muted);
  text-decoration: none;
}

.insight-breadcrumb:hover {
  color: var(--accent-bright);
}

.insight-hero-head {
  display: grid;
  gap: 0.8rem;
}

.insight-hero-head h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(1.52rem, 2vw, 2.06rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.insight-lede {
  max-width: 70ch;
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.86;
}

.insight-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(270px, 330px);
  gap: 1.35rem;
  align-items: start;
}

.insight-main,
.insight-sidebar {
  display: grid;
  gap: 1rem;
}

.insight-body,
.insight-sidebar__card,
.insight-related {
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.07);
  background: linear-gradient(180deg, rgba(15,23,42,0.82), rgba(8,15,28,0.9));
  box-shadow: 0 22px 50px rgba(2, 6, 23, 0.22);
}

.insight-body {
  padding: 1.55rem 1.45rem;
}

.insight-sidebar__card,
.insight-related {
  padding: 1.1rem 1.05rem;
}

.insight-body p,
.insight-body li {
  color: var(--text-secondary);
  line-height: 1.9;
}

.insight-body h2,
.insight-body h3 {
  margin-top: 1.7rem;
  color: var(--text-primary);
}

.insight-body a,
.insight-toc__link,
.article-cta a {
  color: var(--accent-bright);
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.78rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: var(--text-secondary);
  font-size: 0.84rem;
}

.insight-sidebar__eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--text-muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-toc {
  display: grid;
  gap: 0.34rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insight-toc__link {
  display: inline-flex;
  width: 100%;
  padding: 0.52rem 0.62rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-secondary);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.insight-toc__link:hover,
.insight-toc__link.active {
  color: var(--text-primary);
  background: rgba(100,255,218,0.08);
  transform: translateX(2px);
}

.insight-toc__link--child {
  padding-left: 1rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.article-cta {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(100,255,218,0.12);
  background: linear-gradient(180deg, rgba(100,255,218,0.06), rgba(255,255,255,0.02));
}

@media (max-width: 1180px) {
  .insight-content-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .navbar__ctas {
    gap: 0.55rem;
  }

  .lang-switcher__menu {
    right: -0.25rem;
  }
}

@media (max-width: 767px) {
  .lang-switcher {
    display: none;
  }

  .insight-page {
    padding-top: 6.5rem;
  }

  .insight-hero-panel,
  .insight-body,
  .insight-sidebar__card,
  .insight-related {
    border-radius: 22px;
  }

  .insight-hero-head h1 {
    max-width: 100%;
    font-size: clamp(1.42rem, 7vw, 1.78rem);
  }
}

html[dir="rtl"] .lang-switcher__menu {
  right: auto;
  left: 0;
  transform-origin: top left;
}

/* ======================================================================
   DOVAR LABS V13 — language selector + slate card surfaces
   ====================================================================== */

.lang-selector {
  position: relative;
  z-index: 110;
  flex: 0 0 auto;
}

.lang-selector-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 42px;
  padding: 0.35rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.85rem;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.lang-selector-btn:hover,
.lang-selector.open .lang-selector-btn {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(100, 255, 218, 0.16);
  color: var(--text-primary);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.24);
}

.lang-selector-btn:focus-visible {
  outline: none;
  border-color: rgba(100, 255, 218, 0.22);
  box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.12), 0 16px 30px rgba(2, 6, 23, 0.24);
}

.lang-selector-btn .lang-flag {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}

.lang-selector-btn .lang-chevron {
  width: 12px;
  height: 12px;
  opacity: 0.55;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 176px;
  padding: 0.35rem;
  background: rgba(11, 18, 31, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  overflow: hidden;
  pointer-events: none;
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 42px;
  padding: 0.58rem 0.72rem;
  border-radius: 14px;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  font-size: 0.86rem;
  color: var(--text-secondary);
  text-decoration: none;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--text-primary);
  background: rgba(100, 255, 218, 0.08);
}

.lang-option .lang-flag {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}

.lang-option-name {
  flex: 1;
  font-weight: 600;
}

.lang-option .lang-check {
  width: 14px;
  height: 14px;
  opacity: 0;
  color: var(--accent-bright);
}

.lang-option.active .lang-check {
  opacity: 1;
}

.navbar__ctas {
  gap: 0.7rem;
}

.home-catalog-section .product-card,
.insights-archive .insight-card,
.insights-archive .metric-pill,
.insight-hero-panel,
.insight-body,
.insight-sidebar__card,
.insight-related,
.article-cta,
.article-note {
  background: var(--surface-slate);
  border-color: var(--surface-slate-border);
  box-shadow: var(--surface-slate-shadow);
}

.home-catalog-section .product-card:hover,
.insights-archive .insight-card:hover {
  background: var(--surface-slate-hover);
  border-color: var(--surface-slate-border-strong);
}

.home-catalog-section .product-card__footer {
  border-top: 1px solid rgba(148, 163, 184, 0.16) !important;
}

.home-catalog-section .product-card__desc,
.home-catalog-section .product-card__reviews,
.home-catalog-section .section__desc,
.insights-archive .insight-card-desc,
.insights-archive .section-subtitle,
.insights-archive .metric-pill span,
.insight-lede,
.insight-body p,
.insight-body li,
.insight-sidebar__card p,
.insight-sidebar__card li,
.meta-chip,
.insight-toc__link,
.article-cta p,
.article-note,
.insight-breadcrumb {
  color: rgba(226, 232, 240, 0.82);
}

.home-catalog-section .product-card__name,
.home-catalog-section h3,
.home-catalog-section h4,
.insights-archive .insight-card-title,
.insight-hero-head h1,
.insight-body h2,
.insight-body h3,
.insight-related h3,
.article-cta h3 {
  color: var(--text-primary);
}

.home-catalog-section .card-icon,
.insights-archive .insight-card-date,
.meta-chip,
.insight-toc__link:hover,
.insight-toc__link.active,
.insight-body blockquote,
.article-note {
  background: rgba(100, 255, 218, 0.08);
  border-color: rgba(100, 255, 218, 0.14);
}

.insights-archive .insight-card-date {
  color: var(--accent-bright);
}

.insight-hero-panel {
  background:
    radial-gradient(circle at top right, rgba(100, 255, 218, 0.1), transparent 34%),
    var(--surface-slate);
}

.meta-chip {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(255, 255, 255, 0.035);
}

.insight-sidebar__eyebrow {
  color: rgba(148, 163, 184, 0.88);
}

.insight-toc__link:hover,
.insight-toc__link.active {
  color: var(--text-primary);
}

.insight-toc__link--child {
  color: rgba(148, 163, 184, 0.9);
}

.insight-related__link {
  border-color: rgba(148, 163, 184, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.insight-related__link:hover {
  border-color: rgba(100, 255, 218, 0.16);
  background: rgba(100, 255, 218, 0.08);
}

@media (max-width: 860px) {
  .lang-dropdown {
    right: -0.25rem;
  }
}

@media (max-width: 767px) {
  .lang-selector {
    display: none;
  }

}

html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

/* ======================================================================
   DOVAR LABS V14 — switcher fidelity + detail page refinement
   ====================================================================== */

.btn--primary:hover,
.btn--primary:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  color: #071018 !important;
}

.navbar__mobile-lang {
  display: none;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
}

.lang-selector {
  position: relative;
  z-index: 100;
  flex: 0 0 auto;
}

.lang-selector-btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
  box-shadow: none;
  min-height: 0;
  transform: none;
}

.lang-selector-btn:hover,
.lang-selector.open .lang-selector-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  transform: none;
  box-shadow: none;
}

.lang-selector-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.12);
  border-color: rgba(100, 255, 218, 0.22);
}

.lang-selector-btn .lang-flag,
.lang-option .lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 16px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lang-selector-btn .lang-flag img,
.lang-option .lang-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang-selector-btn .lang-chevron {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  transition: transform var(--transition-fast);
}

.lang-selector.open .lang-chevron {
  transform: rotate(180deg);
  opacity: 0.5;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  padding: 0;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.15s ease;
  overflow: hidden;
  pointer-events: none;
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 0;
}

.lang-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--accent);
  background: rgba(100, 255, 218, 0.06);
}

.lang-option-name {
  flex: 1;
  font-weight: 500;
}

.lang-option .lang-check {
  width: 14px;
  height: 14px;
  opacity: 0;
}

.lang-option.active .lang-check {
  opacity: 1;
  color: var(--accent);
}

.navbar__ctas .lang-selector {
  display: inline-flex;
}


.product-detail-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.product-spec-card,
.product-detail-card {
  background: var(--surface-slate);
  border-color: var(--surface-slate-border);
  box-shadow: var(--surface-slate-shadow);
}

.product-detail-card h4,
.product-spec-card h2 {
  color: var(--text-primary);
}

.product-detail-card p,
.product-spec-card p,
.product-spec-card li {
  color: rgba(226, 232, 240, 0.82);
}

.product-detail-table td:first-child {
  color: rgba(148, 163, 184, 0.9);
}

.product-detail-table td:last-child {
  color: rgba(248, 250, 252, 0.94);
}

.product-detail-support {
  width: 100%;
  justify-content: center;
  margin-top: 0.9rem;
  background: var(--accent-gradient);
  color: #071018 !important;
  border: 0;
  box-shadow: 0 16px 32px rgba(0, 229, 188, 0.22);
}

.product-detail-support:hover {
  color: #071018 !important;
  box-shadow: 0 22px 38px rgba(0, 229, 188, 0.28);
  transform: translateY(-1px);
}

.product-detail-related {
  gap: 0.82rem;
}

.product-related__item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(148, 163, 184, 0.16);
  color: rgba(226, 232, 240, 0.84);
}

.product-gallery {
  position: relative;
  background:
    radial-gradient(circle at top, rgba(100, 255, 218, 0.09), transparent 36%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  padding: 1.6rem;
  min-height: 250px;
  box-shadow: 0 26px 56px rgba(2, 6, 23, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.product-gallery::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  pointer-events: none;
}

.product-hero-image {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  box-shadow: 0 24px 54px rgba(2, 6, 23, 0.28);
}

.legal-page .legal-summary,
.legal-page .legal-card {
  background: var(--surface-slate);
  border-color: var(--surface-slate-border);
  box-shadow: var(--surface-slate-shadow);
}

.legal-page .legal-summary p,
.legal-page .legal-summary li,
.legal-page .legal-card p,
.legal-page .legal-card li {
  color: rgba(226, 232, 240, 0.82);
}

.legal-page .legal-card h2,
.legal-page .legal-summary strong {
  color: var(--text-primary);
}

.legal-page .article-note {
  color: rgba(226, 232, 240, 0.88);
  background: rgba(100, 255, 218, 0.08);
  border-color: rgba(100, 255, 218, 0.14);
}

.legal-page :is(.legal-summary, .legal-card) a {
  color: var(--accent-bright);
}

.insight-page {
  background:
    radial-gradient(circle at top left, rgba(0, 229, 188, 0.07), transparent 24%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.07), transparent 22%),
    linear-gradient(180deg, #07101d 0%, #0b1320 55%, #0d1726 100%);
}

.insight-hero-panel,
.insight-body,
.insight-sidebar__card,
.insight-related,
.article-cta,
.article-note {
  background: var(--surface-slate);
  border-color: var(--surface-slate-border);
  box-shadow: var(--surface-slate-shadow);
}

.insight-hero-panel {
  background:
    radial-gradient(circle at top right, rgba(100, 255, 218, 0.09), transparent 34%),
    var(--surface-slate);
}

.insight-hero-head h1,
.insight-hero-panel h1 {
  max-width: 100%;
  max-inline-size: 34ch;
  font-size: clamp(1.44rem, 1.95vw, 1.94rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.insight-lede,
.insight-body p,
.insight-body li,
.insight-sidebar__card p,
.insight-sidebar__card li,
.meta-chip,
.insight-breadcrumb,
.insight-toc__link,
.insight-toc__link--child,
.article-note,
.article-cta p {
  color: rgba(226, 232, 240, 0.86);
}

.insight-body h2,
.insight-body h3,
.insight-related h3,
.insight-sidebar__card h3,
.article-cta h3,
.insight-hero-panel .section-label,
.insight-sidebar__eyebrow {
  color: #f8fafc;
}

.insight-body strong,
.insight-body blockquote strong,
.insight-sidebar__card strong {
  color: #f8fafc;
}

.insight-body .text-muted,
.insight-body small {
  color: rgba(226, 232, 240, 0.74);
}

.insight-body a,
.insight-toc__link:hover,
.insight-toc__link.active,
.insight-related__link:hover {
  color: var(--text-primary);
}

.insight-body a {
  color: var(--accent-bright);
}

.insight-body blockquote,
.article-note {
  background: rgba(100, 255, 218, 0.08);
  border-color: rgba(100, 255, 218, 0.14);
}

.insight-related__link {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(148, 163, 184, 0.16);
  color: var(--text-primary);
}

.about-intro-shell {
  display: grid;
  gap: 1.35rem;
}

.about-intro-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.5fr);
  gap: 1.5rem;
  align-items: start;
}

.about-intro-profile,
.about-intro-story {
  min-width: 0;
}

.about-intro-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
}

.about-stat-card {
  background: var(--surface-slate);
  border-color: var(--surface-slate-border);
  box-shadow: var(--surface-slate-shadow);
}

.why-dovar-negative-list {
  display: grid;
  gap: 1rem;
}

.why-dovar-negative-list .card {
  margin: 0;
}

@media (max-width: 1079px) {
  .navbar__mobile-lang {
    display: flex;
  }

  .navbar__mobile-lang .lang-selector {
    display: block;
  }

  .navbar__mobile-lang .lang-dropdown {
    left: 50%;
    right: auto;
    transform: translate(-50%, -4px);
  }

  .navbar__mobile-lang .lang-selector.open .lang-dropdown {
    transform: translate(-50%, 0);
  }

  .navbar__ctas .lang-selector {
    display: none;
  }
}

@media (max-width: 980px) {
  .about-intro-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .navbar__mobile-lang {
    display: flex;
  }

  .navbar__mobile-lang .lang-selector {
    display: block !important;
  }

  .lang-selector {
    display: none;
  }

  .navbar__mobile-lang .lang-selector {
    display: block !important;
  }

  .about-intro-stats {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    padding: 1.2rem;
    border-radius: 24px;
  }

  .product-gallery::before {
    inset: 10px;
    border-radius: 18px;
  }

  .insight-hero-head h1,
  .insight-hero-panel h1 {
    max-inline-size: 100%;
    font-size: clamp(1.34rem, 6.6vw, 1.7rem);
  }
}
