:root{
  --bg:#0b0d12;
  --card:#111521;
  --text:#e8ecf3;
  --muted:#aab3c5;
  --line:#20263a;
  --btn:#1b2340;
  --btnLine:#2d3652;
  --accent:#6ea8ff;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(900px 600px at 18% 0%, rgba(110,168,255,.12), transparent 55%),
    radial-gradient(800px 600px at 85% 10%, rgba(120,255,214,.08), transparent 55%),
    var(--bg);
  color:var(--text);
}
a{ color:inherit; text-decoration:none; }
.wrap{ max-width:1080px; margin:0 auto; padding:26px 22px; }

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  position:sticky;
  top:0;
  padding:14px 0;
  background:linear-gradient(to bottom, rgba(11,13,18,.92), rgba(11,13,18,.72), rgba(11,13,18,0));
  backdrop-filter: blur(10px);
  z-index:10;
}
.logo{ font-weight:800; letter-spacing:.2px; }
.links{ display:flex; gap:14px; align-items:center; flex-wrap:wrap; }

.hero{
  padding:64px 0 26px;
}
h1{
  font-size:44px;
  line-height:1.08;
  margin:0 0 14px;
  letter-spacing:-.2px;
}
p{ color:var(--muted); margin:0 0 16px; font-size:18px; }
.small{ font-size:14px; color:var(--muted); margin:0; }

.heroBullets{
  margin:14px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.heroBullets li{ margin:8px 0; }

.sub{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
  margin-top:16px;
}
.sub span{
  border:1px solid var(--line);
  padding:7px 11px;
  border-radius:999px;
  background:rgba(0,0,0,.10);
}

.card{
  border:1px solid rgba(32,38,58,.9);
  background:linear-gradient(180deg, rgba(17,21,33,.96), rgba(17,21,33,.90));
  border-radius:20px;
  padding:28px 24px;
  margin:18px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.sectionHead{
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-bottom:10px;
}

h2{ margin:0; font-size:22px; }
h3{ margin:0 0 6px; font-size:16px; }
.muted{ color:var(--muted); }
.muted.small{ font-size:14px; }

.btn{
  display:inline-block;
  padding:11px 15px;
  border-radius:14px;
  border:1px solid var(--btnLine);
  background:rgba(27,35,64,.92);
  font-weight:650;
  transition: transform .08s ease, filter .12s ease, border-color .12s ease;
}
.btn:hover{
  filter:brightness(1.10);
  border-color: rgba(110,168,255,.55);
}
.btn:active{ transform: translateY(1px); }
.ghost{ background:transparent; }
.cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:18px 0 10px;
}

.serviceGrid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
  margin-top:12px;
}
.service{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 16px;
  background:rgba(0,0,0,.10);
}
.serviceTop{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.price{
  border:1px solid var(--line);
  color:var(--muted);
  border-radius:999px;
  padding:6px 10px;
  font-size:13px;
  white-space:nowrap;
}
.service p{ font-size:15px; margin:8px 0 0; color:var(--muted); }

.aboutGrid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
  margin-top:12px;
}
.aboutBox{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 16px;
  background:rgba(0,0,0,.10);
}
.bullets{ margin:8px 0 0; padding-left:18px; color:var(--muted); }
.bullets li{ margin:8px 0; }

.proof{ margin:0; padding-left:18px; color:var(--muted); }
.proof li{ margin:8px 0; }

.steps{ margin:0; padding-left:18px; color:var(--muted); }
.steps li{ margin:10px 0; }

.quotes{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:12px;
}
.quote{
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px 16px;
  background:rgba(0,0,0,.10);
  margin:0;
}
.quote blockquote{
  margin:0;
  color:var(--text);
  font-size:15px;
  line-height:1.45;
}
.quote figcaption{
  margin-top:10px;
  color:var(--muted);
  font-size:13px;
}

.form{ margin-top:14px; }
.formRow{ display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
label{ display:block; font-weight:650; margin:10px 0; color: var(--text); }
label span{ color: var(--muted); font-weight:500; }

input, textarea{
  width:100%;
  margin-top:8px;
  padding:13px 12px;
  border-radius:14px;
  border:1px solid rgba(32,38,58,.95);
  background:rgba(13,16,32,.95);
  color:var(--text);
  font-size:15px;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(110,168,255,.60);
  box-shadow: 0 0 0 4px rgba(110,168,255,.10);
}
textarea{ resize: vertical; min-height: 130px; }
.formActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
  align-items:center;
}
button.btn{ cursor:pointer; }

.contact{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.footer{
  padding:26px 0 46px;
  color:var(--muted);
  font-size:14px;
  text-align:center;
}

@media (max-width: 980px){
  h1{ font-size:34px; }
  .serviceGrid{ grid-template-columns:1fr; }
  .aboutGrid{ grid-template-columns:1fr; }
  .quotes{ grid-template-columns:1fr; }
  .formRow{ grid-template-columns:1fr; }
  .nav{ position:static; background:none; backdrop-filter:none; }
}
