:root{
  --bg:#0b0c10;
  --card:#11131a;
  --card2:#151824;
  --text:#f4f6fb;
  --muted:#b7bcc7;
  --line:#252a36;
  --accent:#7c3aed;
  --accent2:#22c55e;
  --warn:#f59e0b;
  --shadow: 0 16px 40px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(124,58,237,.22), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(34,197,94,.12), transparent 60%),
    linear-gradient(180deg,#07080b 0%, var(--bg) 45%, #07080b 100%);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a.link{color:var(--text);text-decoration:underline;text-underline-offset:4px}
.wrap{max-width:1120px;margin:0 auto;padding:22px}

.topbar{
  position:sticky;top:0;z-index:50;
  background:rgba(11,12,16,.72);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.navrow{display:flex;gap:14px;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:34px;width:auto;border-radius:10px}
.brand .name{font-weight:900;letter-spacing:.4px}
.brand .sub{font-size:12px;color:var(--muted);margin-top:-2px}

nav.primary{display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-end;align-items:center}
nav.primary a{color:var(--muted);font-weight:650}
nav.primary a:hover{color:var(--text)}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  background:var(--accent); color:white; font-weight:850;
  border:1px solid rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.btn:hover{filter:brightness(1.06)}
.btn.ghost{background:transparent;border:1px solid var(--line);color:var(--text);box-shadow:none}
.btn.small{padding:10px 14px;border-radius:12px}
.btn.green{background:var(--accent2)}

.pill{display:inline-flex;gap:8px;align-items:center;padding:8px 12px;border-radius:999px;border:1px solid var(--line);color:var(--muted)}
.pill b{color:var(--text)}

.grid{display:grid;gap:16px}
.grid.hero{grid-template-columns: 1.1fr .9fr;align-items:stretch;margin-top:18px}
.card{
  background: radial-gradient(1100px 520px at 10% 0%, rgba(124,58,237,.16), transparent 60%), var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
}
.card.flat{background:var(--card2)}
.kicker{color:var(--muted);margin:0 0 10px 0;font-weight:650}
h1{font-size:clamp(28px,3.2vw,46px);line-height:1.05;margin:0 0 12px 0}
h2{margin:0 0 10px 0}
h3{margin:0 0 8px 0}
.lead{font-size:18px;color:var(--muted);margin:0 0 16px 0}
.muted{color:var(--muted)}
.cta{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
.divider{height:1px;background:var(--line);margin:14px 0}
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:16px}
.icon{
  width:40px;height:40px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(124,58,237,.16);border:1px solid rgba(124,58,237,.25);
  margin-bottom:10px;
}
.twocol{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:16px}
.mini-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:12px}
.mini{background:rgba(255,255,255,.03);border:1px solid rgba(255,255,255,.06);border-radius:16px;padding:12px}
.badge{display:inline-flex;padding:6px 10px;border-radius:999px;border:1px solid rgba(255,255,255,.12);font-size:12px;color:var(--muted)}
.pricing{display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px;margin-top:16px}
.price{font-size:28px;font-weight:900}
.fine{font-size:13px;color:var(--muted)}
.list{margin:10px 0 0 0;padding-left:18px;color:var(--muted)}
.list li{margin:6px 0}
.heroimg{
  width:100%;height:auto;border-radius:18px;border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;flex-wrap:wrap}
.section-head p{margin:0}

footer{border-top:1px solid var(--line);margin-top:26px}
.footergrid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:16px;padding:18px 0}
.footergrid a{display:block;color:var(--muted);margin:8px 0}
.footergrid a:hover{color:var(--text)}
.footend{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;padding:10px 0 18px 0}

.mobileToggle{display:none;background:transparent;border:1px solid var(--line);border-radius:12px;padding:8px 10px;color:var(--text)}
.mobileNav{display:none;padding:10px 0 14px 0}
.mobileNav a{display:block;padding:10px 0;color:var(--muted);border-bottom:1px solid rgba(255,255,255,.05)}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:18px;
}
.table th,.table td{
  text-align:left;
  padding:12px 12px;
  border-bottom:1px solid rgba(255,255,255,.06);
  color:var(--muted);
}
.table th{color:var(--text);font-weight:850;background:rgba(255,255,255,.03)}
.table tr:last-child td{border-bottom:none}

@media (max-width: 900px){
  .grid.hero{grid-template-columns:1fr}
  .features{grid-template-columns:1fr}
  .twocol{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .mini-grid{grid-template-columns:1fr}
  nav.primary{display:none}
  .mobileToggle{display:inline-flex}
  .footergrid{grid-template-columns:1fr 1fr}
}


/* ===== Compact request form layout ===== */

.request-form-compact {
  width: 100%;
}

.request-form-compact .compact-row {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.request-form-compact .compact-row.compact-row-top {
  align-items: start;
}

.request-form-compact .compact-row > label {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.request-form-compact input,
.request-form-compact select,
.request-form-compact textarea {
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 14px;
}

.request-form-compact textarea {
  resize: vertical;
  min-height: 86px;
}

.request-form-compact .compact-upload-block {
  margin-top: 8px;
  margin-bottom: 14px;
}

.request-form-compact .upload-main-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.request-form-compact .drop-zone {
  width: 100%;
  border: 2px dashed #2563eb;
  border-radius: 14px;
  background: rgba(37,99,235,.08);
  padding: 18px;
  text-align: center;
  cursor: pointer;
  color: #fff;
}

.request-form-compact .drop-zone-sub {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255,255,255,.72);
}

.request-form-compact .file-info {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
}

.request-form-compact #fileError {
  display: none;
  margin-top: 8px;
  color: #fca5a5;
  font-size: 13px;
}

.request-form-compact .compact-checks {
  margin: 12px 0 14px;
  display: grid;
  gap: 10px;
}

.request-form-compact .check-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #fff;
  font-size: 14px;
}

.request-form-compact .check-line input[type="checkbox"] {
  width: 16px !important;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  accent-color: #8b5cf6;
}

.request-form-compact .compact-submit {
  width: auto;
  min-width: 180px;
}

@media (max-width: 768px) {
  .request-form-compact .compact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .request-form-compact .compact-submit {
    width: 100%;
  }
}