footer .brand img{
  width:38px;
  height:38px;
}

footer .brand-text h1{
  font-size:15px;
}

footer .brand-text p{
  font-size:9px;
  letter-spacing:.18em;
}

:root{
  --bg:#050913;
  --bg-2:#0b1322;
  --bg-3:#101a2d;
  --line:rgba(255,255,255,.10);
  --text:#f7fbff;
  --muted:#b8c8da;
  --blue:#17d7ff;
  --blue-deep:#0097c7;
  --orange:#ff8f2f;
  --orange-deep:#ff5f00;
  --shadow:0 24px 60px rgba(0,0,0,.35);
  --max:1400px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Poppins',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(23,215,255,.16), transparent 22%),
    radial-gradient(circle at 100% 20%, rgba(255,143,47,.14), transparent 18%),
    linear-gradient(180deg,var(--bg),var(--bg-2) 52%,var(--bg-3));
  overflow-x:hidden;
}
body::before,
body::after{
  content:"";
  position:fixed;
  border-radius:50%;
  filter:blur(90px);
  z-index:-2;
  pointer-events:none;
  opacity:.4;
}
body::before{
  width:260px;
  height:260px;
  background:rgba(23,215,255,.14);
  top:70px;
  left:-90px;
}
body::after{
  width:320px;
  height:320px;
  background:rgba(255,143,47,.12);
  right:-100px;
  top:220px;
}

a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button,input,select,textarea{font:inherit}

.page-shell{
  display:flex;
  min-height:100vh;
}

.sidebar{
  width:260px;
  flex-shrink:0;
  position:sticky;
  top:0;
  height:100vh;
  padding:20px 16px;
  background:rgba(5,10,18,.78);
  backdrop-filter:blur(18px);
  border-right:1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  z-index:1200;
}

.sidebar-top{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.sidebar-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.sidebar-brand img{
  width:54px;
  height:54px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(255,255,255,.14);
  box-shadow:0 0 0 6px rgba(255,255,255,.04),0 12px 28px rgba(0,0,0,.28);
}

.sidebar-brand-text h1{
  font-size:18px;
  font-weight:900;
  line-height:1;
  background:linear-gradient(90deg,var(--orange),var(--blue));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.sidebar-brand-text p{
  margin-top:5px;
  font-size:10px;
  letter-spacing:.22em;
  color:var(--muted);
  text-transform:uppercase;
  font-weight:700;
}

.sidebar-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.sidebar-nav a{
  padding:12px 14px;
  border-radius:16px;
  font-size:14px;
  font-weight:700;
  color:#edf5ff;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.06);
  transition:.25s ease;
}

.sidebar-nav a:hover,
.sidebar-nav a.active{
  background:linear-gradient(90deg,rgba(255,143,47,.16),rgba(23,215,255,.12));
  border-color:rgba(255,255,255,.12);
  transform:translateX(4px);
}

.sidebar-info{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.sidebar-box{
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
}

.sidebar-box h4{
  font-size:13px;
  font-weight:800;
  color:#fff;
}

.sidebar-box p{
  margin-top:6px;
  font-size:12px;
  line-height:1.7;
  color:#c6d4e2;
}

.main-wrap{
  flex:1;
  min-width:0;
}

.mobile-topbar,
.mobile-nav{
  display:none;
}

.main-content{
  padding:18px 18px 40px;
}

.container{
  width:min(var(--max),100%);
  margin:auto;
}

.hero{
  padding:0 0 14px;
}
.hero-card{
  overflow:hidden;
  border-radius:34px;
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}
.hero-video-wrap{
  position:relative;
  aspect-ratio:4/3;
  background:#000;
  overflow:hidden;
}
.hero-video-wrap video{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  animation:heroZoom 14s ease-in-out infinite alternate;
  filter:contrast(1.04) saturate(1.05);
}
.hero-video-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center, rgba(23,215,255,.08), transparent 36%),
    linear-gradient(to top, rgba(5,10,18,.86), rgba(5,10,18,.12));
  z-index:1;
}
.hero-overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:20px;
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-size:11px;
  font-weight:800;
  letter-spacing:.03em;
  backdrop-filter:blur(12px);
}
.hero-overlay h2{
  margin-top:14px;
  font-size:34px;
  line-height:1.02;
  font-weight:900;
  color:#fff;
  text-shadow:0 12px 32px rgba(0,0,0,.35);
}
.hero-overlay h2 span{
  display:block;
  margin-top:4px;
  background:linear-gradient(90deg,var(--orange),var(--blue));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
.hero-overlay p{
  margin-top:12px;
  max-width:760px;
  color:#dfeefe;
  font-size:14px;
  line-height:1.85;
}
.hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 20px;
  border:none;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease;
}
.btn:hover{
  transform:translateY(-2px) scale(1.02);
}
.btn-primary{
  color:#fff;
  background:linear-gradient(90deg,var(--orange),var(--blue));
  box-shadow:0 16px 30px rgba(23,215,255,.20);
}
.btn-secondary{
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(12px);
}

.section{
  padding:38px 0;
}
.section-head{
  margin-bottom:18px;
}
.section-head .mini{
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:11px;
  font-weight:900;
}
.section-head h3{
  margin-top:8px;
  font-size:28px;
  line-height:1.08;
  font-weight:900;
  color:#f7fbff;
}
.section-head p{
  margin-top:10px;
  max-width:760px;
  color:var(--muted);
  font-size:14px;
  line-height:1.9;
}

.stats-grid,
.cards,
.review-grid,
.info-grid,
.footer-contacts{
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  align-items:stretch;
}

.stat-box,
.card,
.review-card,
.info-box,
.address-box{
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.10);
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}

.stat-box,
.review-card,
.info-box,
.address-box{
  padding:20px;
}

.stat-box h4{
  font-size:28px;
  font-weight:900;
  color:#fff;
}
.stat-box p,
.review-card p,
.info-box p,
.address-box p{
  margin-top:8px;
  font-size:14px;
  line-height:1.85;
  color:#c8d4e1;
}
.review-card h4,
.info-box h4,
.address-box h4{
  font-size:18px;
  font-weight:900;
  color:#fff;
}

.card{
  display:flex;
  flex-direction:column;
  height:100%;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card:hover{
  transform:translateY(-8px);
  box-shadow:0 28px 60px rgba(0,0,0,.32);
  border-color:rgba(23,215,255,.22);
}
.card-media{
  aspect-ratio:4/3;
  min-height:200px;
  background:linear-gradient(180deg,#05070b,#131a24);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  position:relative;
  flex-shrink:0;
}
.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .45s ease;
}
.card:hover .card-media img{
  transform:scale(1.04);
}
.card-body{
  padding:20px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 13px;
  border-radius:999px;
  background:rgba(23,215,255,.12);
  border:1px solid rgba(23,215,255,.16);
  color:#9aefff;
  font-size:11px;
  font-weight:800;
  align-self:flex-start;
}
.card h4{
  margin-top:12px;
  font-size:22px;
  line-height:1.08;
  font-weight:900;
  color:#f7fbff;
  min-height:48px;
}
.price{
  margin-top:8px;
  font-size:26px;
  font-weight:900;
  color:var(--orange);
}
.meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
  min-height:34px;
}
.meta span{
  font-size:12px;
  color:#d0dceb;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.06);
}
.card p{
  margin-top:12px;
  color:#c3d0df;
  line-height:1.82;
  font-size:14px;
  flex:1;
}
.card-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
  margin-top:auto;
}

.form-box{
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.10);
  border-radius:30px;
  padding:24px;
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
}
.form-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:18px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.field label{
  font-size:13px;
  font-weight:800;
  color:#f2f7fc;
}
.field input,
.field select,
.field textarea{
  width:100%;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.08);
  color:#fff;
  outline:none;
}
.field textarea{
  min-height:120px;
  resize:vertical;
}
.field input::placeholder,
.field textarea::placeholder{
  color:#b8c7d7;
}
.summary{
  margin-top:18px;
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  border:1px solid rgba(255,255,255,.08);
}
.summary p{
  color:#c5d2df;
  font-size:14px;
}
.summary h3{
  font-size:32px;
  font-weight:900;
  color:var(--orange);
}

footer{
  margin-top:28px;
  padding:22px 0 90px;
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(5,10,18,.28);
}
.footer-row{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:flex-start;
}
.footer-row p{
  color:#c3cfdb;
  font-size:13px;
  line-height:1.85;
}

.float-buttons{
  position:fixed;
  right:14px;
  bottom:14px;
  z-index:1200;
  display:grid;
  gap:10px;
}
.float-btn{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:24px;
  color:#fff;
  box-shadow:0 16px 26px rgba(0,0,0,.24);
}
.float-call{background:linear-gradient(180deg,var(--orange),var(--orange-deep))}
.float-wa{background:linear-gradient(180deg,var(--blue),var(--blue-deep))}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:.8s ease;
}
.reveal.show{
  opacity:1;
  transform:none;
}

@keyframes heroZoom{
  from{transform:scale(1.02)}
  to{transform:scale(1.08)}
}

html, body{
  max-width:100%;
  overflow-x:hidden;
}

.main-wrap,
.main-content,
.container,
.section,
.card,
.card-body,
.address-box,
.form-box{
  min-width:0;
}

img, video{
  max-width:100%;
  height:auto;
}

@media (max-width:900px){
  .page-shell{
    display:block;
  }

  .sidebar{
    display:none;
  }

  .mobile-topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:12px 14px;
    position:sticky;
    top:0;
    z-index:1300;
    background:rgba(5,10,18,.78);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  .mobile-brand{
    display:flex;
    align-items:center;
    gap:10px;
  }

  .mobile-brand img{
    width:42px;
    height:42px;
    border-radius:50%;
    object-fit:cover;
  }

  .mobile-brand h1{
    font-size:16px;
    font-weight:900;
    background:linear-gradient(90deg,var(--orange),var(--blue));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
  }

  .mobile-nav{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
    padding:10px 12px 0;
  }

  .mobile-nav a{
    text-align:center;
    padding:10px 8px;
    border-radius:14px;
    font-size:11px;
    line-height:1.2;
    font-weight:700;
    color:#edf5ff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
  }

  .main-content{
    padding:12px 12px 90px;
  }

  .hero-video-wrap{
    aspect-ratio:4/5;
  }

  .hero-overlay{
    padding:16px;
  }

  .hero-overlay h2{
    font-size:28px;
    line-height:1.08;
  }

  .hero-overlay p{
    font-size:13px;
    line-height:1.65;
    max-width:100%;
  }

  .hero-actions{
    gap:8px;
  }

  .hero-actions .btn{
    min-height:44px;
    padding:0 16px;
    font-size:13px;
  }

  .stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  .stat-box{
    padding:16px;
  }

  .stat-box h4{
    font-size:22px;
  }

  .section{
    padding:28px 0;
  }

  .section-head h3{
    font-size:22px;
    line-height:1.15;
  }

  .section-head p{
    font-size:13px;
    line-height:1.75;
  }

  .cards{
    grid-template-columns:1fr;
    gap:14px;
  }

  .card-media{
    min-height:170px;
  }

  .card h4{
    min-height:auto;
    font-size:20px;
  }

  .price{
    font-size:22px;
  }

  .meta{
    min-height:auto;
  }

  .card p{
    font-size:13px;
    line-height:1.75;
  }

  .float-buttons{
    right:12px;
    bottom:12px;
  }

  .float-btn{
    width:54px;
    height:54px;
    font-size:22px;
  }
}

@media (min-width:700px){
  .stats-grid,.cards,.review-grid,.info-grid,.footer-contacts{
    grid-template-columns:repeat(2,1fr);
  }
  .form-grid{
    grid-template-columns:1fr 1fr;
  }
  .full{
    grid-column:1/-1;
  }
}

@media (min-width:1200px){
  .cards{
    grid-template-columns:repeat(2,1fr);
  }
  .stats-grid{
    grid-template-columns:repeat(4,1fr);
  }
  .review-grid,.info-grid{
    grid-template-columns:repeat(3,1fr);
  }
}