:root{
  --bg:#0b0b0c;
  --bg2:#0f0f10;
  --text:#f6f6f6;
  --muted:rgba(255,255,255,.72);
  --muted2:rgba(255,255,255,.55);
  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.10);
  --shadow: 0 20px 80px rgba(0,0,0,.45);
  --accent:#e35b0a;
  --accent2:#ff7a2f;
  --black:#141414;
  --radius:18px;
  --radius2:26px;
  --font: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: linear-gradient(180deg, #070708 0%, var(--bg) 45%, #070708 100%);
  overflow-x:hidden;
}

.noise{
  position:fixed; inset:0;
  pointer-events:none;
  opacity:.06;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  mix-blend-mode:overlay;
}

.bgGlow{
  position:fixed; inset:-220px -220px -220px -220px;
  pointer-events:none;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(227,91,10,.28), transparent 60%),
    radial-gradient(900px 600px at 95% 20%, rgba(255,122,47,.12), transparent 55%),
    radial-gradient(700px 520px at 10% 85%, rgba(227,91,10,.10), transparent 60%);
  filter: blur(2px);
}

a{color:inherit; text-decoration:none}
code{background:rgba(255,255,255,.08); padding:.12rem .35rem; border-radius:.5rem}

.container{width:min(1120px, 92vw); margin:0 auto}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(160%) blur(14px);
  background:rgba(10,10,11,.58);
  border-bottom:1px solid var(--stroke);
}
.header__inner{
  display:flex; align-items:center; gap:18px;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.brand__mark{
  width:34px; height:34px; border-radius:12px;
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.5), transparent 60%),
    linear-gradient(135deg, var(--accent), #b93f00);
  box-shadow:0 12px 30px rgba(227,91,10,.35);
}
.brand__text{display:flex; flex-direction:column; line-height:1.05}
.brand__name{font-weight:800; letter-spacing:.08em}
.brand__tag{font-size:12px; color:var(--muted2)}

.nav{margin-left:auto; display:flex; gap:18px}
.nav__link{color:var(--muted); font-weight:600; font-size:14px}
.nav__link:hover{color:var(--text)}

.header__cta{display:flex; gap:10px}
.btn{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--text);
  padding:12px 14px;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  cursor:pointer;
  transition:transform .14s ease, background .14s ease, border-color .14s ease;
}
.btn:hover{transform:translateY(-1px); border-color:rgba(255,255,255,.18)}
.btn:active{transform:translateY(0)}
.btn--primary{
  background:linear-gradient(135deg, var(--accent), #b93f00);
  border-color:rgba(227,91,10,.55);
  box-shadow:0 18px 50px rgba(227,91,10,.26);
}
.btn--primary:hover{border-color:rgba(255,255,255,.22)}
.btn--ghost{
  background:rgba(255,255,255,.03);
}
.btn--sm{padding:10px 12px; border-radius:12px; font-size:13px}

.burger{
  margin-left:6px;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  display:none;
  align-items:center; justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.burger span{width:18px; height:2px; background:rgba(255,255,255,.82); border-radius:2px}
.mobileMenu{
  border-top:1px solid var(--stroke);
  background:rgba(10,10,11,.65);
}
.mobileMenu__inner{
  display:flex; flex-direction:column; gap:10px;
  padding:18px 0 22px;
}
.mobileMenu__link{
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--stroke);
  color:var(--text);
  font-weight:700;
}
.mobileMenu__btn{width:100%}

.hero{position:relative; padding:58px 0 24px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:center;
}
.hero__bg{display:none}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--stroke);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.dot{width:8px; height:8px; border-radius:99px; background:var(--accent); box-shadow:0 0 0 5px rgba(227,91,10,.18)}

.h1{margin:14px 0 10px; font-size: clamp(30px, 4vw, 50px); line-height:1.06; letter-spacing:-.02em}
.h2{margin:0; font-size: clamp(24px, 3vw, 34px); letter-spacing:-.02em}
.h3{margin:0 0 8px; font-size:18px; letter-spacing:-.01em}
.accent{color:var(--accent2)}
.lead{margin:0; color:var(--muted); font-size:16px; line-height:1.6; max-width:52ch}
.hero__actions{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}

.stats{margin-top:20px; display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
.stat{padding:14px; border-radius:16px; background:rgba(255,255,255,.03); border:1px solid var(--stroke)}
.stat__num{font-weight:800; font-size:22px}
.stat__label{color:var(--muted2); font-weight:700; font-size:12px; margin-top:4px}

.hero__visual{display:flex; justify-content:flex-end}
.heroCard{
  width:min(420px, 100%);
  border-radius:var(--radius2);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.heroCard__top{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 18px;
  border-bottom:1px solid var(--stroke);
}
.heroCard__title{font-weight:900; letter-spacing:.08em}
.heroCard__badge{
  font-weight:800;
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(227,91,10,.16);
  border:1px solid rgba(227,91,10,.35);
  color:#ffd9c2;
}
.heroCard__art{padding:18px}
.svgStroke{stroke:rgba(255,255,255,.70); stroke-width:10; stroke-linecap:round; stroke-linejoin:round}
.svgFill{fill:rgba(227,91,10,.85)}
.heroCard__bottom{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  border-top:1px solid var(--stroke);
  color:var(--muted);
}
.heroCard__hint{font-size:13px; line-height:1.5; max-width:34ch}

.section{padding:54px 0}
.section--thin{padding:34px 0 44px}
.section--dark{
  background: rgba(255,255,255,.02);
  border-top:1px solid var(--stroke);
  border-bottom:1px solid var(--stroke);
}
.sectionHead{margin-bottom:18px}
.sectionHead--split{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
}
.muted{color:var(--muted)}
.small{font-size:12px; color:var(--muted2)}
.grid3{display:grid; grid-template-columns:repeat(3,1fr); gap:12px}
.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:12px}

.card{
  border-radius:var(--radius);
  background:rgba(255,255,255,.03);
  border:1px solid var(--stroke);
  padding:18px 18px 16px;
  box-shadow:0 10px 40px rgba(0,0,0,.22);
}
.card__icon{
  width:42px; height:42px;
  border-radius:14px;
  display:grid; place-items:center;
  background:rgba(227,91,10,.16);
  border:1px solid rgba(227,91,10,.35);
  margin-bottom:12px;
}

.panel{
  border-radius:var(--radius2);
  background:rgba(255,255,255,.03);
  border:1px solid var(--stroke);
  padding:20px;
}
.panel--accent{
  background:linear-gradient(135deg, rgba(227,91,10,.20), rgba(255,255,255,.03));
  border-color:rgba(227,91,10,.30);
}
.list{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.7}
.list li{margin:6px 0}

.catalogTools{display:flex; gap:12px; align-items:center}
.search{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
}
.search input{
  border:0; outline:none;
  background:transparent;
  color:var(--text);
  font:inherit;
  width:min(380px, 56vw);
}
.search input::placeholder{color:rgba(255,255,255,.45)}
.iconBtn{
  width:34px; height:34px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.78);
  cursor:pointer;
}

.tabs{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0}
.tab{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.78);
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
}
.tab.is-active{
  background:rgba(227,91,10,.18);
  border-color:rgba(227,91,10,.40);
  color:#ffd9c2;
}

.catalogGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px;
}
.item{
  border-radius:var(--radius2);
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  padding:16px;
  display:flex; flex-direction:column; gap:10px;
  box-shadow:0 14px 46px rgba(0,0,0,.28);
  min-height:164px;
}
.item__top{display:flex; align-items:flex-start; justify-content:space-between; gap:12px}
.item__model{font-weight:900; font-size:18px; letter-spacing:-.01em}
.item__cat{font-size:12px; color:var(--muted2); font-weight:800}
.item__meta{display:flex; flex-wrap:wrap; gap:8px}
.chip{
  font-size:12px;
  font-weight:800;
  color:rgba(255,255,255,.86);
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
}
.chip--accent{
  border-color:rgba(227,91,10,.38);
  background:rgba(227,91,10,.14);
  color:#ffd9c2;
}
.item__bottom{display:flex; align-items:center; justify-content:space-between; gap:10px; margin-top:auto}
.link{color:#ffd9c2; font-weight:900}
.link:hover{text-decoration:underline}
.catalogFooter{margin-top:14px; display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}

.contactCard{
  border-radius:var(--radius2);
  background:linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--stroke);
  padding:22px;
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  box-shadow:var(--shadow);
}
.contactCard__actions{display:flex; gap:10px; flex-wrap:wrap}

.footer{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid var(--stroke);
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.footer__links{display:flex; gap:14px}


.item__img{
  width:100%;
  height:120px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.02);
  background-size:cover;
  background-position:center;
  overflow:hidden;
  position:relative;
}
.item__img::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(20,20,20,.0) 0%, rgba(20,20,20,.55) 100%);
}
.item__img img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
}
.modal__media{
  margin:0 20px 10px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.02);
}
.modal__media img{
  width:100%;
  height:min(320px, 36vh);
  object-fit:cover;
  display:block;
}

/* Modal */
.modal{
  position:fixed; inset:0;
  display:none;
  z-index:80;
}
.modal.is-open{display:block}
.modal__backdrop{
  position:absolute; inset:0;
  background:rgba(0,0,0,.64);
  backdrop-filter: blur(6px);
}
.modal__dialog{
  position:relative;
  width:min(720px, 92vw);
  margin: 7vh auto;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border:1px solid var(--stroke);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.modal__dialog--lead{width:min(760px, 92vw)}
.modal__close{
  position:absolute; right:14px; top:14px;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.86);
  cursor:pointer;
}
.modal__head{
  padding:20px 20px 12px;
  border-bottom:1px solid var(--stroke);
}
.modal__kicker{font-weight:900; letter-spacing:.06em; color:#ffd9c2; font-size:12px}
.modal__title{margin:8px 0 6px; font-size:22px}
.modal__sub{margin:0; color:var(--muted); line-height:1.6}
.modal__body{padding:16px 20px 20px}
.kv{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-bottom:14px;
}
.kv__item{
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:12px;
}
.kv__key{font-size:12px; color:var(--muted2); font-weight:900}
.kv__val{margin-top:6px; font-weight:800; line-height:1.4}
.modal__actions{display:flex; gap:10px; flex-wrap:wrap}
.note{
  margin-top:14px;
  padding:14px;
  border-radius:18px;
  border:1px dashed rgba(227,91,10,.45);
  background:rgba(227,91,10,.10);
  color:rgba(255,255,255,.86);
  line-height:1.55;
}

/* Form */
.form{padding:0 0 6px}
.form__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  padding:16px 20px 0;
}
.field{display:flex; flex-direction:column; gap:8px; font-weight:800; font-size:13px}
.field span{color:var(--muted)}
.field input, .field select, .field textarea{
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--text);
  padding:12px 12px;
  font:inherit;
  outline:none;
}
.field input::placeholder, .field textarea::placeholder{color:rgba(255,255,255,.45)}
.field--full{grid-column:1/-1}
.form__bottom{
  padding:14px 20px 16px;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:wrap;
  border-top:1px solid var(--stroke);
  margin-top:16px;
}
.formStatus{
  padding:0 20px 18px;
  color:rgba(255,255,255,.86);
  font-weight:800;
}

@media (max-width: 960px){
  .nav{display:none}
  .burger{display:flex}
  .header__cta{display:none}
  .hero__grid{grid-template-columns: 1fr; gap:18px}
  .hero__visual{justify-content:flex-start}
  .stats{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .catalogGrid{grid-template-columns:1fr}
  .kv{grid-template-columns:1fr}
  .form__grid{grid-template-columns:1fr}
}

/* Modal specs */
.specgrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
  margin-top:16px;
}
.spec{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius:14px;
  padding:12px;
}
.spec__k{font-size:12px;color:var(--muted);}
.spec__v{margin-top:4px;font-size:14px;font-weight:700;}
.modal__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
@media (max-width:560px){
  .specgrid{grid-template-columns:1fr;}
  .modal__actions .btn{flex:1;}
}


/* Map */
.mapBlock{margin-top:16px}
.mapBlock__head{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap; margin-bottom:10px}
.mapWrap{
  position:relative;
  border-radius:var(--radius2);
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.02);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.yamap{width:100%; height:360px; display:none}
.mapFallback{
  width:100%; height:360px;
  display:grid; place-items:center;
  padding:18px;
  background:
    radial-gradient(800px 380px at 35% 0%, rgba(227,91,10,.10), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}
.mapFallback__title{font-weight:900; font-size:18px; margin-bottom:6px}


/* Hero 3D (clean) */
.hero3d{
  position:relative;
  width:min(520px, 100%);
  height:420px;
  background: transparent;
}
.hero3d__canvas{position:absolute; inset:0; width:100%; height:100%}
@media (max-width: 960px){
  .hero3d{height:360px}
}


/* Ripples behind 3D model */
.hero3d{ position:relative; }
.hero3d__ripples{
  position:absolute;
  inset:-40px -40px -60px -40px;
  pointer-events:none;
  z-index:0;
  display:grid;
  place-items:center;
  opacity:.95;
  mix-blend-mode: screen;
}
.hero3d__ripples span{
  position:absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  border: 2px solid rgba(227,91,10,.35);
  box-shadow:
    0 0 0 1px rgba(227,91,10,.08),
    0 0 26px rgba(227,91,10,.10);
  transform: translateY(22px) scale(.25);
  opacity: 0;
  animation: ripple 4.2s ease-out infinite;
  filter: blur(.2px);
}
.hero3d__ripples span:nth-child(2){
  animation-delay: 1.4s;
  border-color: rgba(227,91,10,.28);
}
.hero3d__ripples span:nth-child(3){
  animation-delay: 2.8s;
  border-color: rgba(227,91,10,.22);
}

@keyframes ripple{
  0%{ opacity:0; transform: translateY(22px) scale(.25); }
  8%{ opacity:.85; }
  70%{ opacity:.10; }
  100%{ opacity:0; transform: translateY(22px) scale(2.6); }
}

/* Ensure canvas is above ripples */
.hero3d__canvas{ position:absolute; inset:0; width:100%; height:100%; z-index:1; }
/* One big stretched Develon bracket for whole page */
.bgBrackets{
  position: fixed;
  top: -10vh;
  bottom: -10vh;
  left: 6%;
  width: 280px;

  pointer-events: none;
  opacity: .45;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 800'%3E%3Cpath d='M160 40 H80 L40 110 V690 L80 760 H160' fill='none' stroke='rgba(255,255,255,0.18)' stroke-width='8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  mix-blend-mode: overlay;
}

@media (max-width: 860px){
  .bgBrackets{
    left: 3%;
    width: 200px;
    opacity: .35;
  }
}
.header__phone{
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  transition: .2s ease;
  margin-right: 10px;
}
.header__phone:hover{
  border-color: rgba(227,91,10,.45);
  box-shadow: 0 0 0 4px rgba(227,91,10,.12);
}
.header__phone--mobile{
  display:inline-flex;
  justify-content:center;
  width:100%;
  margin: 10px 0 0;
}
.seoText{
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  background: rgba(255,255,255,.03);
}
.seoText .h2{ margin: 0 0 10px; }
.seoText__content p{ margin: 10px 0; }
