/* Basic responsive styling */
:root{--brand:#0b7285;--accent:#06b6d4;--muted:#6b7280;--bg:#f6f9fb}
*{box-sizing:border-box}body{font-family:Inter,system-ui,Arial,sans-serif;margin:0;background:var(--bg);color:#0f172a}
.container{max-width:1100px;margin:0 auto;padding:18px}
.header-inner{display:flex;justify-content:space-between;align-items:center}
.logo{width:46px;height:46px;background:linear-gradient(135deg,var(--accent),#0369a1);border-radius:10px;display:grid;place-items:center;color:white;font-weight:700;margin-right:12px}
.site-header{background:white;box-shadow:0 2px 8px rgba(0,0,0,0.04)}
.brand{display:flex;align-items:center;gap:12px}
.main-nav a{margin-left:16px;color:var(--muted);text-decoration:none}
.hero{display:flex;gap:20px;align-items:center;padding:40px 18px;background:linear-gradient(180deg,#ffffff,#f0fafb)}
.hero-left{flex:1}.hero-right{width:320px}
.card{background:white;border-radius:12px;padding:18px;box-shadow:0 6px 18px rgba(15,23,42,0.06);margin-bottom:18px}
.btn{display:inline-block;padding:10px 14px;background:var(--brand);color:white;border-radius:8px;text-decoration:none;border:none;cursor:pointer}
.btn.ghost{background:transparent;border:1px solid #e6eef0;color:var(--brand)}
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:12px;margin-top:12px}
.service{padding:12px;border-radius:8px;border:1px solid #eef2f7;background:linear-gradient(180deg,rgba(255,255,255,0.6),transparent)}
.checks{list-style:none;padding:0;display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:8px}
.beforeafter{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.placeholder{background:#f0f7f8;height:140px;border-radius:8px;display:flex;align-items:center;justify-content:center}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.small{font-size:13px;color:var(--muted)}
.muted-note{font-size:13px;color:var(--muted);margin-top:8px}
.site-footer{background:#fff;padding:18px;border-top:1px solid #eef2f7}
form input, form select, form textarea{width:100%;padding:10px;border-radius:8px;border:1px solid #e6eef0;margin-top:8px}
.addservices label{display:block;margin-top:6px}
@media(max-width:880px){.hero{flex-direction:column}.hero-right{width:100%}.two-col{grid-template-columns:1fr}}
