@import "https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap";
:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --border: #e2e8f0;
  --accent: #2563eb;
  --cta: #f97316;
  --cta-hover: #ea580c;
  --text: #0f172a;
  --muted: #64748b;
  --success: #059669;
  --wa: #16a34a;
  --radius: 12px;
  --radius-lg: 20px;
  --max-w: 1100px;
  --nav-h: 64px;
}
:root[data-theme="dark"] {
  --hero-grad: rgba(30, 34, 53, 0.5);
  --mobile-nav-bg: rgba(22, 25, 41, 0.98);
  --nav-bg: rgba(30, 34, 53, 0.7);
  --nav-border: rgba(255, 255, 255, 0.08);
  --bg: #0d0f17;
  --surface: #161929;
  --surface-2: #1e2235;
  --border: rgba(255, 255, 255, 0.08);
  --accent: #3b82f6;
  --cta: #f97316;
  --cta-hover: #ea580c;
  --text: #e8ebf5;
  --muted: #8892b0;
  --success: #10b981;
  --wa: #25d366;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    -apple-system,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
html,
body {
  width: 100%;
  overflow-x: clip;
  background: var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 72px 0;
}
.section-title {
  font-family: Manrope, sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 520px;
}
.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: #3b82f61f;
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 32px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 56px;
  white-space: nowrap;
}
.btn-cta {
  background: var(--cta);
  color: #fff;
}
.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #ff5c1a59;
}
.btn-submit-lead {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9 52%, #2563eb);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.btn-submit-lead:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px #0ea5e959;
}
.btn-max {
  background: linear-gradient(135deg, #0ea5ff, #1d4ed8 45%, #7c3aed);
  color: #fff;
}
.btn-max:hover {
  background: linear-gradient(135deg, #0b97e8, #1b45c2 45%, #6f35d4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #3b82f673;
}
.max-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 22px;
  border-radius: 999px;
  background: #ffffffeb;
  padding: 1px 6px;
}
.max-logo-icon {
  width: 16px;
  height: 16px;
  border-radius: 5px;
}
.btn-tg {
  background: #08c;
  color: #fff;
}
.btn-tg:hover {
  background: #07b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #0088cc59;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: #ffffff4d;
  background: var(--surface-2);
}
.btn-ghost {
  background: var(--surface-2);
  color: var(--text);
}
.btn-ghost:hover {
  background: var(--border);
}
.btn-full {
  width: 100%;
}
.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  background: var(--nav-bg, rgba(255, 255, 255, 0.85));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--nav-border, rgba(0, 0, 0, 0.08));
  border-radius: 99px;
  padding: 5px 6px 5px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 24px);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 12px;
  box-shadow: 0 8px 32px #0003;
}
.new-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 12px #3b82f680;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  border: 1.5px solid rgba(147, 197, 253, 0.4);
}
.water-svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: rotate-water 4s ease-in-out infinite;
}
.wave {
  animation: wave-anim 2.5s infinite linear;
}
.wave1 {
  animation-duration: 3s;
  opacity: 0.6;
}
.wave2 {
  animation-duration: 4s;
}
@keyframes rotate-water {
  0%,
  to {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg);
  }
}
@keyframes wave-anim {
  0% {
    transform: translate(0);
  }
  to {
    transform: translate(-100px);
  }
}
.logo-text {
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 0.97rem;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-text span {
  color: var(--accent);
}
.online-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow:
    0 0 0 3px #22c55e1f,
    0 0 10px #22c55ebf;
  vertical-align: 0.08em;
}
.online-dot.online {
  background: #22c55e;
  box-shadow:
    0 0 0 3px #22c55e1f,
    0 0 10px #22c55ebf;
  animation: online-pulse 2s ease-in-out infinite;
}
.online-dot.offline {
  background: #64748b;
  box-shadow: 0 0 0 3px #64748b24;
  animation: none;
}
@keyframes online-pulse {
  0%,
  to {
    transform: scale(1);
    box-shadow:
      0 0 0 3px #22c55e1f,
      0 0 10px #22c55ebf;
  }
  50% {
    transform: scale(1.14);
    box-shadow:
      0 0 0 5px #22c55e0f,
      0 0 14px #22c55ee6;
  }
}
.logo-text small {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.nav-pill-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}
.nav-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff08;
  padding: 4px;
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-pill a {
  padding: 7px 13px;
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 99px;
  transition: all 0.2s;
}
.nav-pill a:hover {
  color: #fff;
  background: #ffffff14;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.pill-btn {
  background: var(--accent);
  color: #fff;
  padding: 9px 18px;
  border-radius: 99px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: all 0.2s;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pill-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #3b82f666;
}
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  color: var(--text);
  width: 48px;
  height: 48px;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
  z-index: 101;
}
.nav-burger svg {
  pointer-events: none;
}
@media (max-width: 900px) {
  .nav-pill-wrapper,
  .pill-btn {
    display: none !important;
  }
  .nav-burger {
    display: flex;
  }
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 16px;
  right: 16px;
  background: var(--mobile-nav-bg, rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--border);
  border-radius: 24px;
  z-index: 1000;
  padding: 12px;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-15px) scale(0.98);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 16px 48px #0006;
  pointer-events: none;
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 12px;
  transition:
    background 0.15s,
    color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:active {
  color: #fff;
  background: #ffffff12;
}
.mobile-cta-row {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.mobile-cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 14px 12px;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.mobile-cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.mobile-cta-wa {
  background: #25d366;
  color: #fff;
}
.mobile-cta-tg {
  background: #08c;
  color: #fff;
}
.mobile-cta-call {
  background: var(--cta);
  color: #fff;
}
.mobile-cta-max {
  background: #07f;
  color: #fff;
}
.hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 64px;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}
.hero-h1 {
  font-family: Manrope, sans-serif;
  font-size: clamp(2rem, 8vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.hero-h1 .accent {
  color: var(--cta);
}
.hero-sub {
  color: var(--muted);
  font-size: clamp(1rem, 3vw, 1.15rem);
  max-width: 500px;
  margin: 0 auto;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-trust .ok {
  color: var(--success);
}
.machine-scene {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  position: relative;
}
.machine-svg {
  width: 100%;
  height: auto;
}
.machine-body {
  fill: var(--surface-2);
  stroke: #ffffff1a;
  stroke-width: 1.5;
}
.machine-port {
  fill: var(--text);
  stroke: var(--border);
  stroke-width: 2;
}
.machine-port-ring {
  fill: none;
  stroke: #6478c833;
  stroke-width: 4;
}
.machine-panel {
  fill: #ffffff0a;
}
.machine-knob {
  fill: var(--accent);
  opacity: 0.5;
}
.machine-led {
  fill: var(--success);
}
.eye-l,
.eye-r {
  fill: var(--text);
  animation: blink 4s infinite;
}
@keyframes blink {
  0%,
  90%,
  to {
    transform: scaleY(1);
  }
  95% {
    transform: scaleY(0.05);
  }
}
.mouth-sad {
  fill: none;
  stroke: var(--muted);
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 1;
  animation: show-sad 9s infinite;
}
.mouth-happy {
  fill: none;
  stroke: var(--success);
  stroke-width: 2.5;
  stroke-linecap: round;
  opacity: 0;
  animation: show-happy 9s infinite;
}
@keyframes show-sad {
  0%,
  55% {
    opacity: 1;
  }
  65%,
  to {
    opacity: 0;
  }
}
@keyframes show-happy {
  0%,
  60% {
    opacity: 0;
  }
  70%,
  to {
    opacity: 1;
  }
}
.tear {
  fill: #60a5fa;
  opacity: 0;
  animation: fall-tear 9s infinite;
}
.tear-r {
  animation-delay: 0.3s;
}
@keyframes fall-tear {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  15% {
    opacity: 0.8;
    transform: translateY(0);
  }
  50% {
    opacity: 0;
    transform: translateY(18px);
  }
  60%,
  to {
    opacity: 0;
    transform: translateY(18px);
  }
}
.puddle {
  fill: #60a5fa40;
  rx: 10;
  animation: puddle-anim 9s infinite;
}
@keyframes puddle-anim {
  0%,
  20% {
    opacity: 0;
    transform: scaleX(0.3);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
  65%,
  to {
    opacity: 0;
    transform: scaleX(1);
  }
}
.spark {
  opacity: 0;
  animation: spark-anim 9s infinite;
}
.spark:nth-child(2) {
  animation-delay: 0.15s;
}
.spark:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes spark-anim {
  0%,
  55% {
    opacity: 0;
    transform: scale(0) rotate(0);
  }
  60% {
    opacity: 1;
    transform: scale(1) rotate(45deg);
  }
  70%,
  to {
    opacity: 0;
    transform: scale(0) rotate(90deg);
  }
}
.shine {
  opacity: 0;
  animation: shine-anim 9s infinite;
}
@keyframes shine-anim {
  0%,
  65% {
    opacity: 0;
    transform: scale(0);
  }
  80% {
    opacity: 1;
    transform: scale(1);
  }
  95%,
  to {
    opacity: 0;
    transform: scale(1.3);
  }
}
.sergey-figure {
  opacity: 0;
  transform: translate(180px);
  animation: sergey-walk 9s infinite;
}
@keyframes sergey-walk {
  0%,
  40% {
    transform: translate(180px);
    opacity: 0;
  }
  50% {
    transform: translate(0);
    opacity: 1;
  }
  75% {
    transform: translate(0);
    opacity: 1;
  }
  85%,
  to {
    transform: translate(180px);
    opacity: 0;
  }
}
.sergey-leg-l {
  animation: leg-swing-l 9s infinite;
  transform-origin: 260px 260px;
}
.sergey-leg-r {
  animation: leg-swing-r 9s infinite;
  transform-origin: 280px 260px;
}
@keyframes leg-swing-l {
  0%,
  40% {
    transform: rotate(0);
  }
  43% {
    transform: rotate(20deg);
  }
  47% {
    transform: rotate(-20deg);
  }
  50%,
  75% {
    transform: rotate(0);
  }
  78% {
    transform: rotate(20deg);
  }
  82% {
    transform: rotate(-20deg);
  }
  85%,
  to {
    transform: rotate(0);
  }
}
@keyframes leg-swing-r {
  0%,
  40% {
    transform: rotate(0);
  }
  43% {
    transform: rotate(-20deg);
  }
  47% {
    transform: rotate(20deg);
  }
  50%,
  75% {
    transform: rotate(0);
  }
  78% {
    transform: rotate(-20deg);
  }
  82% {
    transform: rotate(20deg);
  }
  85%,
  to {
    transform: rotate(0);
  }
}
.counters {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.counter-item {
  flex: 1;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.counter-item:last-child {
  border-right: none;
}
.counter-num {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.counter-label {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.symptoms-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.symptom-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: left;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  color: var(--text);
}
.symptom-btn:hover {
  border-color: var(--accent);
  background: #3b82f614;
  transform: translateY(-2px);
}
.symptom-btn:active {
  transform: translateY(0);
}
.symptom-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.symptom-info {
  flex: 1;
  min-width: 0;
}
.symptom-name {
  font-size: 0.9rem;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}
.symptom-price {
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 500;
  margin-top: 2px;
  display: block;
}
.symptom-other {
  grid-column: 1 / -1;
  justify-content: center;
  border-style: dashed;
  color: var(--muted);
}
.brands-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 600px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
.brand-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
}
.brand-item:hover {
  border-color: var(--accent);
  background: #3b82f60d;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px #0000001a;
}
.brand-name {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  font-family: Manrope, sans-serif;
  letter-spacing: -0.01em;
}
.brand-link {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.before-after-section {
  border-top: 1px solid var(--border);
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.ba-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ba-image-wrap {
  position: relative;
  width: 100%;
  padding-top: 66%;
  background: #000;
  overflow: hidden;
}
.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 0.5s ease;
}
.ba-img[src*="repair-ten"] {
  object-position: 50% 0%;
}
.ba-card:hover .ba-img {
  transform: scale(1.05);
}
.ba-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ba-title {
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.ba-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}
.ba-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  flex-wrap: wrap;
  gap: 6px;
}
.ba-price {
  font-family: Manrope, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cta);
  background: #ff5c1a1a;
  border: 1px solid rgba(255, 92, 26, 0.2);
  border-radius: 20px;
  padding: 4px 12px;
}
.ba-date {
  font-size: 0.78rem;
  color: var(--muted);
}
.ba-skeleton {
  min-height: 260px;
  background: linear-gradient(
    90deg,
    var(--surface-2) 25%,
    var(--border) 50%,
    var(--surface-2) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shine 1.4s ease infinite;
  pointer-events: none;
}
@keyframes skeleton-shine {
  0% {
    background-position: 200% 0;
  }
  to {
    background-position: -200% 0;
  }
}
.ba-no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-no-photo:after {
  content: "📷 Фото скоро";
  color: var(--muted);
  font-size: 0.85rem;
}
.ba-no-photo img {
  display: none;
}
.about-section {
  border-top: 1px solid var(--border);
}
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.about-photo-wrap {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}
.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}
.photo-placeholder svg {
  opacity: 0.3;
}
.about-rating-badge {
  position: absolute;
  bottom: 16px;
  top: auto;
  right: -12px;
  background: color-mix(in srgb, var(--surface) 65%, transparent);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rating-stars {
  color: #fbbf24;
  font-size: 0.9rem;
}
.rating-text {
  font-size: 0.8rem;
}
.rating-text strong {
  display: block;
  font-size: 1rem;
}
.about-name {
  font-family: Manrope, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.about-role {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.about-desc {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.about-quote {
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: normal;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 28px;
  line-height: 1.6;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.fact {
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 96px;
}
.fact:last-child {
  border-right: none;
}
.fact-num {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.fact-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.steps-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--surface-2);
  border-radius: var(--radius);
  position: relative;
}
.step-num {
  font-family: Manrope, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f633;
  line-height: 1;
  min-width: 44px;
  flex-shrink: 0;
}
.step-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.step-desc {
  color: var(--muted);
  font-size: 0.9rem;
}
.prices-section {
  border-top: 1px solid var(--border);
}
.prices-table {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.prices-table tr {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.prices-table tr:last-child {
  border-bottom: none;
}
.prices-table tr:hover {
  background: var(--surface-2);
}
.prices-table td {
  padding: 14px 16px;
  font-size: 0.95rem;
}
.prices-table td:first-child {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}
.prices-table td:last-child {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  font-family: Manrope, sans-serif;
}
.price-icon {
  font-size: 1.1rem;
}
.price-free {
  color: var(--success);
}
.price-avg {
  background: #ff5c1a14;
  border: 1px solid rgba(255, 92, 26, 0.2) !important;
}
.price-avg td:last-child {
  color: var(--cta);
}
.installment-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.installment-card {
  background: linear-gradient(135deg, #3b82f61a, #ff5c1a14);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
.installment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.installment-title {
  font-family: Manrope, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.installment-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.installment-scheme {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.scheme-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
}
.scheme-amount {
  font-family: Manrope, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}
.scheme-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.installment-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}
.installment-note .ok {
  color: var(--success);
}
.compare-section {
  border-top: 1px solid var(--border);
}
.compare-warn {
  background: #ff5c1a14;
  border: 1px solid rgba(255, 92, 26, 0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 0.95rem;
  color: var(--muted);
}
.compare-warn strong {
  color: var(--cta);
}
.compare-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface-2);
}
.compare-header div {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}
.compare-header .bad-col {
  color: var(--muted);
  border-right: 1px solid var(--border);
}
.compare-header .good-col {
  color: var(--success);
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.compare-row div {
  padding: 14px 16px;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.compare-row .bad-col {
  color: var(--muted);
  border-right: 1px solid var(--border);
}
.compare-row .bad-col:before {
  content: "✗";
  color: #f87171;
  flex-shrink: 0;
  margin-top: 1px;
}
.compare-row .good-col {
  color: var(--text);
}
.compare-row .good-col:before {
  content: "✓";
  color: var(--success);
  flex-shrink: 0;
  margin-top: 1px;
}
.guarantee-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.guarantee-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.guarantee-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.guarantee-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.guarantee-desc {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}
.faq-section {
  border-top: 1px solid var(--border);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
  gap: 12px;
}
.faq-q:hover {
  background: var(--surface-2);
}
.faq-arrow {
  color: var(--muted);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  font-size: 1.1rem;
}
.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-a-inner {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-a {
  max-height: 300px;
}
.order-section {
  border-top: 1px solid var(--border);
}
.order-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
}
.order-title {
  font-family: Manrope, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.order-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.order-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.order-promise span {
  background: #10b9811a;
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--success);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
}
.order-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-field {
  position: relative;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  resize: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}
.form-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}
.form-divider:before,
.form-divider:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.form-messengers {
  display: flex;
  gap: 10px;
}
.form-messengers .btn {
  flex: 1 1 0;
  min-width: 0;
}
.form-messengers .btn-full {
  width: auto;
}
.form-note {
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
  margin-top: 4px;
}
.form-policy {
  margin-bottom: 24px;
  text-align: left;
}
.form-policy label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}
.form-policy input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--cta);
  width: 14px;
  height: 14px;
}
.form-policy a {
  color: var(--border-hover);
  text-decoration: underline;
}
.form-policy a:hover {
  color: var(--white);
}
.brands-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.brand-pill {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.2s;
}
.brand-pill:hover {
  border-color: var(--accent);
  color: var(--text);
}
.contacts-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contacts-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.contact-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
}
.contact-title {
  font-family: Manrope, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-text {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}
.contact-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: #ffffff4d;
  text-underline-offset: 3px;
}
.contacts-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  grid-template-columns: 1fr;
}
.mobile-more-wrap {
  display: none;
  padding: 8px 0 24px;
  border-top: 1px solid var(--border);
}
.mobile-more-btn {
  min-height: 52px;
  font-weight: 700;
  width: 100%;
  margin: 0 auto;
  border-color: #ffffffbf;
}
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-logo {
  font-family: Manrope, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-logo span {
  color: var(--accent);
}
.footer-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contacts a {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-contacts a:hover {
  color: var(--text);
}
.footer-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-districts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-districts span {
  color: var(--muted);
  font-size: 0.85rem;
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: 6px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--text);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer-copy,
.footer-legal {
  color: var(--muted);
  font-size: 0.8rem;
}
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 99;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px #0006;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-btn-max {
  background: #fff;
  color: #111827;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.float-btn-tg {
  background: #08c;
  color: #fff;
}
.float-btn-call {
  background: var(--cta);
  color: #fff;
}
.float-max-logo {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: block;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
@media (min-width: 768px) {
  .nav-menu,
  .nav-status {
    display: flex;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 60px;
    align-items: center;
  }
  .hero-h1 {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
  }
  .hero-sub {
    margin: 0;
  }
  .hero-actions {
    flex-direction: row;
    margin: 0;
    max-width: none;
  }
  .hero-trust {
    justify-content: flex-start;
  }
  .counters {
    max-width: 100%;
  }
  .symptoms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-inner {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }
  .about-photo-wrap {
    flex-shrink: 0;
    width: 280px;
  }
  .steps-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .guarantee-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-grid {
    flex-direction: row;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .contacts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contacts-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .float-btns {
    display: none;
  }
}
@media (min-width: 1024px) {
  .symptoms-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .symptom-other {
    grid-column: auto;
  }
  .installment-scheme {
    grid-template-columns: repeat(4, 1fr);
  }
}
.hero-mini {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 48px;
  background: linear-gradient(180deg, var(--surface-2) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero-mini-h1 {
  font-family: Manrope, sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-mini-desc {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}
.hero-mini-price {
  display: inline-block;
  background: #10b9811a;
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 8px 16px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 32px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .hero-mini {
    text-align: left;
  }
  .hero-mini-desc {
    margin: 0 0 32px;
    max-width: 100%;
  }
}
.cause-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  height: 100%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}
.cause-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.cause-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.cause-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.cause-price {
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}
.cause-price span {
  color: var(--cta);
  margin-left: 8px;
}
@media (max-width: 767px) {
  .mobile-lite-hide {
    display: none !important;
  }
  body.mobile-lite-expanded .mobile-lite-hide {
    display: block !important;
  }
  .mobile-more-wrap {
    display: block;
  }
  .section {
    padding: 48px 0;
  }
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 44px;
  }
  .hero-inner {
    gap: 28px;
  }
  .hero-trust {
    gap: 10px 14px;
    margin-top: 18px;
  }
  .machine-scene {
    max-width: 280px;
  }
  .counter-item {
    padding: 14px 8px;
  }
  .counter-num {
    font-size: 1.45rem;
  }
  .installment-card {
    padding: 24px 16px;
  }
  .installment-scheme {
    grid-template-columns: repeat(2, 1fr);
  }
  .installment-note {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 6px;
  }
  .about-facts {
    grid-template-columns: 1fr;
  }
  .fact {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .fact:last-child {
    border-bottom: none;
  }
}
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: var(--border);
}
@media (max-width: 900px) {
  .theme-toggle {
    width: 30px;
    height: 30px;
    padding: 0;
    margin-right: 12px;
    margin-left: 8px;
  }
  .theme-toggle svg {
    width: 14px;
    height: 14px;
  }
}
:root[data-theme="light"] .sun-icon {
  display: none !important;
}
:root[data-theme="light"] .moon-icon {
  display: block !important;
}
:root[data-theme="dark"] .sun-icon {
  display: block !important;
}
:root[data-theme="dark"] .moon-icon {
  display: none !important;
}
.brand-pill-m {
  display: inline-block;
  padding: 10px 20px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  transition: background 0.3s;
}
.brand-pill-m:hover {
  background: var(--border);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 6px));
  }
}
