:root{
  --orange:#ff6a00;
  --black:#0a0a0a;
  --text:#242424;
  --muted:#686868;
  --soft:#f6f6f6;
  --white:#ffffff;
  --line:#e8e8e8;
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--white);
  line-height:1.6;
}
a{color:inherit}
img{max-width:100%;display:block}

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

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(10px);
}
.header-inner{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand img{width:150px;height:auto}

.hero{padding:72px 0 84px}
.hero-inner{text-align:center;max-width:880px}
.hero-logo{width:min(560px, 86vw);margin:0 auto 34px}
h1,h2,h3{color:var(--black);margin-top:0;line-height:1.12}
h1{font-size:clamp(2.15rem, 5vw, 4.25rem);letter-spacing:-.035em;margin-bottom:20px}
h2{font-size:clamp(1.85rem, 3.5vw, 3rem);letter-spacing:-.025em;margin-bottom:18px}
h3{font-size:1.35rem;margin-bottom:10px}
.lead{max-width:700px;margin:0 auto;font-size:clamp(1.05rem, 2vw, 1.3rem);color:var(--muted)}
.actions{margin-top:34px;display:flex;justify-content:center;flex-wrap:wrap;gap:14px}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 24px;
  border-radius:999px;
  background:var(--orange);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  border:2px solid var(--orange);
  transition:.18s ease;
}
.button:hover{transform:translateY(-1px);opacity:.92}
.button-outline{background:#fff;color:var(--black);border-color:var(--black)}
.button-small{min-height:42px;padding:0 18px;font-size:.95rem}

.section{padding:82px 0}
.section-soft{background:var(--soft)}
.eyebrow{color:var(--orange);font-size:.82rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;margin:0 0 10px}
.services{margin-top:34px;display:grid;grid-template-columns:repeat(2, minmax(0,1fr));gap:18px}
.service-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:28px}
.service-card p{margin:0;color:var(--muted)}

.contact{text-align:center;border-top:1px solid var(--line)}
.contact p{font-size:1.05rem}
.actions-center{justify-content:center}
.phone{margin-top:22px;font-size:1.2rem !important;font-weight:700}
.phone a{text-decoration:none}

footer{border-top:1px solid var(--line);padding:28px 0}
.footer-inner{display:flex;flex-wrap:wrap;justify-content:space-between;gap:12px 24px;color:var(--muted);font-size:.92rem}
.footer-inner strong{color:var(--black)}

@media (max-width:700px){
  .wrap{width:min(100% - 28px, 1120px)}
  .header-inner{min-height:66px}
  .brand img{width:118px}
  .button-small{padding:0 14px;font-size:.86rem}
  .hero{padding:52px 0 64px}
  .hero-logo{width:min(440px, 94vw);margin-bottom:28px}
  .section{padding:64px 0}
  .services{grid-template-columns:1fr}
  .service-card{padding:24px}
  .actions{flex-direction:column}
  .actions .button{width:100%}
  .footer-inner{flex-direction:column;text-align:center}
}
