:root{--brand:#111}
*{box-sizing:border-box}html{scroll-behavior:smooth}
body{margin:0;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Helvetica,Arial;}
.container{max-width:1120px;margin:0 auto;padding:0 20px}
.header{position:sticky;top:0;background:#fff7;backdrop-filter:blur(8px);border-bottom:1px solid #eee;z-index:10}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.brand{display:flex;gap:12px;align-items:center}
.brand img{height:42px;width:auto;border-radius:8px;background:#fff}
.brand .title{font-weight:800;font-size:20px;line-height:1}
.brand .subtitle{font-size:12px;color:#666;margin-top:2px}
.nav a{color:#222;text-decoration:none;margin-left:18px;font-size:14px}
.btn{display:inline-flex;align-items:center;gap:10px;padding:12px 18px;border-radius:14px;text-decoration:none;border:1px solid #ddd;color:#111}
.btn.primary{background:var(--brand);border-color:var(--brand);color:#fff}
.hero{background:linear-gradient(180deg,#fafafa,#fff)}
.hero-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:28px;align-items:center;padding:56px 0}
.hero h1{font-size:42px;line-height:1.1;margin:0 0 10px;font-weight:900}
.hero p{color:#555;font-size:18px;max-width:620px}
.card{border:1px solid #eee;border-radius:18px;background:#fff;padding:18px}
.img-rounded{border-radius:18px;overflow:hidden;box-shadow:0 10px 30px rgba(0,0,0,.05)}
.img-rounded img{width:100%;height:100%;object-fit:cover;display:block}
.grid{display:grid;gap:16px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.section{padding:56px 0}
.section h2{font-size:30px;font-weight:800;margin:0 0 10px}
.muted{color:#666}
.pricing li{display:flex;justify-content:space-between;padding:6px 0;border-bottom:1px dashed #eee}
.gallery img{width:100%;border-radius:16px;display:block}
.footer{border-top:1px solid #eee;background:#fff;padding:26px 0;color:#666;font-size:14px}
.badge{display:inline-block;padding:6px 10px;border-radius:999px;background:#fff4;border:1px solid #eee;font-size:12px}
.small{font-size:12px}
@media(max-width:900px){.hero-grid{grid-template-columns:1fr;}.nav{display:none}}