:root{
  --bg:#f4f6f8;
  --card:#ffffff;
  --text:#121826;
  --muted:#6b7280;
  --line:#e5e7eb;
  --accent:#d32f2f;
  --accent-dark:#b71c1c;
  --brand-blue:#1f7fc8;
  --brand-blue-dark:#1766b6;
  --brand-blue-soft:#eef6ff;
  --brand-blue-line:#cfe4fb;
  --green:#14804a;
  --green-dark:#0f6439;
  --notice:#fff6df;
  --notice-line:#f3d28d;
  --radius:22px;
  --radius-sm:16px;
  --shadow:0 12px 28px rgba(17,24,39,.10);
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
body.is-telegram{
  background:var(--tg-bg, var(--bg));
}
body.intro-lock{
  overflow:hidden;
}

a{color:inherit;text-decoration:none}
button,input{font:inherit}

.intro{
  position:fixed;
  inset:0;
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at top, rgba(211,47,47,.14), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
  opacity:1;
  visibility:visible;
  transition:opacity .32s ease, visibility .32s ease;
}
.intro__audioTrigger{
  position:absolute;
  inset:0;
  z-index:3;
  border:none;
  background:transparent;
  opacity:0;
  cursor:pointer;
}
.intro.is-hidden{
  opacity:0;
  visibility:hidden;
}
.intro__badge{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  animation:introPop .62s cubic-bezier(.22,1,.36,1) forwards;
}
.intro__logo{
  width:78px;
  height:78px;
  border-radius:22px;
  box-shadow:0 16px 30px rgba(211,47,47,.18);
}
.intro__text{
  font-size:24px;
  font-weight:800;
  letter-spacing:-0.02em;
  color:var(--text);
}
@keyframes introPop{
  0%{transform:scale(.92) translateY(10px); opacity:0}
  55%{transform:scale(1.02) translateY(0); opacity:1}
  100%{transform:scale(1); opacity:1}
}

.page{
  padding:
    max(14px, env(safe-area-inset-top))
    0
    max(40px, env(safe-area-inset-bottom))
    0;
}
.container{width:min(440px, 94vw); margin:0 auto}

.langWrap{
  display:flex;
  justify-content:flex-end;
  margin:0 0 10px;
}
.langBtn{
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  border-radius:999px;
  padding:8px 12px;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(17,24,39,.08);
}

.banner{
  position:relative;
  overflow:hidden;
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow);
}

.banner__viewport{
  position:relative;
  overflow:hidden;
}
.banner__track{
  position:relative;
  aspect-ratio:2048 / 819;
}
.banner__slide{
  position:absolute;
  inset:0;
  width:100%;
  background:#fff;
  overflow:hidden;
  opacity:0;
  transform:translateX(16px) scale(1.015);
  transition:
    opacity .85s ease,
    transform .85s cubic-bezier(.22,1,.36,1);
  pointer-events:none;
}
.banner__slide::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(9,16,28,0) 0%, rgba(9,16,28,.08) 100%);
  opacity:.35;
  transition:opacity .7s ease;
}
.banner__slide img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transform:scale(1.035);
  filter:saturate(.96);
  transition:transform 5.2s ease, filter .7s ease;
}
.banner__slide.is-active::after{
  opacity:.08;
}
.banner__slide.is-active{
  opacity:1;
  transform:translateX(0) scale(1);
  pointer-events:auto;
}
.banner__slide.is-active img{
  transform:scale(1);
  filter:saturate(1.04);
}
.banner__placeholder{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, #eef2f6 0%, #dfe6ee 100%);
  color:#7b8794;
  font-size:18px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.dots{
  position:absolute;
  left:0;
  right:0;
  bottom:10px;
  display:flex;
  gap:8px;
  justify-content:center;
}
.dot{
  width:10px;
  height:10px;
  border:none;
  border-radius:999px;
  background:rgba(255,255,255,.94);
  cursor:pointer;
  box-shadow:0 1px 3px rgba(0,0,0,.22);
  transition:transform .28s ease, background-color .28s ease, width .28s ease;
}
.dot.is-active{
  width:22px;
  background:var(--accent);
  transform:scale(1.02);
}

.card{
  margin-top:14px;
  padding:16px 14px 14px;
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid rgba(229,231,235,.82);
}

.card__head{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}
.card__logo{
  width:46px;
  height:46px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(229,231,235,.95);
}
.card__brand{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}
.card__title{
  margin-top:2px;
  font-size:20px;
  font-weight:800;
  line-height:1.15;
  word-break:break-word;
}

.heroBox{
  padding:14px;
  border-radius:18px;
  background:linear-gradient(180deg, #f4faff 0%, #ffffff 100%);
  border:1px solid var(--brand-blue-line);
}
.heroBox h1{
  margin:0;
  font-size:28px;
  line-height:1.06;
  word-break:break-word;
}
.heroBox__text{
  margin:10px 0 0;
  color:var(--muted);
  max-width:320px;
  font-size:13px;
  line-height:1.4;
  letter-spacing:-0.01em;
  overflow-wrap:anywhere;
}
.heroBox__text strong{
  display:block;
  margin-top:6px;
  color:var(--accent);
  font-size:17px;
  line-height:1.2;
  font-weight:800;
  overflow-wrap:anywhere;
}
.heroBox__actions{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  position:relative;
  overflow:hidden;
  width:100%;
  min-height:50px;
  padding:13px 16px;
  border:none;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  letter-spacing:-0.01em;
  cursor:pointer;
  transform:translateY(0);
  isolation:isolate;
  transition:transform .22s ease, box-shadow .22s ease, filter .22s ease;
}
.btn:hover{
  transform:translateY(-2px);
  filter:brightness(1.03);
}
.btn:active{
  transform:translateY(0);
}
.btn::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:linear-gradient(180deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.04) 38%, rgba(255,255,255,0) 100%);
  pointer-events:none;
}
.btn::after{
  content:"";
  position:absolute;
  top:-120%;
  left:-30%;
  width:38%;
  height:320%;
  transform:rotate(24deg);
  background:linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.28) 50%, rgba(255,255,255,0) 100%);
  opacity:.8;
  animation:buttonShine 4.8s ease-in-out infinite;
  pointer-events:none;
}
.btn--primary{
  background:#169653;
  color:#fff;
  box-shadow:0 14px 28px rgba(22,150,83,.24);
}
.btn--accent{
  background:#ea2f2f;
  color:#fff;
  box-shadow:0 14px 28px rgba(234,47,47,.24);
}
.btn--call{
  position:relative;
}
.btn--call span{
  display:inline-block;
  min-width:170px;
  text-align:center;
  animation:callTextSwap .45s ease;
}
.btn--ghost{
  background:#ea2f2f;
  color:#fff;
  border:1px solid rgba(0,0,0,0);
  box-shadow:0 14px 28px rgba(234,47,47,.24);
}
.btn--telegram{
  background:#1f7fc8;
  color:#fff;
  box-shadow:0 14px 28px rgba(31,127,200,.24);
}
.btn--map{
  background:#1f7fc8;
  color:#fff;
  box-shadow:0 14px 28px rgba(31,127,200,.24);
}

@keyframes buttonShine{
  0%, 18%{left:-38%; opacity:0}
  26%{opacity:.9}
  42%{left:112%; opacity:0}
  100%{left:112%; opacity:0}
}

@keyframes callTextSwap{
  0%{opacity:0; transform:translateY(8px)}
  100%{opacity:1; transform:translateY(0)}
}
.btn--full{width:100%}

.block{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(229,231,235,.8);
}
.block--form{
  margin-top:18px;
  padding:18px 16px 16px;
  border-top:none;
  border-radius:18px;
  background:linear-gradient(180deg, var(--brand-blue-soft) 0%, #ffffff 100%);
  border:1px solid var(--brand-blue-line);
}
.block__title{
  font-size:16px;
  font-weight:800;
  line-height:1.3;
  word-break:break-word;
}
.block__text,
.locationMeta{
  margin:10px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
  overflow-wrap:anywhere;
}

.priceGrid{
  grid-template-columns:1fr 1fr;
}
.priceGrid .priceCard{
  height:100%;
}
.priceGrid .priceCard__new{
  font-size:18px;
}
.priceGrid .priceCard__models{
  font-size:12px;
}

@media (max-width:380px){
  .priceGrid{
    grid-template-columns:1fr;
  }
}

.serviceGrid,
.priceGrid{
  display:grid;
  gap:10px;
  margin-top:12px;
}
.serviceGrid{
  grid-template-columns:1fr;
}
.serviceItem{
  min-height:auto;
  padding:12px;
  border-radius:16px;
  background:#f8fafb;
  border:1px solid #edf0f2;
  display:flex;
  align-items:center;
  gap:12px;
}
.reveal{
  opacity:0;
  transform:translateY(28px) scale(.98);
  transition:
    opacity .55s ease,
    transform .55s ease;
  transition-delay:var(--reveal-delay, 0s);
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0) scale(1);
}
.serviceItem__icon{
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#ffffff;
  color:var(--accent);
  font-size:12px;
  font-weight:800;
  border:1px solid #edf0f2;
}
.serviceItem__title{
  margin-top:0;
  font-size:14px;
  font-weight:700;
  line-height:1.35;
  overflow-wrap:anywhere;
}

.priceCard{
  min-height:116px;
  padding:14px 12px;
  border-radius:16px;
  background:#f8fafb;
  border:1px solid #edf0f2;
}
.priceCard--focus{
  background:#f8fafb;
  border-color:#edf0f2;
}
.priceCard__old{
  color:#8a919d;
  font-size:13px;
  text-decoration:line-through;
}
.priceCard__new{
  margin-top:6px;
  color:var(--accent);
  font-size:21px;
  font-weight:800;
  line-height:1.15;
  overflow-wrap:anywhere;
}
.priceCard__models{
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
  overflow-wrap:anywhere;
}

.notice{
  margin-top:16px;
  padding:12px 12px 10px;
  border-radius:16px;
  background:#fff8ee;
  border:1px solid var(--notice-line);
}
.notice__title{
  color:#9a3412;
  font-size:14px;
  font-weight:800;
}
.notice p{
  margin:6px 0 0;
  color:#9a3412;
  font-size:11px;
  line-height:1.2;
  white-space:nowrap;
}

.mapWrap{
  margin-top:12px;
  overflow:hidden;
  border-radius:16px;
  border:1px solid #edf0f2;
  background:#eef4ff;
}
.mapPreview{
  position:relative;
  display:block;
  width:100%;
  height:230px;
  overflow:hidden;
  background:
    linear-gradient(135deg, #f7fbff 0%, #eef5ff 100%);
}
.mapPreview__badge{
  position:absolute;
  top:14px;
  left:14px;
  z-index:2;
  padding:8px 12px;
  border-radius:999px;
  background:#ffffff;
  color:#2b9fe0;
  font-size:13px;
  font-weight:800;
  box-shadow:0 10px 24px rgba(43,159,224,.14);
}
.mapPreview__roads{
  position:absolute;
  background:#d8e5f5;
  border-radius:999px;
  opacity:.95;
}
.mapPreview__roads--one{
  width:150%;
  height:12px;
  left:-20%;
  top:44%;
  transform:rotate(12deg);
}
.mapPreview__roads--two{
  width:135%;
  height:10px;
  left:-12%;
  top:62%;
  transform:rotate(-18deg);
}
.mapPreview__roads--three{
  width:12px;
  height:150%;
  left:36%;
  top:-18%;
  transform:rotate(8deg);
}
.mapPreview__roads--four{
  width:10px;
  height:140%;
  right:24%;
  top:-12%;
  transform:rotate(-10deg);
}
.mapPreview__pin{
  position:absolute;
  top:50%;
  left:50%;
  width:26px;
  height:26px;
  transform:translate(-50%, -60%);
  border-radius:50% 50% 50% 0;
  background:#ea2f2f;
  rotate:-45deg;
  box-shadow:0 14px 26px rgba(234,47,47,.28);
}
.mapPreview__pin::after{
  content:"";
  position:absolute;
  inset:6px;
  border-radius:50%;
  background:#fff;
}
.mapPreview__label{
  position:absolute;
  left:18px;
  right:18px;
  bottom:18px;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:2px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(10px);
  box-shadow:0 12px 24px rgba(17,24,39,.08);
  color:var(--text);
}
.mapPreview__label strong{
  font-size:14px;
}
.mapPreview__label span{
  color:var(--muted);
  font-size:12px;
}

.mapWrap + .locationMeta{
  margin-top:12px;
  margin-bottom:14px;
}

.form{
  display:grid;
  gap:10px;
  margin-top:12px;
}
.field label{
  display:block;
  margin-bottom:5px;
  font-size:12px;
  font-weight:700;
}
.field input{
  width:100%;
  padding:12px 13px;
  border-radius:12px;
  border:1px solid var(--line);
  background:#fff;
  font-size:16px;
  outline:none;
}
.field input:focus{
  border-color:rgba(31,127,200,.48);
  box-shadow:0 0 0 4px rgba(31,127,200,.12);
}
.error{
  min-height:14px;
  margin-top:6px;
  color:var(--accent);
  font-size:11px;
}

.afterForm{
  display:grid;
  gap:10px;
  margin-top:10px;
}

.urgency{
  margin-top:16px;
  padding:14px;
  border-radius:16px;
  background:linear-gradient(135deg, #c62828 0%, #e53935 100%);
  color:#fff;
}
.urgency__title{
  font-size:16px;
  font-weight:800;
}
.urgency__text{
  margin-top:6px;
  font-size:13px;
  color:rgba(255,255,255,.88);
}

.thanksCard{
  margin-top:16px;
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px 16px 18px;
  border:1px solid rgba(229,231,235,.8);
  text-align:center;
}
.thanksLogo{
  width:52px;
  height:52px;
  border-radius:16px;
  border:1px solid rgba(229,231,235,.9);
}
.thanksTitle{
  margin:14px 0 0;
  font-size:28px;
}
.thanksLead{
  color:var(--muted);
  line-height:1.55;
}
.thanksActions{
  display:grid;
  gap:10px;
  margin-top:12px;
}

@media (max-width:520px){
  .container{width:min(100%, calc(100vw - 20px))}
  .card{padding:14px 12px 12px}
  .heroBox{padding:13px 12px}
  .heroBox h1{font-size:25px}
  .heroBox__text{max-width:none}
  .priceGrid{grid-template-columns:1fr}
  .mapPreview,
  .mapWrap iframe{height:210px}
  .btn{min-height:48px; padding:12px 14px}
  input, textarea{font-size:16px}
}

@media (max-width:380px){
  .container{width:min(100%, calc(100vw - 14px))}
  .card__head{gap:10px}
  .card__logo{width:42px; height:42px}
  .card__brand{font-size:12px}
  .card__title{font-size:18px}
  .heroBox h1{font-size:22px}
  .heroBox__text{font-size:12px}
  .heroBox__text strong{font-size:16px}
  .serviceItem{padding:11px 10px; gap:10px}
  .serviceItem__title{font-size:13px}
  .priceCard{min-height:auto}
  .priceCard__new{font-size:20px}
  .priceCard__models{font-size:12px}
  .notice{padding:12px 10px}
  .notice p{font-size:11px}
  .mapPreview,
  .mapWrap iframe{height:190px}
  .btn{font-size:13px}
}

@media (max-width:320px){
  .page{padding:10px 0 28px}
  .card{padding:12px 10px 10px}
  .heroBox h1{font-size:20px}
  .block__title{font-size:15px}
  .btn{min-height:46px; font-size:12px}
}
