:root{
  --blue:#0F2C4C;
  --white:#FFFFFF;
  --gray:#DDE2E7;
  --text:#0B1220;
  --muted:#5A6677;
  --accent:#FFC300;
  --radius:16px;
  --shadow:0 10px 30px rgba(15,44,76,.10);
  --shadow2:0 8px 18px rgba(0,0,0,.08);
  --max:1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:#F6F8FB;
  line-height:1.35;
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }
.container{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:0 16px;
}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid rgba(221,226,231,.85);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
}
.brand{ display:flex; flex-direction:column; gap:2px; min-width:0; }
.brand__logo{
  font-weight:1000;
  color:var(--blue);
  letter-spacing:-.02em;
  font-size:16px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand__sub{
  font-size:12px;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.header__right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.phone{
  font-weight:900;
  color:var(--blue);
  letter-spacing:-.01em;
  white-space:nowrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:900;
  cursor:pointer;
  transition:transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }
.btn--primary{ background:var(--accent); color:#1C1C1C; box-shadow:var(--shadow2); }
.btn--secondary{ background:var(--blue); color:var(--white); box-shadow:var(--shadow2); }
.btn--outline{ background:transparent; color:var(--blue); border-color:rgba(15,44,76,.25); }
.btn--full{ width:100%; }

.section{ padding:16px 0; }
.card{
  background:var(--white);
  border:1px solid rgba(221,226,231,.9);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.card__inner{ padding:16px; }

.h1{
  margin:0 0 8px;
  font-size:26px;
  line-height:1.12;
  font-weight:1100;
  letter-spacing:-.03em;
  color:var(--blue);
}
.h2{
  margin:0 0 10px;
  font-size:18px;
  font-weight:950;
  letter-spacing:-.02em;
  color:var(--blue);
}
.lead{ margin:0 0 12px; color:var(--muted); font-size:14px; font-weight:650; }
.fineprint{ margin:10px 0 0; color:var(--muted); font-size:12px; font-weight:650; }

.hero__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  padding:12px;
}
.hero__media{
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(221,226,231,.9);
  background:#fff;
  min-height:200px;
}
.hero__media img{ width:100%; height:100%; object-fit:cover; }

.hero__content{ padding:4px 2px; }
.hero__h2{ color:#22324A; }

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0;
  padding:0;
  list-style:none;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding:10px 10px;
  background:#F2F6FB;
  border:1px solid rgba(221,226,231,.9);
  border-radius:14px;
  font-size:13px;
  color:#14233A;
  font-weight:800;
}

.hero__quick{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }

.form{
  display:grid;
  gap:10px;
  padding:14px;
  background:#FFFFFF;
  border:1px solid rgba(221,226,231,.9);
  border-radius:var(--radius);
  box-shadow:var(--shadow2);
}
.form__head{ display:grid; gap:4px; }
.form__title{ margin:0; font-weight:1100; font-size:16px; color:var(--blue); letter-spacing:-.02em; }
.form__subtitle{ margin:0; color:var(--muted); font-size:12.5px; font-weight:650; }
.form__note{ margin:0; color:var(--muted); font-size:12.5px; font-weight:650; }
.form__privacy{ margin:0; color:var(--muted); font-size:11.5px; font-weight:650; }
.form__contacts{ display:grid; gap:10px; margin-top:6px; }

.field{ display:grid; gap:6px; }
.field__label{ font-size:12px; color:var(--muted); font-weight:800; }
.input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(221,226,231,.95);
  outline:none;
  font-weight:900;
  letter-spacing:.01em;
}
.input:focus{
  border-color:rgba(15,44,76,.35);
  box-shadow:0 0 0 4px rgba(15,44,76,.10);
}

.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}
.item{
  background:#FFFFFF;
  border:1px solid rgba(221,226,231,.9);
  border-radius:var(--radius);
  padding:12px;
  box-shadow:var(--shadow2);
}
.item__title{
  margin:0 0 6px;
  font-weight:1100;
  color:var(--blue);
  letter-spacing:-.02em;
  font-size:15px;
}
.item__text{ margin:0; color:var(--muted); font-size:13px; font-weight:650; }

.price{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
.price__name{ margin:0; font-weight:950; color:#14233A; font-size:14px; }
.price__val{ margin:0; font-weight:1100; color:var(--blue); font-size:14px; white-space:nowrap; }

.ctaRow{ display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }

.masters{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:10px;
}
.master{
  margin:0;
  border:1px solid rgba(221,226,231,.9);
  border-radius:14px;
  overflow:hidden;
  background:#fff;
}
.master img{ width:100%; height:140px; object-fit:cover; }
.master figcaption{
  padding:8px 10px;
  font-size:12px;
  color:#22324A;
  font-weight:800;
}

.review__name{ margin:0 0 6px; font-weight:1100; color:var(--blue); }
.review__text{ margin:0; color:#22324A; font-weight:650; font-size:13px; }

.geo{ display:flex; flex-wrap:wrap; gap:8px; }
.geo__tag{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  background:#F2F6FB;
  border:1px solid rgba(221,226,231,.9);
  font-weight:900;
  color:#14233A;
  font-size:12px;
}

.final{ padding-bottom:22px; }
.final__btns{ display:grid; gap:10px; grid-template-columns:1fr; }

.footer{
  padding:18px 0 26px;
  color:var(--muted);
  font-size:12px;
}
.footer__inner{
  display:grid;
  gap:12px;
}
.footer__title{ font-weight:1100; color:var(--blue); margin-bottom:6px; }
.footer__line{ margin:4px 0; }
.footer a{ color:var(--blue); text-decoration:underline; }

@media (min-width: 920px){
  .hero__grid{
    grid-template-columns: 1fr 1.1fr .85fr;
    align-items:start;
  }
  .h1{ font-size:34px; }
  .final__btns{ grid-template-columns: 1fr 1fr 1fr; }
  .grid{ grid-template-columns: 1fr 1fr; }
  .footer__inner{ grid-template-columns: 1fr 1fr; align-items:start; }
}
