:root{
  /* Match Admin Panel Colors - Dark Gold/Orange Theme */
  --bg:#060912;
  --bg2:rgba(10, 14, 24, 0.9);
  --card:rgba(255,255,255,.03);
  --card2:rgba(255,255,255,.02);
  --card-hover:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.08);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.55);
  --brand:#f4b400;
  --brand2:#f97316;
  --success:#22c55e;
  --warn:#eab308;
  --error:#ef4444;
  --radius:16px;
  --shadow:0 18px 45px rgba(0,0,0,.5);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(244, 180, 0, 0.12), transparent 45%),
    radial-gradient(ellipse 70% 50% at 90% 60%, rgba(249, 115, 22, 0.06), transparent 45%),
    radial-gradient(ellipse 60% 40% at 5% 90%, rgba(244, 180, 0, 0.04), transparent 40%),
    linear-gradient(180deg, #0a0e18 0%, #060912 40%, #040608 100%);
  background-attachment:fixed;
  color:var(--text);
  line-height:1.5;
}
a{color:inherit}

/* Top Bar / Navigation */
.topbar{
  background:rgba(10, 14, 24, 0.85);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:50;
}
.topbar .wrap{
  display:flex;align-items:center;justify-content:space-between;
  padding:12px 20px;
  gap:14px;flex-wrap:wrap;
}
.brand{
  display:flex;align-items:center;gap:12px;min-width:240px;
  text-decoration:none;
}
.brand img{
  width:44px;height:44px;border-radius:12px;object-fit:cover;
  background:linear-gradient(135deg, rgba(244,180,0,.25), rgba(249,115,22,.25));
  border:1px solid rgba(244,180,0,.25);
  padding:3px;
}
.brand .name{font-weight:800;letter-spacing:.5px;color:var(--text)}
.brand .tag{font-size:12px;color:var(--muted)}
.actions{
  display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end;
}

/* Container */
.wrap{max-width:1100px;margin:0 auto;padding:0 20px}

/* Hero */
.hero{
  padding:48px 0 20px;
  background:transparent;
}
.hero-grid{
  display:grid;grid-template-columns:1.2fr .8fr;gap:26px;align-items:start;
}
h1,.h1{
  font-size:42px;line-height:1.08;margin:0 0 14px;font-weight:900;letter-spacing:-.6px;
  color:var(--text);
}
h2{margin:0 0 14px;font-size:24px;letter-spacing:-.3px;color:var(--text)}
h3{margin:0 0 10px;font-size:18px;color:var(--text)}
.sub{color:var(--muted);font-size:16px;margin:0 0 20px;max-width:56ch}
.muted{color:var(--muted)}

/* Badges */
.badges{display:flex;gap:10px;flex-wrap:wrap;margin:14px 0 24px}
.badge{
  background:rgba(244,180,0,.08);
  border:1px solid rgba(244,180,0,.18);
  padding:8px 12px;border-radius:999px;font-weight:700;font-size:13px;
  color:rgba(255,255,255,.85);
}

/* Cards */
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:20px;
}
.card h3{margin:0 0 12px;color:var(--brand)}
.list{margin:0;padding-left:18px;color:var(--muted)}
.list li{margin-bottom:6px}

/* Sections */
.section{padding:32px 0}
.section-alt{
  background:rgba(255,255,255,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

/* Grid layouts */
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.grid2,.two-col{display:grid;grid-template-columns:1fr 1fr;gap:16px}

/* Service cards */
.service{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  transition:border-color .15s, background .15s;
}
.service:hover{
  border-color:rgba(244,180,0,.25);
  background:var(--card-hover);
}
.service .t{font-weight:900;color:var(--text)}
.service .d{color:var(--muted);margin-top:8px;font-size:14px}

/* Pricing cards */
.pricing{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.price-card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:var(--card);
  padding:20px;
  position:relative;
  transition:border-color .15s, background .15s;
}
.price-card:hover{
  border-color:rgba(244,180,0,.25);
  background:var(--card-hover);
}
.price-card.featured{
  border:2px solid rgba(244,180,0,.5);
  background:rgba(244,180,0,.04);
}
.pill{
  position:absolute;top:14px;right:14px;
  background:rgba(244,180,0,.15);
  border:1px solid rgba(244,180,0,.35);
  color:var(--brand);
  font-weight:900;font-size:11px;padding:5px 10px;border-radius:999px;
}
.price-card .k{color:var(--muted);font-weight:800;font-size:11px;letter-spacing:.15em;text-transform:uppercase}
.price-card .n{font-size:18px;font-weight:900;margin:6px 0 10px;color:var(--text)}
.price-card ul{margin:0;padding-left:18px;color:var(--muted);font-size:14px}

/* Price List */
.price-list{display:flex;flex-direction:column;gap:0}
.price-row{
  display:flex;justify-content:space-between;align-items:center;
  padding:12px 0;
  border-bottom:1px solid var(--line);
  font-size:14px;
}
.price-row:last-child{border-bottom:none}
.price-amount{
  font-weight:900;
  font-size:18px;
  color:var(--brand);
}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:11px 16px;border-radius:14px;
  border:1px solid var(--line);
  background:var(--card);
  text-decoration:none;font-weight:700;font-size:14px;
  transition:.15s ease;
  white-space:nowrap;
  cursor:pointer;
  gap:8px;
  color:var(--text);
}
.btn:hover{
  border-color:rgba(244,180,0,.4);
  background:var(--card-hover);
  transform:translateY(-1px);
}
.btn.primary,.btn--primary{
  background:linear-gradient(135deg, rgba(244,180,0,.95), rgba(249,115,22,.90));
  color:rgba(10,12,18,.95);
  border-color:transparent;
  font-weight:900;
}
.btn.primary:hover,.btn--primary:hover{
  filter:brightness(1.05);
  transform:translateY(-1px);
}
.btn.ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
}
.btn.ghost:hover{background:var(--card)}
.btn.outline{
  border-color:var(--line);
  background:var(--card);
  color:var(--text);
}
.btn.outline:hover{
  background:var(--card-hover);
  border-color:rgba(244,180,0,.3);
}
.btn--large{padding:14px 22px;font-size:16px}
.btn--block{width:100%}
.btn:disabled{opacity:0.5;cursor:not-allowed;transform:none}
.cta-row,.btnrow{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.note{font-size:12px;color:var(--muted);margin-top:12px}

/* Form Styles */
.form-section{
  padding:22px 0;
  border-bottom:1px solid var(--line);
}
.form-section:last-of-type{border-bottom:none}
.form-section h3{color:var(--brand);font-size:15px;margin-bottom:18px}
.form-actions{padding-top:22px;text-align:center}
.field{margin-bottom:16px}
label{display:block;font-size:13px;color:var(--muted);margin:14px 0 6px;font-weight:700}
.required{color:var(--error)}
input,select,textarea{
  width:100%;
  background:rgba(0,0,0,.25);
  border:1px solid var(--line);
  color:var(--text);
  border-radius:12px;
  padding:12px 14px;
  outline:none;
  font-size:14px;
  font-family:inherit;
}
input::placeholder,textarea::placeholder{color:rgba(255,255,255,.35)}
input:focus,select:focus,textarea:focus{
  border-color:rgba(244,180,0,.5);
  box-shadow:0 0 0 3px rgba(244,180,0,.12);
}
select{cursor:pointer}
select option{background:#0a0e18;color:var(--text)}
textarea{min-height:100px;resize:vertical}

/* Checkbox Styles */
.checkbox-label{
  display:flex;align-items:flex-start;gap:10px;
  cursor:pointer;font-weight:500;font-size:14px;
  color:var(--text);
}
.checkbox-label input[type="checkbox"]{
  width:20px;height:20px;flex-shrink:0;
  margin:0;cursor:pointer;
  accent-color:var(--brand);
}
.checkbox-label span{padding-top:2px}

/* ZIP Feedback */
.zip-feedback{
  font-size:12px;font-weight:700;margin-top:6px;min-height:18px;
}
.zip-feedback--success{color:var(--success)}
.zip-feedback--warning{color:var(--warn)}
.zip-feedback--error{color:var(--error)}

/* Price Display */
.price-display{
  margin-top:18px;padding:18px;
  background:rgba(244,180,0,.06);
  border:1px solid rgba(244,180,0,.2);
  border-radius:14px;
  text-align:center;
}
.price-display__label{font-size:13px;color:var(--muted);font-weight:700}
.price-display__amount{font-size:48px;font-weight:950;color:var(--brand);letter-spacing:-2px}
.price-display__service{font-size:14px;color:var(--text);margin-top:4px}

/* Quote Only Message */
.quote-only-message{
  display:flex;gap:14px;align-items:flex-start;
  padding:16px;margin-top:18px;
  background:rgba(234,179,8,.06);
  border:1px solid rgba(234,179,8,.25);
  border-radius:14px;
}
.quote-only-icon{
  width:36px;height:36px;border-radius:50%;
  display:grid;place-items:center;
  background:rgba(234,179,8,.15);
  color:var(--warn);
  font-weight:900;font-size:20px;flex-shrink:0;
}
.quote-only-message p{margin:4px 0 0;color:var(--muted);font-size:14px}
.quote-only-message a{color:var(--brand);font-weight:700}

/* Quote Success Message */
.quote-success{
  text-align:center;
  padding:40px 20px;
}
.quote-success__icon{
  width:80px;height:80px;border-radius:50%;
  display:inline-grid;place-items:center;
  background:rgba(34,197,94,.12);
  color:var(--success);
  font-size:48px;font-weight:900;
  margin-bottom:20px;
}
.quote-success h2{color:var(--text);margin-bottom:12px}
.quote-success p{color:var(--muted);font-size:16px;max-width:500px;margin:0 auto 16px}
.quote-success a{color:var(--brand);font-weight:700}

/* FAQ */
.faq{display:grid;gap:12px}
.faq details{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:14px;
  padding:14px 16px;
  transition:border-color .15s;
}
.faq details:hover{border-color:rgba(244,180,0,.2)}
.faq details[open]{border-color:rgba(244,180,0,.3)}
.faq summary{cursor:pointer;font-weight:900;color:var(--text)}
.faq summary::-webkit-details-marker{display:none}
.faq p{color:var(--muted);margin:10px 0 0;line-height:1.6}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:28px 0 40px;
  color:var(--muted);
  font-size:13px;
  background:rgba(0,0,0,.2);
}
.footer-row{display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap}
.footer a{color:var(--brand)}
.disclaimer{max-width:80ch}

/* Hidden Utility */
.hidden{display:none !important}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{grid-template-columns:1fr}
  .grid3,.pricing,.two-col,.grid2{grid-template-columns:1fr}
  .h1,h1{font-size:34px}
  .actions{justify-content:center;width:100%}
  .brand{justify-content:center;min-width:auto}
  .topbar .wrap{justify-content:center;text-align:center}
}
@media (max-width: 600px){
  .price-display__amount{font-size:36px}
  h1,.h1{font-size:28px}
  .badges{flex-direction:column;align-items:flex-start}
}
