:root{
  --bg:#0f1216; --bg2:#11151a;
  --fg:#ffffff; --muted:#bfc6cf;
  --accent:#00FF99; --accent-2:#19ffa9;
  --gold1:#FFE38F; --gold2:#CBA135;
}

/* Background: soft radial + subtle grid */
html,body{height:100%}
body{
  margin:0; color:var(--fg); font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(255,215,0,.08), transparent 60%),
    radial-gradient(1200px 600px at -20% 110%, rgba(0,255,153,.08), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}
.wrap{max-width:960px;margin:0 auto;padding:22px 16px 40px}

/* Header */
.hdr{text-align:center;padding:6px 0 18px}
.mark{width:72px;height:72px;margin:0 auto 10px;opacity:.95;filter:drop-shadow(0 3px 10px rgba(0,0,0,.35))}
.mark svg{width:100%;height:100%}
.brand{margin:6px 0 4px;font-size:28px;line-height:1.15;font-weight:800;letter-spacing:.3px}
.brand span{
  background:linear-gradient(180deg,var(--gold1),var(--gold2));
  -webkit-background-clip:text;background-clip:text;color:transparent;
  filter:drop-shadow(0 2px 10px rgba(255,215,0,.15));
}
.sub{margin:0;color:var(--muted)}
.cta{
  display:inline-block;margin:14px auto 4px;padding:12px 20px;border-radius:14px;
  border:2px solid var(--accent); text-decoration:none; color:#fff; font-weight:800;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  box-shadow:0 10px 26px rgba(0,255,153,.08), inset 0 0 0 1px rgba(255,255,255,.06);
}
.cta:hover{border-color:var(--accent-2)}

/* Cards */
.grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:16px}
.card{
  border-radius:16px; padding:16px; text-decoration:none; color:#fff;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 8px 30px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,255,255,.04);
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.card:hover{transform:translateY(-2px);border-color:rgba(255,255,255,.16);box-shadow:0 12px 36px rgba(0,0,0,.32)}
.card-hdr{font-weight:800;margin-bottom:6px;letter-spacing:.2px}

/* Footer */
.foot{margin-top:22px;text-align:center;color:var(--muted)}

/* iPhone install hint */
.ios-tip{
  position:fixed; left:16px; right:16px; bottom:16px; z-index:9999;
  background:rgba(0,0,0,.75); color:#fff; padding:12px 14px; border-radius:12px; font-size:14px;
  backdrop-filter:blur(4px); box-shadow:0 8px 24px rgba(0,0,0,.35);
}
.ios-tip span{border:1px solid #fff;padding:2px 6px;border-radius:6px;margin:0 3px}
.ios-tip button{float:right;background:transparent;border:0;color:#fff;font-size:16px}

/* Responsive */
@media (min-width:680px){
  .brand{font-size:34px}
  .grid{grid-template-columns:repeat(4,minmax(0,1fr))}
}
/* --- Logo size + glow fix --- */
.logo {
  display: block;
  margin: 0 auto 8px;
  width: 180px;            /* Adjust to fit neatly */
  max-width: 80%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.4)); /* golden glow */
}

@media (min-width: 480px) { .logo { width: 220px; } }
@media (min-width: 768px) { .logo { width: 260px; } }
/* Buttons */
.cta.alt{ margin-left:8px; border-color:#FFD700 }
.cta.full{ display:block; width:100%; text-align:center; }
.cta.ghost{ background:transparent; border-color:rgba(255,255,255,.3) }

/* Quick Quote Modal */
.qq-backdrop{position:fixed;inset:0;background:rgba(0,0,0,.55);backdrop-filter:blur(2px);z-index:10000}
.qq-modal{
  position:fixed;left:50%;top:50%;transform:translate(-50%,-50%);
  width:min(560px,92vw);max-height:90vh;overflow:auto;border-radius:16px;
  background:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.18);backdrop-filter:blur(10px);
  box-shadow:0 18px 60px rgba(0,0,0,.45);padding:14px;z-index:10001;
}
.qq-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px}
.qq-head h3{margin:6px 0 0 8px}
.qq-close{background:transparent;border:0;color:#fff;font-size:20px}
.qq-body label{display:block;margin:8px 0 6px;color:#dfe6ef}
.qq-body input, .qq-body select{
  width:100%;padding:12px 12px;border-radius:12px;border:1px solid rgba(255,255,255,.2);
  background:rgba(0,0,0,.25);color:#fff;outline:none
}
.qq-small{margin-top:8px;margin-bottom:8px;border:1px solid rgba(255,255,255,.25);
  padding:8px 12px;border-radius:10px;background:rgba(255,255,255,.06);color:#fff}
.qq-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:8px}
.qq-result{margin-top:14px;padding-top:12px;border-top:1px dashed rgba(255,255,255,.2)}
.qq-price{font-size:28px;font-weight:800;margin-bottom:6px}
.qq-actions .cta{margin-top:8px}
