/* Demo site styles for the widget backdrop */
:root{
    --bg:#f7fafc;
    --muted:#6b7280;
    --accent:#1e40af;
    --container:1100px;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:#0f172a;line-height:1.5}
.container{max-width:var(--container);margin:0 auto;padding:0 20px}
.site-header{background:white;border-bottom:1px solid #e6edf6}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
.brand{font-weight:700;color:var(--accent);text-decoration:none;font-size:1.1rem}
.nav a{margin-left:18px;color:var(--muted);text-decoration:none}
.hero{background:linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.9));padding:80px 0}
.hero-inner{display:flex;gap:40px;align-items:center}
.hero-copy{flex:1}
.hero-copy h1{font-size:2.2rem;margin:0 0 12px}
.hero-copy p{color:var(--muted);margin:0 0 18px}
.btn{display:inline-block;background:var(--accent);color:white;padding:10px 18px;border-radius:8px;text-decoration:none}
.hero-media img{width:420px;max-width:40vw;border-radius:12px;box-shadow:0 8px 30px rgba(2,6,23,0.12)}
.features{padding:56px 0}
.features h2{margin:0 0 20px}
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.feature{background:white;padding:14px;border-radius:10px;box-shadow:0 6px 18px rgba(2,6,23,0.06);text-align:center}
.feature img{width:100%;height:140px;object-fit:cover;border-radius:8px;margin-bottom:12px}
.about{padding:40px 0}
.about-inner{display:flex;gap:24px;align-items:center}
.about-inner img{width:360px;max-width:40%;border-radius:10px}
.contact{padding:40px 0}
.site-footer{background:#fff;padding:20px 0;border-top:1px solid #e6edf6;text-align:center}
@media (max-width:900px){
    .hero-inner{flex-direction:column;text-align:center}
    .hero-media img{max-width:80%;width:360px}
    .feature-grid{grid-template-columns:1fr}
    .about-inner{flex-direction:column}
    .about-inner img{width:100%;max-width:none}
}
