
:root{
  --bg:#f6f8fc;
  --white:#ffffff;
  --text:#15233a;
  --muted:#66768d;
  --line:#dbe3ef;
  --primary:#ff6b00;
  --primary-dark:#e05e00;
  --navy:#0f1b32;
  --soft:#eef3fa;
  --shadow:0 18px 40px rgba(15,27,50,.08);
  --radius:22px;
  --container:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,#fbfcff 0%,#f6f8fc 100%);
  color:var(--text);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(var(--container),calc(100% - 32px));margin:0 auto}
.topbar{
  background:var(--navy);
  color:#dbe4f2;
  font-size:.92rem;
}
.topbar-wrap{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.site-header{
  background:rgba(255,255,255,.9);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(12px);
}
.nav{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:12px;
}
.logo img{width:46px;height:46px}
.logo strong{display:block;font-size:1.05rem}
.logo small{display:block;color:var(--muted)}
.site-nav{
  display:flex;
  align-items:center;
  gap:24px;
  color:#344560;
}
.site-nav a:hover{color:var(--primary)}
.nav-toggle{
  display:none;
  border:0;
  background:none;
  width:42px;height:42px;padding:0;
}
.nav-toggle span{
  display:block;height:2px;background:var(--navy);margin:7px 0;border-radius:2px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:999px;
  background:var(--primary);
  color:#fff;
  font-weight:800;
  transition:.2s ease;
  box-shadow:0 12px 24px rgba(255,107,0,.18);
}
.btn:hover{background:var(--primary-dark);transform:translateY(-1px)}
.btn-secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn-sm{min-height:44px;padding:0 18px}
.hero{padding:72px 0 56px}
.hero-grid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:30px;
  align-items:center;
}
.eyebrow{
  display:inline-block;
  margin-bottom:16px;
  color:var(--primary);
  font-size:.88rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.hero h1{
  margin:0 0 18px;
  font-size:clamp(2.6rem,6vw,5rem);
  line-height:1.02;
  max-width:760px;
}
.lead{
  font-size:1.1rem;
  color:var(--muted);
  max-width:680px;
}
.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:28px 0 22px;
}
.hero-badges{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.hero-badges span{
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:10px 14px;
  color:#41506a;
  font-weight:600;
}
.card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-visual{padding:18px}
.hero-visual img{border-radius:18px}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:14px;
}
.hero-stats div{
  background:var(--soft);
  border-radius:18px;
  padding:16px;
}
.hero-stats strong{
  display:block;
  font-size:1.4rem;
}
.hero-stats span{
  color:var(--muted);
  font-size:.92rem;
}
.trust-strip{
  padding:18px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}
.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  text-align:center;
  color:#40506a;
  font-weight:700;
}
.section{padding:92px 0}
.alt{background:linear-gradient(180deg,#f1f5fb 0%,#eef3fa 100%)}
.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 40px;
}
.section-head h2{
  margin:0 0 12px;
  font-size:clamp(2rem,4vw,3.1rem);
  line-height:1.08;
}
.section-head p{margin:0;color:var(--muted)}
.cards.three{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.service-card img{
  aspect-ratio:16/10;
  object-fit:cover;
  border-bottom:1px solid var(--line);
  border-radius:22px 22px 0 0;
}
.service-card h3,.feature h3,.testimonial strong{margin:0 0 10px}
.service-card p,.feature p,.testimonial p{color:var(--muted)}
.service-card h3,.service-card p,.testimonial p,.testimonial strong{padding:0 24px}
.service-card p,.testimonial strong{padding-bottom:24px}
.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.feature{padding:28px}
.feature-icon{
  width:56px;height:56px;border-radius:16px;
  display:grid;place-items:center;
  background:#fff2e9;
  color:var(--primary);
  font-weight:800;
  margin-bottom:16px;
}
.price-table{padding:16px 24px}
.price-row{
  display:flex;
  justify-content:space-between;
  gap:18px;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}
.price-row:last-child{border-bottom:0}
.price-row span{color:#314058}
.price-row strong{white-space:nowrap}
.testimonial{padding:28px}
.contact-box{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  padding:34px;
}
.contact-list{
  margin:18px 0 0;
  padding-left:18px;
  color:#42526d;
}
.contact-form{
  display:grid;
  gap:14px;
}
.contact-form input,.contact-form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:16px;
  padding:15px 16px;
  font:inherit;
  background:#fff;
  color:var(--text);
}
.contact-form textarea{min-height:140px;resize:vertical}
.site-footer{
  padding:26px 0 40px;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer-wrap{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.footer-bottom{
  text-align:center;
  padding-top:12px;
  border-top:1px solid var(--line);
}
.footer-bottom p{
  margin:0;
  font-size:14px;
  color:#6b7280;
}

@media (max-width:1080px){
  .hero-grid,.contact-box,.cards.three,.feature-grid{grid-template-columns:1fr 1fr}
  .hero-grid{grid-template-columns:1fr}
}
@media (max-width:760px){
  .topbar-wrap,.nav{justify-content:center}
  .nav{min-height:74px}
  .site-nav{
    position:absolute;
    top:100%;
    left:16px;
    right:16px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    box-shadow:var(--shadow);
    padding:18px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
  }
  .site-nav.open{display:flex}
  .nav-toggle{display:block}
  .hero-grid,.cards.three,.feature-grid,.contact-box,.hero-stats,.trust-grid{grid-template-columns:1fr}
  .section{padding:72px 0}
  .hero h1{font-size:2.7rem}
}
