/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --blue:        #1354F9;
  --blue-dark:   #0A3ADB;
  --blue-light:  #EEF2FF;
  --accent:      #00D4B4;
  --text:        #0D1117;
  --text-muted:  #5A6070;
  --border:      #E4E8F0;
  --white:       #FFFFFF;
  --bg:          #F7F9FC;

  --font-head: 'Inter', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;

  --r:    12px;
  --r-lg: 20px;
  --shadow: 0 4px 24px rgba(19,84,249,.10);
  --shadow-lg: 0 12px 48px rgba(19,84,249,.16);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* font-weight cap — max 600 */
* { font-weight: revert; }
b, strong,
h1, h2, h3, h4, h5, h6,
.hero__title, .section-title, .logo,
.hero__stat-num, .about__num-val,
.master-card__name, .popup__title,
.form-card__title, .footer__logo,
.step__title, .adv-card__val,
[style*="font-weight: 600"],
[style*="font-weight: 600"] {
  font-weight: 600 !important;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228,232,240,.6);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span { color: var(--blue); }
.logo em {
  background: var(--blue);
  color: #fff;
  font-style: normal;
  font-size: .7rem;
  padding: 2px 7px;
  border-radius: 4px;
  vertical-align: middle;
}
.header__nav { display: flex; gap: 28px; }
.header__nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.header__nav a:hover { color: var(--blue); }
.header__phone {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
/* На десктопе — иконку скрываем, показываем текст */
.header__phone .phone-icon { display: none; }
.header__phone-text { display: inline; }
.header__cta {
  background: var(--blue);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.header__cta:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* Мобильная кнопка скрыта по умолчанию — медиазапрос её показывает */
.header__mobile-cta { display: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
  background: #0A1628;
}

/* --- animated background --- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Noise grain overlay */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .4;
  z-index: 1;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(19,84,249,.45) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,212,180,.35) 0%, transparent 70%);
  bottom: -80px; right: 10%;
  animation-delay: -3s;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(19,84,249,.25) 0%, transparent 70%);
  top: 40%; left: 50%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(.97); }
}

/* Grid lines — removed */
.hero__grid { display: none; }

/* Floating washing machine icon */
.hero__machine {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  z-index: 2;
  animation: machineBob 6s ease-in-out infinite;
  opacity: .18;
}
@keyframes machineBob {
  0%, 100% { transform: translateY(-50%) rotate(-1deg); }
  50%       { transform: translateY(calc(-50% - 18px)) rotate(1deg); }
}

/* Spinning drum ring */
.hero__drum {
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  border: 2px dashed rgba(19,84,249,.3);
  border-radius: 50%;
  z-index: 2;
  animation: drumSpin 20s linear infinite;
}
.hero__drum::before {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(0,212,180,.2);
  border-radius: 50%;
  animation: drumSpin 12s linear infinite reverse;
}
@keyframes drumSpin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Floating badges */
.hero__badge {
  position: absolute;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: 10px 16px;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: badgeFloat 5s ease-in-out infinite;
}
.hero__badge svg { flex-shrink: 0; }
.hero__badge--1 { top: 22%; right: 28%; animation-delay: 0s; }
.hero__badge--2 { top: 38%; right: 22%; animation-delay: -1.5s; }
.hero__badge--3 { bottom: 28%; right: 30%; animation-delay: -3s; }
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Particles */
.hero__particles { position: absolute; inset: 0; z-index: 1; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  animation: particleRise linear infinite;
  opacity: 0;
}
@keyframes particleRise {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  10%  { opacity: .8; }
  90%  { opacity: .3; }
  100% { transform: translateY(-120vh) scale(0); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}

.hero .wrap {
  width: 100%;
  max-width: 1200px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,180,.15);
  border: 1px solid rgba(0,212,180,.3);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp .8s both;
}
.hero__label::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.4); }
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeUp .8s .1s both;
}
.hero__title .accent { color: var(--accent); }
.hero__title .blue-hl {
  position: relative;
  display: inline-block;
}
.hero__title .blue-hl::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0; right: 0;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineReveal .8s .9s both;
}
@keyframes lineReveal {
  to { transform: scaleX(1); }
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeUp .8s .2s both;
}

.hero__cities {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  animation: fadeUp .8s .35s both;
}
.hero__cities-label {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  margin-right: 4px;
}
.hero__city {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  padding: 4px 12px;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.hero__city:hover {
  background: rgba(255,255,255,.16);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeUp .8s .3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 32px rgba(19,84,249,.4);
}
.btn--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 12px 40px rgba(19,84,249,.5);
}
.btn--ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.18); }

.hero__stats {
  display: flex;
  gap: 36px;
  animation: fadeUp .8s .4s both;
}
.hero__stat { }
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
}
.hero__stat-num .unit {
  font-size: 1rem;
  color: var(--accent);
}
.hero__stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   ADVANTAGES
   ============================================= */
.advantages {
  background: var(--white);
  padding: 80px 0;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.adv-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.adv-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.adv-card__icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: background .3s;
}
.adv-card:hover .adv-card__icon { background: var(--blue); }
.adv-card:hover .adv-card__icon svg { color: #fff; }
.adv-card__icon svg { color: var(--blue); transition: color .3s; }
.adv-card__val {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.adv-card__text {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  background: #0A1628;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(19,84,249,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(0,212,180,.1) 0%, transparent 50%);
}
.services .wrap { position: relative; z-index: 1; }
.services__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.services__head-text {}
.services__all {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}
.services__all:hover { gap: 10px; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.svc-card {
  position: relative;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  overflow: hidden;
  transition: border-color .3s, background .3s, transform .3s;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19,84,249,.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.svc-card:hover {
  border-color: rgba(19,84,249,.5);
  background: rgba(255,255,255,.07);
  transform: translateY(-4px);
}
.svc-card:hover::before { opacity: 1; }

.svc-card__icon {
  width: 56px;
  height: 56px;
  position: relative;
  flex-shrink: 0;
}
.svc-card__icon svg {
  width: 56px;
  height: 56px;
}

.svc-card__body { flex: 1; }
.svc-card__name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}
.svc-card__desc {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}
.svc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: auto;
}
.svc-card__price {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.svc-card__price strong {
  color: var(--accent);
  font-weight: 600;
}
.svc-card__arrow {
  width: 28px; height: 28px;
  background: rgba(19,84,249,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: background .2s, transform .2s;
}
.svc-card:hover .svc-card__arrow {
  background: var(--blue);
  color: #fff;
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services__grid { grid-template-columns: 1fr; }
  .services__head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* =============================================
   STEPS
   ============================================= */
.steps {
  background: #0A1628;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.steps::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 520px;
}
.steps .section-title { color: #fff; }
.steps .section-sub   { color: rgba(255,255,255,.5); }

.steps__head { margin-bottom: 60px; }

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--accent) 100%);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 72px; height: 72px;
  background: #0D1F3A;
  border: 2px solid rgba(19,84,249,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue);
  transition: background .3s, border-color .3s;
  position: relative;
}
.step__num::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(19,84,249,.2);
  animation: numRotate 10s linear infinite;
}
@keyframes numRotate {
  to { transform: rotate(360deg); }
}
.step:hover .step__num { background: var(--blue); border-color: var(--blue); color: #fff; }
.step__title {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}
.step__text { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.5; }

/* =============================================
   PRICE
   ============================================= */
.price {
  background: var(--white);
  padding: 96px 0;
}
.price__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.price__note {
  font-size: .875rem;
  color: var(--text-muted);
  max-width: 280px;
  text-align: right;
  line-height: 1.5;
}

.price__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.price__tab {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
}
.price__tab.active,
.price__tab:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.price__table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.price__row {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color .2s, background .2s;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.price__row:hover {
  border-color: var(--blue);
  background: var(--blue-light);
}
.price__row:hover .price__row-name { color: var(--blue); }
.price__row:hover .price__row-cta { opacity: 1; }
.price__row-name {
  flex: 1;
  font-size: .9rem;
  color: var(--text);
  transition: color .2s;
}
.price__row-price {
  flex-shrink: 0;
  width: 80px;
  text-align: right;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}
.price__row-cta {
  flex-shrink: 0;
  width: 80px;
  text-align: right;
  font-size: .75rem;
  color: var(--blue);
  font-weight: 600;
  opacity: 0;
  transition: opacity .2s;
  white-space: nowrap;
}

/* Show more */
.price__more {
  display: none;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  display: none;
}
.price__more.open { display: grid; }
.price__showmore-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.price__showmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 11px 24px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.price__showmore:hover { border-color: var(--blue); color: var(--blue); }
.price__showmore svg { transition: transform .3s; }
.price__showmore.open svg { transform: rotate(180deg); }
.price__showmore-count { font-weight: 400; font-size: .85rem; }
@media (max-width: 768px) {
  .price__more.open { grid-template-columns: 1fr; }
}
.price__footnote {
  grid-column: 1 / -1;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--bg);
  border-radius: var(--r);
  border-left: 3px solid var(--blue);
  line-height: 1.5;
}
.price__panel { animation: fadeUp .3s both; }
.about {
  background: var(--bg);
  padding: 96px 0;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__nums {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.about__num-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  border: 1px solid var(--border);
}
.about__num-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.about__num-label {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.about__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.about__tag {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: border-color .2s, color .2s;
}
.about__tag:hover { border-color: var(--blue); color: var(--blue); }

.about__visual {
  position: relative;
}
.about__img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #0A1628 0%, #1354F9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__img-placeholder {
  opacity: .2;
}
.about__img-placeholder svg { width: 180px; height: 180px; color: #fff; }
.about__badge-float {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about__badge-float-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.about__badge-float-val {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}
.about__badge-float-label {
  font-size: .78rem;
  color: var(--text-muted);
}

/* =============================================
   MASTERS
   ============================================= */
.masters {
  background: var(--white);
  padding: 96px 0;
}
.masters__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.master-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.master-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.master-card__photo {
  height: 280px;
  background: linear-gradient(160deg, #0D2250 0%, #1354F9 60%, #00D4B4 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.master-card__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.master-card__exp {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 6px 12px;
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
}
.master-card__body { padding: 20px; }
.master-card__name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.master-card__role {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.master-card__spec {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.master-card__spec span {
  font-size: .75rem;
  background: var(--blue-light);
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 500;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: var(--bg);
  padding: 96px 0;
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq__list { margin-top: 0; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color .2s;
}
.faq__q:hover { color: var(--blue); }
.faq__icon {
  width: 28px; height: 28px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
  transition: background .2s, transform .3s;
}
.faq__item.open .faq__icon {
  background: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}
.faq__a {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-bottom: 20px;
  display: none;
}
.faq__item.open .faq__a { display: block; }

/* =============================================
   FORM
   ============================================= */
.form-section {
  background: #0A1628;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.form-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.form-section .section-title { color: #fff; }
.form-section .section-sub   { color: rgba(255,255,255,.5); margin-bottom: 32px; }

.form-promises {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
.form-promise {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.form-promise__dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.form-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 40px;
}
.form-card__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: #fff;
  transition: border-color .2s, background .2s;
  outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,.3); }
.form-input:focus {
  border-color: var(--blue);
  background: rgba(19,84,249,.1);
}
.form-select {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}
.form-select:focus { border-color: var(--blue); }
.form-select option { background: #0A1628; color: #fff; }
.form-submit {
  width: 100%;
  margin-top: 8px;
}
.form-agree {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
.form-agree a { color: rgba(255,255,255,.5); text-decoration: underline; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #060E1C;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__logo { font-family: var(--font-head); font-size: .9rem; font-weight: 600; color: #fff; }
.footer__logo span { color: var(--accent); }
.footer__info { font-size: .82rem; color: rgba(255,255,255,.35); line-height: 1.6; }
.footer__phone { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: #fff; }
.footer__schedule { font-size: .82rem; color: rgba(255,255,255,.4); margin-top: 4px; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

.popup-service-card {
  background: rgba(19,84,249,.12);
  border: 1px solid rgba(19,84,249,.3);
  border-radius: var(--r);
  padding: 14px 18px;
  margin-bottom: 4px;
}
.popup-service-card__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}
.popup-service-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.popup-service-card__name {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
}
.popup-service-card__price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

/* Success screen */
.popup-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 0 8px;
}
.popup-success.show { display: flex; }
.popup-success__circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0,212,100,.12);
  border: 2px solid rgba(0,212,100,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.popup-success__circle svg {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: checkDraw .5s .15s ease forwards;
}
@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}
.popup-success__circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,212,100,.15);
  animation: successPulse 2s ease-in-out infinite;
}
@keyframes successPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: .5; }
}
.popup-success__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.popup-success__sub {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  max-width: 300px;
}
.popup-success__close {
  margin-top: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.6);
  border-radius: var(--r);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.popup-success__close:hover { background: rgba(255,255,255,.15); color: #fff; }
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 14, 28, .75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.popup {
  background: #0D1F3A;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 44px;
  width: 100%;
  max-width: 480px;
  position: relative;
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), opacity .3s;
  opacity: 0;
}
.popup-overlay.open .popup {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.popup__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.5);
  transition: background .2s, color .2s;
}
.popup__close:hover { background: rgba(255,255,255,.15); color: #fff; }
.popup__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,212,180,.12);
  border: 1px solid rgba(0,212,180,.25);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.popup__label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
.popup__title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.popup__sub {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
  margin-bottom: 28px;
}
.popup .form-group { margin-bottom: 14px; }
.popup .form-submit { margin-top: 4px; }
.popup__promises {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.popup__promise {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.popup__promise::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.success-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0D2A14;
  border: 1px solid rgba(0,212,100,.3);
  color: #4ADE80;
  padding: 14px 24px;
  border-radius: var(--r);
  font-size: .9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2000;
  opacity: 0;
  transition: opacity .35s, transform .35s;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.success-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 480px) {
  .popup { padding: 28px 20px; }
  .popup-service-card__body { flex-direction: column; align-items: flex-start; gap: 4px; }
  .success-toast { white-space: normal; text-align: center; width: calc(100% - 32px); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .advantages__grid { grid-template-columns: repeat(3, 1fr); }
  .steps__grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps__grid::before { display: none; }
  .about__inner { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { order: -1; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .form-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__drum, .hero__badge, .hero__machine { display: none; }
}
@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__cta { display: none; }

  /* Телефон → круглая иконка-кнопка */
  .header__phone {
    width: 38px;
    height: 38px;
    padding: 0;
    background: var(--blue);
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .header__phone .phone-icon {
    display: block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .header__phone-text { display: none; }

  /* Мобильная кнопка заявки — круглая иконка как телефон */
  .header__mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    background: var(--accent);
    border-radius: var(--r);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
  }
  .header__mobile-cta:hover { background: #00bda0; }
  .header__mobile-cta svg { flex-shrink: 0; display: block; }

  /* Прайс — кнопка "Заказать" всегда видна */
  .price__row-cta { opacity: 1; }

  .advantages__grid { grid-template-columns: 1fr 1fr; }
  .steps__grid { grid-template-columns: 1fr; }
  .price__table { grid-template-columns: 1fr; }
  .masters__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .hero__stats { gap: 24px; }
  .price__head { flex-direction: column; align-items: flex-start; }
  .price__note { text-align: left; }
}