
:root{
  --bg:#0f1318;
  --panel:#161b22;
  --panel-2:#1c222b;
  --text:#f4f7fb;
  --muted:#b7c0cb;
  --line:rgba(255,255,255,.10);
  --accent:#f57c10;
  --accent-2:#ff9b39;
  --shadow:0 14px 35px rgba(0,0,0,.35);
  --radius:22px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    linear-gradient(rgba(7,10,14,.84), rgba(7,10,14,.92)),
    url("assets/bg-soft.jpg") center/cover fixed no-repeat;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(1180px,calc(100% - 32px));margin:0 auto}

.site-header{
  position:sticky; top:0; z-index:30;
  background:rgba(9,12,16,.75);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.site-header.compact{position:static}
.header-row{
  min-height:82px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.logo{font-weight:800; letter-spacing:.02em; font-size:1.25rem}
.logo-main{font-weight:900}
.logo-sub{font-weight:500; opacity:.9}
.nav{display:flex; gap:24px; color:var(--muted)}
.nav a{position:relative}
.nav a:hover{color:#fff}
.nav a::after{
  content:""; position:absolute; left:0; bottom:-8px;
  width:0; height:2px; background:var(--accent);
  transition:width .18s ease;
}
.nav a:hover::after{width:100%}
.header-actions{display:flex; align-items:center; gap:16px}
.phone{color:#d7dce3; white-space:nowrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  min-height:48px; padding:0 20px; border-radius:14px;
  font-weight:700; border:1px solid transparent;
  transition:transform .14s ease, filter .14s ease, background-color .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.btn:hover{transform:translateY(-1px); filter:brightness(1.03)}
.btn:active{transform:translateY(0)}
.btn-primary{
  color:#111;
  background:linear-gradient(180deg,var(--accent-2),var(--accent));
  box-shadow:0 10px 24px rgba(245,124,16,.24);
}
.btn-secondary{
  color:#f5f7fb;
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.15);
}
.btn-ghost{
  color:#f5f7fb;
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.15);
}
.btn-wide{width:100%}

.hero{padding:42px 0 34px}
.hero-grid{
  display:grid; grid-template-columns:1.05fr 1.15fr; gap:24px; align-items:center;
}
.hero-copy{
  padding:32px 8px 32px 0;
}
.eyebrow{
  font-size:.95rem; color:var(--muted); text-transform:uppercase; letter-spacing:.12em; margin-bottom:16px;
}
.hero h1{
  margin:0 0 16px; font-size:clamp(2.55rem,5.6vw,5rem); line-height:.93; text-transform:uppercase;
}
.hero p{max-width:560px; color:var(--muted); font-size:1.05rem; line-height:1.7}
.hero-buttons{display:flex; gap:14px; flex-wrap:wrap; margin-top:22px}
.hero-media{
  position:relative; border-radius:32px; overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  background:#10151b;
}
.hero-media img{width:100%; height:100%; object-fit:cover; aspect-ratio:1.1/0.82}
.hero-media::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(10,13,17,.35), rgba(10,13,17,0) 28%);
  pointer-events:none;
}

.section{padding:34px 0}
.section-title-wrap{
  display:flex; align-items:center; gap:18px; margin-bottom:22px;
}
.section-title-wrap h2,.section-title-wrap h1{
  margin:0; font-size:clamp(1.9rem,3vw,2.5rem); text-transform:uppercase; text-align:center; white-space:nowrap;
}
.line{height:1px; flex:1; background:linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent)}

.card-grid{display:grid; gap:18px}
.card-grid-4{grid-template-columns:repeat(4,1fr)}
.card-grid-3{grid-template-columns:repeat(3,1fr)}

.feature-card{
  display:block;
  padding:14px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  transition:transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.feature-card:hover{
  transform:translateY(-2px);
  border-color:rgba(245,124,16,.38);
  box-shadow:0 18px 32px rgba(0,0,0,.38);
}
.feature-card img{
  object-fit:contain;
  
  padding:10px;
  width:100%;
  aspect-ratio:1.78/1;
}
.feature-card span{
  display:block; padding:14px 8px 4px; text-align:center; font-weight:700; font-size:1.05rem;
}
.feature-card-small img{aspect-ratio:2.1/1}

.details-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:22px;
}
.details-grid-3{grid-template-columns:repeat(3,1fr)}
.detail-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));
  border:1px solid rgba(255,255,255,.10);
  border-radius:20px;
  padding:20px;
  box-shadow:var(--shadow);
}
.detail-card h3{margin:0 0 12px; font-size:1.15rem}
.detail-card p{margin:0 0 12px; color:var(--muted); line-height:1.65}
.detail-card ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.7}

.price-grid{
  display:grid; grid-template-columns:.9fr 1.1fr; gap:20px; align-items:center;
}
.price-copy{
  padding:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.price-copy h2{margin:0 0 18px; font-size:clamp(1.8rem,3vw,2.3rem); text-transform:uppercase}
.price-list{list-style:none; margin:0 0 20px; padding:0}
.price-list li{
  display:flex; justify-content:space-between; gap:16px;
  padding:14px 0; border-bottom:1px solid rgba(255,255,255,.08);
}
.price-list span{color:#eef2f7}
.price-list strong{color:#fff; white-space:nowrap}
.price-media{
  border-radius:24px; overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
}
.price-media img{width:100%; aspect-ratio:1.8/1; object-fit:cover}

.contacts-grid{
  display:grid; grid-template-columns:.95fr 1fr .9fr; gap:18px; align-items:stretch;
}
.contacts-card,.booking-card,.map-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px; padding:22px; box-shadow:var(--shadow);
}
.contacts-card h2,.booking-card h2{margin:0 0 16px; text-transform:uppercase}
.contact-list{list-style:none; padding:0; margin:0; display:grid; gap:14px; color:var(--muted)}
.contact-list a{color:#eef2f7}
#bookingForm{display:grid; gap:12px}
#bookingForm input{
  min-height:48px; border-radius:14px; border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03); color:#fff; padding:0 14px; outline:none;
}
#bookingForm input::placeholder{color:#98a3af}
#bookingForm input:focus{border-color:rgba(245,124,16,.45)}
.map-card{padding:0; overflow:hidden}
.map-card img{width:100%; height:100%; object-fit:cover; min-height:280px}

.site-footer{
  padding:20px 0 34px; color:var(--muted);
}
.footer-row{
  display:flex; justify-content:space-between; gap:12px; border-top:1px solid rgba(255,255,255,.08); padding-top:18px;
}

.price-table-wrap{
  border:1px solid rgba(255,255,255,.10);
  border-radius:22px; overflow:hidden; box-shadow:var(--shadow);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.price-table{width:100%; border-collapse:collapse}
.price-table th,.price-table td{padding:16px 18px; text-align:left}
.price-table thead th{background:rgba(255,255,255,.05); text-transform:uppercase; font-size:.95rem}
.price-table tbody tr:not(:last-child) td{border-bottom:1px solid rgba(255,255,255,.08)}
.center-actions{display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:24px}

@media (max-width: 1080px){
  .nav{display:none}
  .hero-grid,.price-grid{grid-template-columns:1fr}
  .card-grid-4{grid-template-columns:repeat(2,1fr)}
  .contacts-grid{grid-template-columns:1fr 1fr}
  .map-card{grid-column:1/-1}
}
@media (max-width: 760px){
  .header-row{min-height:74px; flex-wrap:wrap; padding:12px 0}
  .header-actions{width:100%; justify-content:space-between}
  .phone{font-size:.95rem}
  .hero{padding-top:22px}
  .hero-copy{padding:8px 0}
  .hero h1{font-size:clamp(2.2rem,12vw,3.6rem)}
  .card-grid-4,.card-grid-3,.details-grid,.details-grid-3,.contacts-grid{grid-template-columns:1fr}
  .section-title-wrap{gap:10px}
  .section-title-wrap h2,.section-title-wrap h1{white-space:normal}
  .footer-row{flex-direction:column}
}


.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px;
  border-radius:12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.lang-link{
  min-width:42px;
  min-height:36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 10px;
  border-radius:9px;
  font-weight:800;
  color:var(--muted);
  transition:background-color .14s ease,color .14s ease,transform .14s ease;
}
.lang-link:hover{color:#fff;background:rgba(255,255,255,.06);transform:translateY(-1px)}
.lang-link.is-active{
  color:#111;
  background:linear-gradient(180deg,var(--accent-2),var(--accent));
}

.feature-card{
  appearance:none;
  width:100%;
  text-align:left;
  cursor:pointer;
  color:var(--text);
}
.feature-card span{
  transition:color .14s ease, text-shadow .14s ease;
}
.feature-card:hover span,
.feature-card.active span{
  color:#fff;
  text-shadow:0 0 18px rgba(245,124,16,.35);
}
.feature-card:hover,
.feature-card.active{
  border-color:rgba(245,124,16,.55);
  box-shadow:0 0 0 1px rgba(245,124,16,.25), 0 18px 32px rgba(0,0,0,.38), 0 0 24px rgba(245,124,16,.12);
}
.feature-card:focus-visible{
  outline:2px solid rgba(245,124,16,.8);
  outline-offset:3px;
}

.service-panels,
.advantage-panels{
  margin-top:22px;
}
.service-panel,
.advantage-panel{
  display:none;
}
.service-panel.is-visible,
.advantage-panel.is-visible{
  display:block;
}
.service-panels .service-panel.is-visible{
  grid-column:1/-1;
}
.advantage-panels .advantage-panel.is-visible{
  grid-column:1/-1;
}

.map-card{
  display:block;
  transition:transform .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.map-card:hover{
  transform:translateY(-2px);
  border-color:rgba(245,124,16,.35);
  box-shadow:0 18px 32px rgba(0,0,0,.38);
}

@media (max-width: 760px){
  .header-actions{
    flex-wrap:wrap;
    gap:10px;
  }
  .lang-switch{
    order:-1;
  }
}


.motorzone-logo{
  display:flex;
  align-items:flex-end;
  gap:0;
  line-height:1;
  font-style:italic;
  letter-spacing:-0.02em;
}
.motorzone-logo .mz-motor{
  color:#f2f4f7;
  font-size:1.15rem;
  font-weight:400;
}
.motorzone-logo .mz-z{
  color:var(--accent);
  font-size:3rem;
  font-weight:900;
  line-height:.82;
  margin:0 .04em 0 .02em;
  position:relative;
}
.motorzone-logo .mz-z::after{
  content:"";
  position:absolute;
  left:-0.02em;
  right:-0.06em;
  bottom:0.06em;
  height:.11em;
  background:var(--accent);
  transform:skewX(-16deg);
}
.motorzone-logo .mz-one{
  color:#dfe5ec;
  font-size:1.9rem;
  font-weight:800;
  line-height:.85;
  margin-left:-0.04em;
}

.real-map-card{
  position:relative;
  padding:0;
  overflow:hidden;
  min-height:320px;
}
.real-map-card iframe{
  width:100%;
  height:100%;
  min-height:320px;
  border:0;
  filter:grayscale(.15) saturate(.8) contrast(1.02);
}
.map-overlay{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  display:flex;
  flex-direction:column;
  gap:4px;
  padding:14px 16px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(15,19,24,.90), rgba(15,19,24,.82));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
}
.map-badge{
  color:var(--accent-2);
  font-size:.88rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.map-overlay strong{
  font-size:1rem;
}
.map-overlay span:last-child{
  color:var(--muted);
  font-size:.95rem;
}

.bottom-info{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:18px;
}
.info-pill{
  padding:12px 16px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  color:#eef2f7;
  box-shadow:var(--shadow);
}

.extra-note{
  margin-top:18px;
  text-align:center;
  color:var(--muted);
}

@media (max-width: 760px){
  .motorzone-logo .mz-motor{font-size:1rem}
  .motorzone-logo .mz-z{font-size:2.4rem}
  .motorzone-logo .mz-one{font-size:1.45rem}
  .bottom-info{margin-top:14px}
}


.phone{
  font-size:1.22rem;
  font-weight:800;
  letter-spacing:.01em;
  color:#f5f7fb;
}

.info-highlight{
  flex:1 1 320px;
  padding:20px 22px;
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(245,124,16,.12), rgba(255,255,255,.03)),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(245,124,16,.28);
  box-shadow:0 16px 32px rgba(0,0,0,.28), 0 0 28px rgba(245,124,16,.10);
}
.info-highlight-title{
  font-size:1.08rem;
  font-weight:800;
  color:#fff;
  margin-bottom:8px;
}
.info-highlight-text{
  color:var(--muted);
  line-height:1.6;
}
.map-overlay{
  gap:2px;
}
.map-overlay strong{
  font-size:1.02rem;
}
.map-overlay span:last-child{
  color:#e5ebf2;
}

@media (max-width: 760px){
  .phone{font-size:1.02rem}
}


.logo-image-wrap{
  display:inline-flex;
  align-items:center;
}
.logo-image{
  display:block;
  width:260px;
  max-width:min(36vw,260px);
  height:auto;
  border-radius:0;
}
.hero-buttons{
  align-items:center;
}
.card-grid-4{
  grid-template-columns:repeat(4,1fr);
}
.site-footer span{
  font-weight:700;
}
@media (max-width: 1080px){
  .card-grid-4{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 760px){
  .logo-image{
    width:190px;
    max-width:60vw;
  }
}


.header-row{
  align-items:center;
}
.logo-image{
  width:240px;
  max-width:min(34vw,240px);
}
.header-actions{
  flex-wrap:nowrap;
}
@media (max-width: 760px){
  .header-row{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:10px;
  }
  .logo-image-wrap{
    grid-column:1;
  }
  .header-actions{
    grid-column:2 / 4;
    width:auto;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
    flex-wrap:nowrap;
    min-width:0;
  }
  .lang-switch{
    order:0;
    flex:0 0 auto;
  }
  .phone{
    order:1;
    white-space:nowrap;
    font-size:.92rem;
    font-weight:900;
  }
  #telegramTop{
    order:2;
    padding:0 14px;
    min-height:42px;
    font-size:.94rem;
    white-space:nowrap;
  }
  .logo-image{
    width:155px;
    max-width:155px;
  }
}
@media (max-width: 520px){
  .header-row{
    grid-template-columns:auto 1fr;
  }
  .header-actions{
    grid-column:1 / -1;
    justify-content:space-between;
  }
  .phone{
    font-size:.88rem;
  }
}

.feature-card img{
  object-fit:contain;
  
  padding:12px;
}
.feature-card span{
  text-align:center;
  font-size:1rem;
}



.service-panel,
.advantage-panel{
  display:none;
}
.service-panel.is-visible,
.advantage-panel.is-visible{
  display:block;
}
.service-panels .service-panel.is-visible,
.advantage-panels .advantage-panel.is-visible{
  grid-column:1 / -1;
}

.feature-card-small img{filter:none}

.hero-sub{
  font-size:0.7em;
  opacity:0.9;
  display:inline-block;
  margin-top:6px;
}

.phone{
  font-size: 1.5rem !important;
  font-weight: 900 !important;
}

.site-footer {
  background: #0f0f12;
  color: #ccc;
  padding: 40px 20px 20px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 280px;
}

.footer-section h3 {
  color: #ff6a00;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #222;
  padding-top: 15px;
  font-size: 13px;
  color: #777;
}