html{scroll-behavior:smooth}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#ffffff;
  color:#111111;
  line-height:1.5;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}
.header{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid #ececec;
  z-index:20;
}
.nav{
  min-height:72px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.logo{
  background:#111111;
  color:#ffffff;
  padding:11px 16px;
  border-radius:999px;
  font-weight:700;
}
.phone-top{font-weight:700}
.hero{
  padding:48px 0 28px;
  background:linear-gradient(180deg,#ffffff 0%,#fafafa 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:36px;
  align-items:center;
}
.tag{
  display:inline-block;
  background:#fff2bf;
  color:#111111;
  padding:8px 14px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  margin-bottom:14px;
}
.dark-tag{background:rgba(255,255,255,.18);color:#ffffff}
h1{
  margin:0 0 14px;
  font-size:clamp(36px, 6vw, 66px);
  line-height:1.02;
}
h2{
  margin:0 0 12px;
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.06;
}
h3{margin:0;font-size:22px}
.lead,.muted{color:#5e5e5e;font-size:18px}
.badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:22px 0;
}
.badges span{
  background:#ffffff;
  border:1px solid #ececec;
  border-radius:999px;
  padding:10px 16px;
  font-weight:700;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}
.buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:8px 0 24px;
}
.btn{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:14px;
  font-weight:700;
}
.primary{
  background:#f2c230;
  color:#111111;
  box-shadow:0 12px 24px rgba(242,194,48,.28);
}
.secondary{
  background:#111111;
  color:#ffffff;
}
.contact-box{
  display:inline-block;
  background:#ffffff;
  border:1px solid #ececec;
  border-radius:22px;
  padding:18px 22px;
  box-shadow:0 12px 28px rgba(0,0,0,.06);
}
.small{font-size:14px;color:#666666}
.big-phone{
  display:inline-block;
  margin-top:4px;
  font-size:clamp(24px, 3vw, 34px);
  font-weight:800;
}
.image-card{
  background:#ffffff;
  border:1px solid #ececec;
  border-radius:28px;
  padding:16px;
  box-shadow:0 18px 46px rgba(0,0,0,.08);
}
.image-card img{
  width:100%;
  height:auto;
  object-fit:contain;
  border-radius:18px;
}
.section{padding:76px 0}
.alt{background:#fafafa}
.section-title{
  max-width:760px;
  margin:0 auto 34px;
  text-align:center;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.card{
  background:#ffffff;
  border:1px solid #ececec;
  border-radius:24px;
  padding:26px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}
.num{
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f2c230;
  color:#111111;
  font-weight:800;
  margin-bottom:16px;
}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}
.list{
  padding-left:20px;
  margin:16px 0 0;
}
.list li{margin-bottom:8px;font-weight:700}
.cta{
  background:#111111;
  color:#ffffff;
  padding:32px;
  border-radius:28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}
.cta p{color:rgba(255,255,255,.82);margin:0}
.cta-right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
}
.cta-phone{
  font-size:clamp(28px, 4vw, 40px);
  font-weight:800;
}
.footer{
  border-top:1px solid #ececec;
  background:#ffffff;
}
.footer-wrap{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.footer p{margin:6px 0 0;color:#666666}
@media (max-width:920px){
  .hero-grid,.two-col,.cards{grid-template-columns:1fr}
  .cta,.footer-wrap{flex-direction:column;align-items:flex-start}
  .cta-right{align-items:flex-start}
}
@media (max-width:640px){
  .container{width:min(1120px, calc(100% - 22px))}
  .hero{padding-top:26px}
  .card,.cta{padding:22px}
}
