*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --slate: #162030;
  --slate-2: #1e2a3d;
  --slate-3: #243349;
  --slate-4: #2d3d54;
  --off-white: #F8F9FA;
  --white: #FFFFFF;
  --blue: #2563EB;
  --blue-2: #3b82f6;
  --blue-3: #60a5fa;
  --blue-soft: #dbeafe;
  --blue-glow: rgba(37, 99, 235, 0.15);
  --blue-glow-2: rgba(37, 99, 235, 0.08);
  --amber: #F59E0B;
  --amber-soft: rgba(245, 158, 11, 0.12);
  --amber-2: #d97706;
  --border: #E5E7EB;
  --border-2: #eef0f3;
  --border-3: #f1f3f6;
  --border-dark: #2D3748;
  --text: #162030;
  --text-2: #4b5563;
  --text-3: #6b7280;
  --text-4: #94a3b8;
  --text-inv: #f1f5f9;
  --text-inv-2: #94a3b8;
  --text-inv-3: #cbd5e1;
  --green: #10b981;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--off-white);
  background-image: radial-gradient(circle, rgba(37, 99, 235, 0.06) 1px, transparent 1.5px);
  background-size: 28px 28px;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Golos Text', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.mono { font-family: 'JetBrains Mono', monospace; font-feature-settings: 'tnum'; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; position: relative; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--blue);
}
.section-label.center { justify-content: center; }
.section-label.center::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--blue);
}

.section-title {
  font-size: clamp(26px, 3.6vw, 40px);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-2);
  max-width: 680px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 249, 250, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 30px; height: 30px;
  background: var(--slate);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, var(--blue) 130%);
  opacity: 0.7;
}
.logo-mark svg { position: relative; z-index: 1; }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.2s;
}
.nav-phone:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-glow);
}
.phone-icon { display: inline-flex; animation: phoneWiggle 3s ease-in-out infinite; }
@keyframes phoneWiggle {
  0%, 90%, 100% { transform: rotate(0deg); }
  92% { transform: rotate(-14deg); }
  94% { transform: rotate(12deg); }
  96% { transform: rotate(-8deg); }
  98% { transform: rotate(6deg); }
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.nav-cta:hover { background: var(--blue-2); transform: translateY(-1px); }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-phone span:last-child { display: none; }
  .nav-cta { display: none; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease-out, background 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  font-feature-settings: 'tnum';
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}
.btn-primary:hover {
  background: var(--blue-2);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-amber {
  background: var(--amber);
  color: white;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}
.btn-amber:hover { background: var(--amber-2); transform: translateY(-1px); }

/* === HERO === */
.hero {
  padding: 64px 0 80px;
  background: linear-gradient(180deg, var(--slate) 0%, var(--slate-2) 100%);
  color: var(--text-inv);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59, 130, 246, 0.16) 1px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
}
.hero-content .section-label { color: var(--blue-3); }
.hero-content .section-label::before { background: var(--blue-3); }
.hero h1 {
  font-size: clamp(30px, 4.6vw, 50px);
  font-weight: 700;
  color: var(--text-inv);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero h1 .accent {
  color: var(--blue-3);
  position: relative;
  display: inline-block;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-inv-2);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-ctas .btn-outline {
  color: var(--text-inv);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
}
.hero-ctas .btn-outline:hover {
  border-color: var(--blue-3);
  color: var(--blue-3);
  background: rgba(59, 130, 246, 0.1);
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-inv-2);
  font-family: 'JetBrains Mono', monospace;
}
.hero-meta-item svg { color: var(--blue-3); flex-shrink: 0; }
.hero-meta-item strong { color: var(--text-inv); font-weight: 600; }

.hero-visual {
  position: relative;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#heroCanvas { width: 100%; height: 100%; display: block; }
@media (max-width: 968px) { .hero-visual { height: 340px; } }

.hero-status {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(22, 32, 48, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--blue-3);
  backdrop-filter: blur(8px);
  z-index: 3;
  letter-spacing: 0.05em;
}
.hero-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-3);
  box-shadow: 0 0 8px var(--blue-3);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* === TRUST BAR === */
.trust-bar {
  padding: 24px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .trust-bar-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.trust-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}
.trust-bar-grid > :last-child { border-right: none; }
@media (max-width: 768px) {
  .trust-stat { border-right: none; padding-right: 0; }
  .trust-bar-grid > :nth-child(2n) { border-right: none; }
}
.trust-stat-num {
  font-family: 'Golos Text', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.trust-stat-num .unit { color: var(--blue); font-size: 18px; margin-left: 2px; }
.trust-stat-label {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.4;
  font-family: 'JetBrains Mono', monospace;
}

/* === PILLARS === */
.pillars {
  padding: 64px 0;
  background: var(--off-white);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 968px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pillars-grid { grid-template-columns: 1fr; } }

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pillar::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.1);
}
.pillar:hover::after { transform: scaleX(1); }
.pillar:hover .pillar-icon { background: var(--blue); color: white; }
.pillar-icon {
  width: 40px; height: 40px;
  background: var(--blue-glow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  margin-bottom: 14px;
  transition: all 0.3s;
}
.pillar-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  font-family: 'Golos Text', sans-serif;
  letter-spacing: -0.01em;
  color: var(--text);
}
.pillar-desc {
  font-size: 12.5px;
  color: var(--text-3);
  line-height: 1.55;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 968px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--blue);
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12), 0 0 0 4px rgba(37, 99, 235, 0.06);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-3));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }

.service-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: 11px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--slate);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--blue-glow);
  border-color: var(--blue);
  color: var(--blue);
}
.service-title {
  font-size: 17px;
  font-weight: 600;
  font-family: 'Golos Text', sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.service-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--text-3);
  margin-top: 3px;
  letter-spacing: 0.02em;
}
.service-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.6;
}
.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease, opacity 0.3s ease;
  margin-top: 0;
  opacity: 0;
}
.service-card:hover .service-details,
.service-card.expanded .service-details {
  max-height: 480px;
  margin-top: 16px;
  opacity: 1;
}
.service-details-inner {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.service-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 12px;
}
.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.5;
}
.service-checklist li::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--blue-glow);
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563EB'%3E%3Cpath d='M6.5 12.5l-4-4 1.5-1.5 2.5 2.5 5.5-5.5 1.5 1.5z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  padding: 9px 11px;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid var(--border-2);
}
.service-meta-label { color: var(--text-3); }
.service-meta-value { color: var(--text); font-weight: 600; }

/* === PROBLEMS SECTION === */
.problems {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 968px) {
  .problems-grid { grid-template-columns: 1fr; gap: 32px; }
}
.problems-text p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 16px;
}
.problems-text p:last-child { margin-bottom: 0; }
.problems-text ul {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.problems-text ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.6;
}
.problems-text ul li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 9px;
}

.problems-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12.5px;
  color: var(--text-2);
  font-family: 'JetBrains Mono', monospace;
  transition: all 0.2s;
  cursor: default;
}
.chip:hover {
  background: var(--blue-glow);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}
.chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
}
.chip:hover .chip-dot { background: var(--blue); }

/* Diagnostic panel */
.diagnostic-panel {
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-2) 100%);
  border-radius: 16px;
  padding: 28px;
  color: var(--text-inv);
  position: relative;
  overflow: hidden;
}
.diagnostic-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59, 130, 246, 0.12) 1px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.6;
}
.diagnostic-panel > * { position: relative; z-index: 1; }
.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dp-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--blue-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dp-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-inv-2);
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  color: var(--green);
}
.dp-status-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 2s ease-in-out infinite;
}

.dp-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dp-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
}
.dp-item-icon {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(59, 130, 246, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-3);
  flex-shrink: 0;
}
.dp-item-text { color: var(--text-inv-3); }
.dp-item-text strong { color: var(--text-inv); font-weight: 600; display: block; font-size: 12.5px; }
.dp-item-text small { color: var(--text-inv-2); font-size: 11px; }
.dp-item-tag {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
}
.dp-item-tag.crit { background: rgba(239, 68, 68, 0.15); color: #fca5a5; }
.dp-item-tag.warn { background: rgba(245, 158, 11, 0.15); color: #fcd34d; }
.dp-item-tag.ok { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; }

/* === PROCESS === */
.process {
  background: var(--off-white);
}
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .process-track { grid-template-columns: 1fr; gap: 32px; }
}
.process-line {
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--border);
  z-index: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .process-line {
    top: 0; bottom: 0;
    left: 28px; right: auto;
    width: 2px; height: auto;
  }
}
.process-line::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, var(--blue) 50%, transparent 50%);
  background-size: 8px 2px;
  opacity: 0;
  animation: dashFlow 1.5s linear infinite;
  transition: opacity 0.4s;
}
.process-line.active::before { opacity: 1; }
@keyframes dashFlow {
  to { background-position: 16px 0; }
}
.process-line-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--blue-3));
  transition: width 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .process-line-fill {
    width: 2px !important;
    height: 0;
    transition: height 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (max-width: 768px) {
  .process-step {
    text-align: left;
    padding-left: 72px;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.process-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--text-3);
  transition: all 0.4s ease;
  position: relative;
}
@media (max-width: 768px) {
  .process-dot { margin: 0; position: absolute; left: 0; top: 0; }
}
.process-step.active .process-dot {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
  box-shadow: 0 0 0 6px var(--blue-glow);
}
.process-step.active .process-dot::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  opacity: 0;
  animation: dotPulse 1.2s ease-out;
}
@keyframes dotPulse {
  0% { opacity: 0.8; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.6); }
}

.process-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--text-3);
  margin-bottom: 6px;
  letter-spacing: 0.12em;
  transition: color 0.4s;
}
.process-step.active .process-num { color: var(--blue); }
.process-title {
  font-size: 14.5px;
  font-weight: 600;
  font-family: 'Golos Text', sans-serif;
  margin-bottom: 6px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.process-desc {
  font-size: 12.5px;
  color: var(--text-2);
  line-height: 1.5;
  padding: 0 4px;
}

/* === LAB SHOWCASE === */
.lab {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.lab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .lab-grid { grid-template-columns: 1fr; }
}
.lab-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--slate);
  aspect-ratio: 4/5;
  cursor: pointer;
}
.lab-card:nth-child(1) { aspect-ratio: 4/5; }
.lab-card:nth-child(2) { aspect-ratio: 4/5; margin-top: 24px; }
.lab-card:nth-child(3) { aspect-ratio: 4/5; }
@media (max-width: 768px) {
  .lab-card:nth-child(n) { aspect-ratio: 16/10; margin-top: 0; }
}
.lab-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s;
}
.lab-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.95) contrast(1.1);
}
.lab-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(22, 32, 48, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: var(--text-inv);
}
.lab-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--blue-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.lab-card-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.lab-card-desc {
  font-size: 12.5px;
  color: var(--text-inv-2);
  line-height: 1.5;
}

.lab-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .lab-features { grid-template-columns: repeat(2, 1fr); }
}
.lab-feature {
  padding: 18px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}
.lab-feature:hover {
  border-color: var(--blue);
  background: var(--white);
}
.lab-feature-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--blue);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.lab-feature-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.lab-feature-desc {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
}

/* === WHY === */
.why {
  padding: 100px 0;
  background: var(--slate);
  color: var(--text-inv);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59, 130, 246, 0.1) 1px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.7;
}
.why::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.why-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 968px) {
  .why-inner { grid-template-columns: 1fr; gap: 32px; }
}
.why-left .section-label { color: var(--blue-3); }
.why-left .section-label::before { background: var(--blue-3); }
.why-quote-mark {
  font-family: 'Golos Text', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--blue);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.7;
  display: block;
}
.why-quote {
  font-family: 'Golos Text', sans-serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-inv);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.why-quote .highlight { color: var(--blue-3); }
.why-attr {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-inv-2);
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.why-attr svg { color: var(--blue-3); }

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.why-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s;
}
.why-card:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
}
.why-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--blue-3);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.why-card-title {
  font-family: 'Golos Text', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-inv);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.why-card-desc {
  font-size: 12.5px;
  color: var(--text-inv-2);
  line-height: 1.55;
}

/* === REVIEWS === */
.reviews {
  background: var(--off-white);
}
.reviews-track-wrap {
  position: relative;
}
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .reviews-track {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0;
  }
  .review-card {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
  }
  .review-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.review-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--slate), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 17px;
  font-family: 'Golos Text', sans-serif;
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name {
  font-weight: 600;
  font-size: 14.5px;
  font-family: 'Golos Text', sans-serif;
}
.review-city {
  font-size: 11.5px;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  margin-top: 2px;
}
.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: var(--amber-soft);
  color: var(--amber);
  border-radius: 100px;
  font-size: 10.5px;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 12px;
  align-self: flex-start;
}
.review-text {
  font-size: 14px;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
}
.review-stars {
  display: flex;
  gap: 2px;
  margin-top: 14px;
  color: var(--amber);
}

.review-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
@media (max-width: 768px) { .review-dots { display: flex; } }
.review-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.review-dot.active {
  background: var(--blue);
  width: 28px;
  border-radius: 4px;
}

/* === FAQ === */
.faq {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 968px) {
  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
}
.faq-side {
  position: sticky;
  top: 88px;
}
.faq-side p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 20px;
}
.faq-cta {
  margin-top: 20px;
  padding: 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.faq-cta p {
  font-size: 13.5px;
  margin-bottom: 14px;
  color: var(--text);
}
.faq-cta .btn { width: 100%; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.open {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.08);
}
.faq-q {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: 'Golos Text', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text);
  list-style: none;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--blue); }
.faq-item.open .faq-q { color: var(--blue); }
.faq-q-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--blue-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: transform 0.3s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--blue); color: white; }
.faq-a {
  padding: 0 20px 18px;
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.7;
}
.faq-a p { margin-bottom: 10px; }
.faq-a p:last-child { margin-bottom: 0; }

/* === CONTACTS === */
.contacts {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 768px) {
  .contacts-grid { grid-template-columns: 1fr; gap: 20px; }
}
.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-block {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}
.contact-block:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.06);
}
.contact-block-phone { cursor: pointer; }
.contact-block-phone:active { transform: scale(0.99); }
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--off-white);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact-block:hover .contact-icon {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.contact-label {
  font-size: 10.5px;
  color: var(--text-3);
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-value {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.45;
}
.contact-value-sub {
  color: var(--text-3);
  font-size: 13px;
  font-weight: 400;
}
.contact-value.phone {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  font-weight: 600;
  color: var(--blue);
  display: inline-block;
}

.contacts-cta {
  margin-top: 4px;
  padding: 22px;
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-2) 100%);
  border-radius: 12px;
  color: var(--text-inv);
  position: relative;
  overflow: hidden;
}
.contacts-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59, 130, 246, 0.15) 1px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.5;
}
.contacts-cta > * { position: relative; z-index: 1; }
.contacts-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.contacts-cta p {
  font-size: 14px;
  color: var(--text-inv-2);
  line-height: 1.5;
}
.contacts-cta strong { color: var(--blue-3); font-weight: 600; }
.contacts-cta .btn { width: 100%; }

/* Map */
.map-card {
  background: linear-gradient(135deg, var(--slate) 0%, var(--slate-2) 100%);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  min-height: 100%;
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
}
.map-top {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 4;
}
.map-top-left {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--text-inv-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.map-top-right {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--blue-3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-top-right-dot {
  width: 6px; height: 6px;
  background: var(--blue-3);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

.map-canvas {
  position: relative;
  flex: 1;
  min-height: 360px;
  overflow: hidden;
}
.map-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(59, 130, 246, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-roads {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map-marker {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  z-index: 3;
}
.marker-pin {
  width: 42px; height: 42px;
  background: var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.45);
  animation: markerBounce 2.5s ease-in-out infinite;
  position: relative;
}
.marker-pin svg { transform: rotate(45deg); color: white; }
@keyframes markerBounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-8px); }
}
.marker-pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--blue);
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation: markerPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes markerPulse {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.5; }
  100% { transform: translate(-50%, -50%) scale(2.8); opacity: 0; }
}
.map-info-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(22, 32, 48, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  padding: 14px 16px;
  color: var(--text-inv);
  z-index: 4;
}
.map-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.map-info-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  color: var(--blue-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.map-info-text {
  font-size: 13px;
  color: var(--text-inv);
  line-height: 1.4;
}
.map-info-dist {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--blue-3);
  text-align: right;
  flex-shrink: 0;
}

/* === FOOTER === */
.footer {
  background: var(--slate);
  color: var(--text-inv-2);
  padding: 56px 0 28px;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(59, 130, 246, 0.08) 1px, transparent 1.5px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}
.footer > * { position: relative; z-index: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.footer-brand .logo { color: var(--text-inv); margin-bottom: 14px; }
.footer-tagline {
  font-size: 13.5px;
  color: var(--text-inv-2);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 18px;
}
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-inv-2);
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.footer-col h4 {
  color: var(--text-inv);
  font-size: 11.5px;
  font-weight: 600;
  margin-bottom: 14px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-col p {
  color: var(--text-inv-2);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--blue-3); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-inv-2);
}
.trust-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-3);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
}

/* === CALL WIDGET === */
.cw {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.cw__btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37,99,235,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.cw__btn:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37,99,235,0.55); }
.cw__btn .icon-close { display: none; }
.cw.is-open .cw__btn .icon-phone { display: none; }
.cw.is-open .cw__btn .icon-close { display: block; }
.cw__panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--slate);
  border: 1px solid var(--border-inv);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
  min-width: 210px;
}
.cw.is-open .cw__panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.cw__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--text-inv-2);
  margin-bottom: 4px;
  padding-left: 2px;
}
.cw__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, transform 0.18s;
}
.cw__item:hover { transform: translateX(2px); }
.cw__item--phone { background: rgba(37,99,235,0.18); color: #93c5fd; }
.cw__item--phone:hover { background: rgba(37,99,235,0.32); }
.cw__item--tg { background: rgba(34,158,217,0.18); color: #7dd3fc; }
.cw__item--tg:hover { background: rgba(34,158,217,0.3); }
.cw__item--wa { background: rgba(37,211,102,0.15); color: #86efac; }
.cw__item--wa:hover { background: rgba(37,211,102,0.26); }
.cw__item--viber { background: rgba(115,96,242,0.18); color: #c4b5fd; }
.cw__item--viber:hover { background: rgba(115,96,242,0.3); }

/* === REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--slate);
  color: var(--text-inv);
  padding: 13px 20px;
  border-radius: 12px;
  font-size: 13.5px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  z-index: 300;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon { color: var(--blue-3); display: flex; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
