:root {
  --bg: #0b1220;
  --fg: #0f172a;
  --text: #0f172a;
  --muted: #64748b;
  --card: #ffffff;
  --accent: #111827;
  --accent-2: #475569;
  --primary: #111827;
  --primary-cta: #111827;
  --ring: rgba(17,24,39,.15);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif; color: var(--text); background: #f8fafc; }
a { color: var(--primary); }
a:hover { text-decoration: underline; }
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 80px 0; background: radial-gradient(1200px 600px at 80% -10%, #c7d2fe, rgba(199, 210, 254, 0)), linear-gradient(#def5f3, #f8fafc); }
.hero .hero-grid { display: grid; grid-template-columns: 2.2fr 1fr; align-items: center; gap: 24px; }
.hero .content { max-width: 840px; position: relative; z-index: 2; }
.hero .visual { position: relative; }
.hero .hero-img { width: 100%; max-width: 520px; height: auto; object-fit: contain; filter: drop-shadow(0 12px 24px rgba(2,6,23,0.15)); position: relative; z-index: 1; }

.eyebrow { display:inline-block; color:#2563eb; background:#dbeafe; border:1px solid #bfdbfe; padding:4px 10px; border-radius:999px; margin-bottom:16px; }
.eyebrow a {
  color: #2d53a4;
  font-weight: bold;
}
h1 { font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 16px; }
.lead { font-size: 20px; color: var(--muted); margin: 0 0 58px; }
.cta { display:flex; gap:12px; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; justify-content:center; padding:12px 18px; border-radius:10px; border:1px solid #e5e7eb; background:#fff; color:#111827; text-decoration:none; font-weight:600; box-shadow: 0 1px 2px var(--ring); }
.btn.primary { background:#111827; color:#fff; border-color:#111827; }
.btn.ghost { background: #fff; color:#111827; }

/* Sections */
section { padding: 32px 0; }
.section-title { font-size: 28px; margin: 0 0 12px; }
.section-lead { color: var(--muted); max-width: 820px; margin: 0 0 28px; }
.grid { display:grid; gap:20px; grid-template-columns: repeat(12, 1fr); align-items: stretch; }
.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-12 { grid-column: span 12; }
@media (max-width: 900px) {
  .col-4, .col-6 { grid-column: span 12; }
}
.grid > .col-4, .grid > .col-6 { display: flex; }
.card {
    background: #f7f8fa;
    border: 1px solid #fff;
    border-radius: 25px;
    padding: 20px;
    box-shadow: 0 8px 34px rgba(0, 0, 0, 0.1);
}

.grid > .col-4 .card { height: 100%; display: flex; flex-direction: column; width: 100%}
.card-img { width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; border-radius: 10px; margin-bottom: 12px; }
.muted { color: var(--muted); }
.kicker { font-weight:600; color:#111827; margin-bottom:6px; }
.list { margin: 0; padding-left: 18px; color: var(--muted); }
.specs { display:flex; gap:24px; flex-wrap:wrap; justify-content:center; }
.spec { background:transparent; border:none; border-radius:10px; padding:10px 12px; text-align:center; min-width: 260px; }
.spec-icon { width: 40px; height: 40px; object-fit: contain; display:block; margin: 0 auto 8px; }
.price { font-size: 32px; font-weight: 800; }
.pill { display:inline-block; padding:4px 10px; border-radius:999px; background:#eef2ff; color:#3730a3; border:1px solid #e0e7ff; font-weight:600; font-size: 12px; }
.feature { display:flex; gap:12px; align-items:flex-start; }
.feature .dot { width:10px; height:10px; background:#111827; border-radius:50%; margin-top:8px; }
footer { padding: 48px 0; color: var(--muted); border-top:1px solid #e5e7eb; background:#fff; }