:root{
  --bg:#0b0f17;
  --panel:#0f1624;
  --panel2:#0b1220;
  --text:#eaf0ff;
  --muted:#a9b4d0;
  --line:rgba(255,255,255,.10);
  --accent:#ff6a00;
  --accent2:#ffb000;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(255,106,0,.20), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(255,176,0,.14), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
  font-size:16px;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
code{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:700;
  letter-spacing:.1px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16)}
.btn:active{transform: translateY(0)}
.btn--primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: rgba(255,255,255,.12);
  color:#1b0b00;
}
.btn--primary:hover{background: linear-gradient(135deg, #ff7a1a, #ffc241)}
.btn--ghost{background: rgba(255,255,255,.03)}
.btn--full{width:100%}

.header{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(11,15,23,.55);
  border-bottom:1px solid var(--line);
}
.header__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 260px;
}
.brand__mark{
  width:36px; height:36px;
  display:grid; place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(255,106,0,.90), rgba(255,176,0,.90));
  color:#1b0b00;
  font-weight:900;
}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__title{font-weight:800; font-size:14px}
.brand__sub{font-weight:600; font-size:12px; color:var(--muted)}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}
.nav__link{
  color:var(--muted);
  font-weight:700;
  font-size:13px;
  padding:10px 10px;
  border-radius:12px;
}
.nav__link:hover{color:var(--text); background: rgba(255,255,255,.04)}

.header__cta{
  display:flex;
  align-items:center;
  gap:10px;
}
.phone{
  font-weight:800;
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
}
.phone:hover{border-color: var(--line); background: rgba(255,255,255,.03)}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:10px;
  cursor:pointer;
}
.burger__line{
  display:block;
  height:2px;
  background: rgba(255,255,255,.85);
  border-radius:99px;
}
.burger__line + .burger__line{margin-top:6px}

.mobile{
  border-top:1px solid var(--line);
  background: rgba(11,15,23,.75);
}
.mobile__panel{padding:14px 0 18px}
.mobile__link{
  display:block;
  padding:12px 0;
  color:var(--muted);
  font-weight:800;
}
.mobile__link:hover{color:var(--text)}
.mobile__actions{display:flex; gap:10px; padding-top:10px; flex-wrap:wrap}

.hero{padding:36px 0 18px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:stretch;
}
.pill{
  display:inline-flex;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:800;
  font-size:12px;
}
.hero__title{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.6px;
}
.hero__lead{
  margin:0;
  color: rgba(234,240,255,.85);
  font-weight:600;
  font-size:17px;
  max-width: 58ch;
}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero__bullets{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:18px;
}
.stat{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:12px 12px;
}
.stat__kpi{font-weight:900; font-size:14px}
.stat__label{color:var(--muted); font-weight:700; font-size:12px; margin-top:4px}

.hero__media{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
}
.hero__img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height: 420px;
  transform: scale(1.02);
  filter: contrast(1.05) saturate(1.05);
}
.hero__media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,15,23,.10), rgba(11,15,23,.62));
}
.hero__card{
  position:absolute;
  left:14px; right:14px; bottom:14px;
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(15,22,36,.72);
  padding:14px 14px;
  backdrop-filter: blur(8px);
  z-index:2;
}
.hero__cardTitle{font-weight:900; letter-spacing:.2px}
.hero__cardText{color:var(--muted); font-weight:700; margin-top:4px}
.hero__cardLink{
  display:inline-block;
  margin-top:10px;
  font-weight:900;
  color: rgba(255,200,150,.95);
}
.hero__cardLink:hover{color: #ffd3b0}

.section{padding:44px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.05);
  border-bottom:1px solid rgba(255,255,255,.05);
}
.section--cta{padding:54px 0}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.section__title{
  margin:0;
  font-size:28px;
  letter-spacing:-.3px;
}
.section__desc{
  margin:0;
  color:var(--muted);
  font-weight:650;
  max-width: 62ch;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px 16px;
}
.card__title{margin:0 0 10px; font-size:16px; font-weight:900}
.list{
  margin:0;
  padding-left:18px;
  color: rgba(234,240,255,.88);
  font-weight:650;
}
.list li{margin:6px 0}

.prices{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  padding:10px 14px 14px;
}
.prices__row{
  display:grid;
  grid-template-columns: 1fr 1fr auto;
  gap:12px;
  align-items:center;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.prices__row:last-of-type{border-bottom:none}
.prices__name{font-weight:800}
.prices__value{font-weight:950; color: rgba(255,210,170,.95)}
.prices__dots{
  height:1px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 6px, transparent 6px 12px);
  opacity:.55;
  transform: translateY(1px);
}
.prices__note{
  margin-top:12px;
  color:var(--muted);
  font-weight:700;
}
.prices__note a{color: rgba(255,210,170,.95); font-weight:900}
.prices__note a:hover{color:#ffd3b0}

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.step{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:14px;
  display:flex;
  gap:12px;
}
.step__num{
  width:34px; height:34px;
  border-radius: 12px;
  display:grid; place-items:center;
  background: rgba(255,106,0,.12);
  border:1px solid rgba(255,106,0,.25);
  color: rgba(255,210,170,.95);
  font-weight:950;
}
.step__title{font-weight:950}
.step__text{color:var(--muted); font-weight:700; margin-top:4px}

.quote{
  margin:0;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px 16px 18px;
}
.quote__text{margin:0; font-weight:750; color: rgba(234,240,255,.90)}
.quote__who{margin-top:10px; color:var(--muted); font-weight:850}

.gallery{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:12px;
}
.gallery__img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius: 18px;
  border:1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .15s ease, border-color .15s ease;
}
.gallery__img:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.18)}

.cta{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:stretch;
}
.cta__left{
  border:1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,106,0,.08), rgba(255,255,255,.02));
  padding:18px 18px;
}
.cta__title{margin:0; font-size:28px; letter-spacing:-.3px}
.cta__text{margin:10px 0 0; color:var(--muted); font-weight:700}
.cta__items{display:grid; grid-template-columns: repeat(2, 1fr); gap:12px; margin-top:14px}
.cta__item{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.12);
  border-radius: 18px;
  padding:12px 12px;
}
.cta__label{color:var(--muted); font-weight:850; font-size:12px}
.cta__value{display:inline-block; margin-top:6px; font-weight:950}
.cta__value:hover{color:#ffd3b0}
.cta__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

.cta__right{
  border:1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.03);
  padding:18px 18px;
}
.mapCard__title{font-weight:950; font-size:16px}
.mapCard__text{color:var(--muted); font-weight:700; margin-top:8px}
.mapCard__hint{margin-top:10px; color: rgba(234,240,255,.70); font-weight:700; font-size:12px}
.mapCard__hint code{
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.10);
  padding:3px 8px;
  border-radius: 999px;
}

.mapEmbed{
  position:relative;
  margin-top:12px;
  height: 360px;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
}
.mapEmbed__frame{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.footer{
  padding:20px 0 26px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.10);
}
.footer__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer__brand{font-weight:950}
.footer__meta{color:var(--muted); font-weight:750; margin-top:4px}
.footer__right{display:flex; gap:14px; flex-wrap:wrap}
.footer__link{color: rgba(234,240,255,.82); font-weight:850}
.footer__link:hover{color:#ffd3b0}

@media (max-width: 980px){
  .nav{display:none}
  .burger{display:block}
  .hero__grid{grid-template-columns: 1fr}
  .hero__title{font-size:38px}
  .hero__bullets{grid-template-columns: 1fr 1fr 1fr}
  .cta{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr 1fr}
  .gallery{grid-template-columns: 1fr 1fr}
  .gallery__img{height:240px}
}

@media (max-width: 640px){
  .container{width: min(1120px, calc(100% - 28px))}
  body{font-size:17px}
  .brand__sub{display:none}
  .phone{display:none}
  .hero{padding-top:22px}
  .hero__title{font-size:28px}
  .hero__lead{font-size:15px}
  .pill{font-size:11px; padding-inline:10px}
  .btn{width:100%; justify-content:center; padding-block:13px; font-size:15px}
  .hero__media{max-height:320px}
  .hero__img{
    min-height:260px;
    height:260px;
    transform: scale(1.0);
  }
  .hero__bullets{grid-template-columns: 1fr}
  .stat{padding:12px 14px}
  .section__head{flex-direction:column; align-items:flex-start}
  .grid3{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .cta__items{grid-template-columns: 1fr}
  .mapEmbed{height: 320px}
  .footer__row{flex-direction:column; align-items:flex-start}
}
