:root{
  --bg: #0b0c10;
  --panel: #10121a;
  --panel-2:#0f1320;
  --text:#e8eaf0;
  --muted:#a6adc2;
  --brand:#8b5cf6;
  --brand-2:#22c55e;
  --line: rgba(255,255,255,.10);
  --shadow: 0 18px 50px rgba(0,0,0,.40);
  --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(1200px 700px at 20% -10%, rgba(139,92,246,.25), transparent 55%),
              radial-gradient(900px 500px at 90% 10%, rgba(34,197,94,.18), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
.container{
  width:min(1100px, 92vw);
  margin-inline:auto;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,12,16,.55);
  border-bottom: 1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

nav a.active {
  opacity: 1;
  text-decoration: underline;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.2px;
}
.brand__mark{
  display:inline-grid;
  place-items:center;
  width:36px;height:36px;
  border-radius:12px;
  background: rgba(139,92,246,.18);
  border:1px solid rgba(139,92,246,.35);
}
.brand__text{ font-size: 16px; }
.brand--footer{ margin-bottom:10px; }

.nav__links{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav__links a{
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav__links a:hover{ color: var(--text); }
.nav__links a.active{ color: var(--text); }

.nav__toggle{
  display:none;
  width:42px; height:40px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding:10px;
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  height:2px;
  background: var(--text);
  margin:5px 0;
  border-radius:2px;
  opacity:.9;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139,92,246,.95), rgba(34,197,94,.75));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  font-weight:700;
}
.btn:hover{ transform: translateY(-1px); }
.btn--ghost{
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--small{ padding:10px 12px; border-radius: 12px; }

.hero{
  padding: 56px 0 18px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:start;
}
.badge{
  display:inline-block;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 10px;
}
h1{
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.06;
  margin: 0 0 12px;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 18px;
  max-width: 58ch;
}
.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom: 18px; }

.hero__stats{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.stat{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  min-width: 140px;
}
.stat__value{ font-weight:800; }
.stat__label{ color: var(--muted); font-size: 13px; }

.hero__card{ position:relative; }
.photo{
  height: 330px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}

.photo__img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 18px;
}

.photo__hint, .map__hint{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color: var(--muted);
  font-weight:600;
  font-size: 14px;
  padding: 18px;
  text-align:center;
}

.card{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.20);
}
.card--floating{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: -16px;
  background: rgba(16,18,26,.92);
}

.section{
  padding: 54px 0;
}
.section--alt{
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom: 18px;
}
.section__head p{ color: var(--muted); margin:0; }

h2{ margin: 0 0 10px; font-size: 26px; }
h3{ margin: 0 0 8px; }
h4{ margin: 0 0 8px; color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing:.12em; }

.grid{
  display:grid;
  gap: 16px;
}
.grid--2{ grid-template-columns: repeat(2, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.list, .price-list{
  list-style:none;
  padding:0; margin: 10px 0 0;
}
.list li, .price-list li{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.list li:last-child, .price-list li:last-child{ border-bottom:0; }

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.bullets strong{ color: var(--text); }

.cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 10px 0;
}

.footer{
  padding: 30px 0 18px;
}
.footer__grid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  padding-bottom: 18px;
}
.footer__cols{
  display:flex;
  gap: 40px;
}
.footer__cols a{
  display:block;
  color: var(--muted);
  padding: 4px 0;
}
.footer__cols a:hover{ color: var(--text); }
.footer__bottom{
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.page-hero{
  padding: 44px 0 10px;
}
.muted{ color: var(--muted); }
.mt{ margin-top: 16px; }

.form{
  display:grid;
  gap: 12px;
}
label{
  display:grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(139,92,246,.55);
  box-shadow: 0 0 0 4px rgba(139,92,246,.15);
}

.contact-cards{
  display:grid;
  gap: 10px;
}
.mini{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.mini__title{ color: var(--muted); font-weight:700; }
.mini__value{ font-weight:700; }

.map{
  height: 220px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  position:relative;
  overflow:hidden;
}

.link{
  display:inline-block;
  margin-top: 10px;
  color: rgba(139,92,246,.95);
  font-weight: 700;
}
.link:hover{ text-decoration: underline; }

/* Responsive */
@media (max-width: 900px){
  .hero__grid{ grid-template-columns: 1fr; }
  .card--floating{ position:static; margin-top: 12px; }
  .photo{ height: 260px; }
}
@media (max-width: 760px){
  .grid--2{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }

  .nav__toggle{ display:inline-block; }
  .nav__links{
    position:absolute;
    right: 4vw;
    top: 64px;
    width: min(360px, 92vw);
    padding: 12px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(16,18,26,.96);
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 8px;
  }
  .nav__links.open{ display:flex; }
  .nav__links a{ padding: 10px 10px; border-radius: 12px; }
  .nav__links a:hover{ background: rgba(255,255,255,.04); }
  .footer__grid{ flex-direction:column; }
  .footer__cols{ gap: 18px; }
}
