/* Summit Auto Group — fictional dealership used as the widget demo site. */
* { box-sizing: border-box; margin: 0; }
:root {
    --navy: #0f172a;
    --slate: #334155;
    --muted: #64748b;
    --amber: #d97706;
    --amber-dark: #b45309;
    --bg: #f8fafc;
    --card: #ffffff;
    --line: #e2e8f0;
}
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--navy); background: var(--bg); line-height: 1.55; }

nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 28px; padding: 16px 32px; background: rgba(15, 23, 42, 0.96); backdrop-filter: blur(6px); }
nav .brand { color: #fff; font-weight: 800; font-size: 18px; letter-spacing: 0.2px; text-decoration: none; }
nav .brand span { color: var(--amber); }
nav a.link { color: #cbd5e1; text-decoration: none; font-size: 14.5px; font-weight: 600; }
nav a.link:hover, nav a.link.active { color: #fff; }
nav .spacer { flex: 1; }
nav .phone { color: var(--amber); font-weight: 700; font-size: 14.5px; text-decoration: none; }

.hero { position: relative; background: linear-gradient(135deg, #0f172a 0%, #1e293b 55%, #92400e 130%); color: #fff; padding: 96px 32px 110px; overflow: hidden; }
.hero::after { content: ""; position: absolute; inset: auto -10% -55% -10%; height: 240px; background: radial-gradient(ellipse at center, rgba(217, 119, 6, 0.35), transparent 70%); }
.hero .inner { max-width: 1040px; margin: 0 auto; position: relative; }
.hero .kicker { color: #fbbf24; font-weight: 700; letter-spacing: 2.5px; font-size: 12.5px; text-transform: uppercase; }
.hero h1 { font-size: clamp(34px, 5.4vw, 58px); line-height: 1.08; margin: 14px 0 18px; font-weight: 800; max-width: 640px; }
.hero p { color: #cbd5e1; font-size: 18px; max-width: 520px; }
.hero .cta { display: inline-block; margin-top: 30px; background: var(--amber); color: #fff; font-weight: 700; padding: 14px 26px; border-radius: 10px; text-decoration: none; }
.hero .cta:hover { background: var(--amber-dark); }

main { max-width: 1040px; margin: 0 auto; padding: 56px 32px 96px; }
.section-title { font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.section-sub { color: var(--muted); margin-bottom: 30px; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05); }
.card .visual { height: 150px; display: flex; align-items: flex-end; padding: 14px 18px; color: rgba(255, 255, 255, 0.92); font-weight: 800; font-size: 22px; letter-spacing: 0.3px; }
.v-atlas { background: linear-gradient(120deg, #1e3a5f, #0f172a); }
.v-cascade { background: linear-gradient(120deg, #155e75, #164e63); }
.v-meridian { background: linear-gradient(120deg, #7c2d12, #451a03); }
.v-atlas-s { background: linear-gradient(120deg, #334155, #0f172a); }
.v-cascade-h { background: linear-gradient(120deg, #065f46, #064e3b); }
.v-meridian-t { background: linear-gradient(120deg, #6d28d9, #312e81); }
.card .body { padding: 18px; }
.card .tag { display: inline-block; font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--amber-dark); background: #fef3c7; border-radius: 999px; padding: 3px 10px; margin-bottom: 10px; }
.card h3 { font-size: 18px; margin-bottom: 4px; }
.card .price { color: var(--slate); font-size: 14.5px; margin-bottom: 10px; }
.card .price b { color: var(--navy); font-size: 16px; }
.card ul { list-style: none; color: var(--muted); font-size: 13.5px; display: grid; gap: 3px; }

.strip { background: var(--navy); color: #fff; border-radius: 18px; padding: 34px 36px; margin-top: 56px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.strip h3 { font-size: 21px; }
.strip p { color: #cbd5e1; font-size: 15px; margin-top: 4px; }
.strip .hint { margin-left: auto; background: rgba(217, 119, 6, 0.15); border: 1px solid rgba(217, 119, 6, 0.45); color: #fbbf24; border-radius: 12px; padding: 12px 18px; font-weight: 600; font-size: 14px; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.info { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.info h3 { font-size: 17px; margin-bottom: 8px; }
.info p, .info li { color: var(--slate); font-size: 14.5px; }
.info ul { padding-left: 18px; display: grid; gap: 5px; }
.info .big { font-size: 24px; font-weight: 800; color: var(--navy); }

footer { border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; text-align: center; padding: 26px; background: #fff; }

@media (max-width: 640px) {
    nav { gap: 16px; padding: 14px 18px; overflow-x: auto; }
    .hero { padding: 64px 22px 78px; }
    main { padding: 40px 20px 80px; }
    .strip .hint { margin-left: 0; }
}
