:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:#666666;
  --line:#e8e8e8;
  --soft:#f6f6f6;
  --accent:#111111;
  --radius:24px;
  --shadow:0 16px 40px rgba(0,0,0,.08);
  --max:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(var(--max), calc(100% - 32px)); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(14px);
  background:rgba(255,255,255,.9);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0;
  gap:16px;
}
.brand{
font-size: 30px;
color: rgb(0, 38, 255);
  display:flex; flex-direction:column; gap:2px;
  font-weight:800; letter-spacing:.08em; text-transform:uppercase;

}
.brand brand2{
    color: red;
    display:flex; flex-direction:column; gap:2px;
}
.brand small{font-weight:500; color:var(--muted); letter-spacing:.03em; text-transform:none}
.menu{display:flex; gap:22px; flex-wrap:wrap; align-items:center}
.menu a{color:var(--muted); font-size:14px}
.menu a:hover{color:var(--text)}

.cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 20px;
  background:var(--accent);
  color:#fff;
  border-radius:999px;
  font-weight:700;
  border:1px solid var(--accent);
  transition:.2s ease;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}
.cta:hover{transform:translateY(-1px); opacity:.95}

.hero{padding:72px 0 36px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
  align-items:stretch;
}
.hero-card{
  border:1px solid var(--line);
  border-radius:calc(var(--radius) + 8px);
  overflow:hidden;
  background:linear-gradient(180deg, #fff, #fafafa);
  box-shadow:var(--shadow);
}
.hero-main{
  padding:40px;
  min-height:520px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  background:
    radial-gradient(circle at top right, rgba(0,0,0,.06), transparent 35%),
    linear-gradient(180deg, #fff, #f8f8f8);
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  width:max-content;
  color:var(--muted);
  font-size:13px;
}
h1{
  margin:22px 0 14px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .95;
  letter-spacing:-.04em;
  max-width:10ch;
}
.lead{
  font-size:18px;
  color:var(--muted);
  max-width:58ch;
  margin:0 0 24px;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.ghost{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 20px;
  border:1px solid var(--line);
  border-radius:999px;
  font-weight:700;
  background:#fff;
}

.hero-side{display:grid; gap:16px}
.poster{
  min-height:250px;
  background:linear-gradient(135deg, #111 0%, #444 50%, #ddd 100%);
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:24px;
  color:#fff;
}
.poster:after{
  content:"";
  position:absolute; inset:16px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:20px;
}
.poster h3{margin:0 0 6px;font-size:28px}
.poster p{margin:0;color:rgba(255,255,255,.8)}

.info{
  padding:24px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
}
.info h4{margin:0 0 10px;font-size:18px}
.info p{margin:0;color:var(--muted)}

section{padding:24px 0}
.section-head{
  display:flex; justify-content:space-between; align-items:end; gap:16px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing:-.03em;
}
.section-head p{margin:0;color:var(--muted);max-width:55ch}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:16px;
}
.card{
  padding:22px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:22px;
  min-height:180px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}
.card .icon{
  width:46px;height:46px;border-radius:14px;
  border:1px solid var(--line);
  display:grid;place-items:center;
  margin-bottom:14px;
  font-size:20px;
  background:var(--soft);
}
.card h3{margin:0 0 8px;font-size:18px}
.card p{margin:0;color:var(--muted)}

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.price{
  padding:26px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
}
.price strong{display:block;font-size:28px;margin:10px 0}
.price span{color:var(--muted)}
.price ul{margin:18px 0 0; padding:0; list-style:none; color:var(--muted)}
.price li{padding:10px 0; border-top:1px solid var(--line)}

.reviews{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:16px;
}
.review{
  padding:24px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
}
.review .meta{display:flex; justify-content:space-between; gap:12px; margin-bottom:10px}
.review .name{font-weight:700}
.review .date{color:var(--muted); font-size:14px}
.review p{margin:0;color:#2b2b2b}

.contacts{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.contact-box{
  padding:28px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
}
.contact-line{display:flex; justify-content:space-between; gap:12px; padding:12px 0; border-top:1px solid var(--line)}
.contact-line:first-of-type{border-top:none;padding-top:0}
.muted{color:var(--muted)}

footer{
  padding:28px 0 44px;
  color:var(--muted);
  text-align:center;
}

.mobile-toggle{display:none}

@media (max-width: 980px){
  .hero-grid,.cards,.pricing,.reviews,.contacts{grid-template-columns:1fr}
  .hero-main{min-height:auto}
  .menu{display:none}
  .mobile-toggle{display:inline-flex}
}

@media (max-width: 640px){
  .hero{padding-top:36px}
  .hero-main{padding:24px}
  h1{max-width:none}
  .section-head{flex-direction:column; align-items:flex-start}
  .nav{padding:14px 0}
  .cta,.ghost{width:100%}
  .hero-actions{width:100%}
}

.card-wide{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:20px;
  align-items:stretch;
  padding:0;
  overflow:hidden;
}

.card-image{
  min-height:240px;
  background:#f2f2f2;
}
.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.card-content{
  padding:26px;
  display:flex;
  align-items:center;
}

.poster-image{
  position:relative;
  overflow:hidden;
  padding:0;
  background:#111;
}
.poster-img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:250px;
}
.poster-overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:22px;
  color:#fff;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.72));
}
.poster-overlay h3{margin:0 0 6px;font-size:28px}
.poster-overlay p{margin:0;color:rgba(255,255,255,.82)}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.gallery-item{
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  min-height:280px;
}
.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  min-height:280px;
}

@media (max-width: 980px){
  .card-wide{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
}

.about-banner{
  width:100%;
  border:1px solid var(--line);
  border-radius:28px;
  overflow:hidden;
  background:#f2f2f2;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.about-banner img{
  width:100%;
  height:min(520px, 60vw);
  object-fit:cover;
  display:block;
}

.about-text{
  width:100%;
  margin-top:18px;
  padding:26px 28px;
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.about-text p{
  margin:0;
  color:var(--muted);
  font-size:18px;
  max-width:none;
  line-height:1.7;
}