/* styles.css - modernized */
:root{
  --accent:#5b21b6;
  --accent-2:#7c3aed;
  --muted:#6b7280;
  --bg:#f7f7fb;
  --card:#ffffff;
  --maxw:1100px;
  --radius:14px;
  --glass: rgba(255,255,255,0.7);
}
*{box-sizing:border-box}
body{font-family:Inter,system-ui,Arial,Helvetica,sans-serif;margin:0;background:linear-gradient(180deg,#fbfbff, #f7f7fb);color:#0f172a}
.wrap{max-width:var(--maxw);margin:0 auto;padding:28px}
.site-header{backdrop-filter: blur(6px);position:sticky;top:0;background:rgba(255,255,255,0.7);border-bottom:1px solid rgba(15,23,42,0.06)}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.brand-wrap{display:flex;align-items:center;gap:12px}
.logo{height:40px;width:40px;border-radius:8px}
.brand{font-size:18px;margin:0;color:var(--accent);font-weight:700}
.nav a{margin-left:18px;color:#0f172a;text-decoration:none;font-weight:600}
.nav a.cta{background:var(--accent);color:white;padding:10px 14px;border-radius:10px}

.hero{padding:40px 0}
.hero-inner{display:grid;grid-template-columns:1fr 520px;gap:28px;align-items:center}
.hero-text h2{font-size:34px;margin:0 0 12px;line-height:1.05}
.lead{color:var(--muted);font-size:18px;margin-bottom:18px}
.btn{display:inline-block;background:var(--accent);color:white;padding:12px 18px;border-radius:12px;text-decoration:none;font-weight:600}
.btn.ghost{background:transparent;border:1px solid rgba(15,23,42,0.06);color:var(--accent);}
.highlights{margin-top:18px;padding-left:18px;color:var(--muted)}
.hero-media{display:flex;justify-content:center}
.hero-img{width:100%;height:auto;border-radius:14px;box-shadow:0 12px 40px rgba(15,23,42,0.08);max-width:520px}

.section{padding:40px 0}
.section.alt{background:transparent}
.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.features{grid-template-columns:repeat(4,1fr)}
.feature-img{width:96px;height:96px;object-fit:cover;border-radius:12px;background:linear-gradient(135deg,var(--accent),var(--accent-2));padding:12px}

.plans{grid-template-columns:repeat(3,1fr)}
.plan{background:var(--card);padding:20px;border-radius:12px;box-shadow:0 10px 30px rgba(15,23,42,0.04);text-align:center}
.plan.featured{border:2px solid var(--accent)}
.price{font-weight:800;font-size:20px;margin:8px 0;color:var(--accent)}

.process-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
.step{background:var(--card);padding:18px;border-radius:12px;text-align:center;box-shadow:0 8px 20px rgba(15,23,42,0.04)}
.step strong{display:block;background:linear-gradient(90deg,var(--accent),var(--accent-2));color:white;width:44px;height:44px;border-radius:10px;margin:0 auto 8px;line-height:44px}

.contact-grid{display:grid;grid-template-columns:1fr 340px;gap:20px}
input,textarea{width:100%;padding:12px;border-radius:10px;border:1px solid #eef2ff}
.form-actions{display:flex;gap:10px;margin-top:8px}
.contact-info{background:var(--card);padding:18px;border-radius:12px}

.site-footer{padding:28px 0;margin-top:30px;color:var(--muted);text-align:center}

/* Small screens */
@media (max-width:1000px){
  .hero-inner{grid-template-columns:1fr}
  .features{grid-template-columns:repeat(2,1fr)}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .plans{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}
