/* Simple one-page site for Adam Mobile Mechanic */
:root{
  --bg:#0b0d12;
  --panel:#121624;
  --panel2:#0f1320;
  --text:#e9eefc;
  --muted:#aeb7d3;
  --line:rgba(255,255,255,.08);
  --accent:#6ea8ff;
  --accent2:#8bffcf;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius:16px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(900px 450px at 30% 0%, rgba(110,168,255,.20), transparent 60%),
              radial-gradient(900px 450px at 80% 30%, rgba(139,255,207,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit}
.container{
  width:min(1120px, 92vw);
  margin:0 auto;
}

.top{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,13,18,.65);
  border-bottom: 1px solid var(--line);
}

.top .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(110,168,255,.9), rgba(139,255,207,.75));
  color:#071019;
  font-weight:800;
  box-shadow: var(--shadow);
}
.name{font-weight:800; letter-spacing:.5px}
.tag{color:var(--muted); font-size:14px}

.actions{display:flex; gap:10px; flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  text-decoration:none;
  font-weight:600;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  background: linear-gradient(135deg, rgba(110,168,255,.95), rgba(110,168,255,.55));
  border-color: transparent;
  color:#06101f;
}

.hero{padding:56px 0 26px}
.grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 860px){
  .grid{grid-template-columns:1fr}
  .top .container{flex-direction:column; align-items:flex-start}
}

h1{
  margin:0 0 12px;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height:1.12;
  letter-spacing:-.5px;
}
.accent{color:var(--accent)}
.lead{color:var(--muted); font-size:18px; margin:0 0 18px}
.hero-cta{display:flex; gap:10px; flex-wrap:wrap; margin: 10px 0 14px}

.badges{display:flex; gap:10px; flex-wrap:wrap}
.badge{
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}

.card{
  background: linear-gradient(180deg, rgba(18,22,36,.95), rgba(15,19,32,.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h2{margin:0 0 10px; font-size:18px}
.card hr{border:none; border-top:1px solid var(--line); margin:14px 0}

.checklist{list-style:none; padding:0; margin:0; display:grid; gap:10px}
.checklist li{
  position:relative;
  padding-left:24px;
  color:var(--muted);
}
.checklist li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: var(--accent2);
  font-weight:800;
}
.note{
  margin-top:12px;
  color:var(--muted);
  font-size:13px;
  border-left: 3px solid rgba(110,168,255,.65);
  padding-left:10px;
}

.section{padding:34px 0}
.section.alt{background: rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
.section h2{margin:0 0 14px; font-size:24px}
.services{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
@media (max-width: 860px){
  .services{grid-template-columns:1fr}
}
.service{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:14px;
}
.service h3{margin:0 0 6px; font-size:16px}
.service p{margin:0; color:var(--muted); font-size:14px}

.steps{margin:10px 0 0; color:var(--muted)}
.hours{display:grid; gap:10px}
.hours div{display:flex; justify-content:space-between; gap:12px; color:var(--muted)}
.muted{color:var(--muted)}
.small{margin:0; padding-left:18px; color:var(--muted); font-size:14px}
.big{font-size:22px; margin:0 0 6px}

.footer{
  padding:22px 0;
  color:var(--muted);
  font-size:14px;
  border-top:1px solid var(--line);
}
.fineprint{margin-top:6px; font-size:12px; color: rgba(174,183,211,.75)}
