@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600;700&family=Space+Grotesk:wght@400;600&display=swap');

:root {
  --primary:#fa5c00;
  --text:#111827;
  --muted:#6b7280;
  --bg:#ffffff;
  --bg-alt:#f8fafc;
  --card:#ffffff;
  --radius:16px;
}

* { box-sizing:border-box; }
html,body { margin:0; padding:0; font-family:'Space Grotesk', system-ui, -apple-system, sans-serif; color:var(--text); background:var(--bg); }
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }

.header {
  position:sticky; top:0; z-index:40;
  backdrop-filter:saturate(180%) blur(10px);
  background:rgba(255,255,255,0.9);
  border-bottom:1px solid #e5e7eb;
}
.header-inner {
  max-width:1200px; margin:0 auto;
  padding:14px 20px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.nav { display:flex; align-items:center; gap:18px; }
.nav a { font-weight:600; font-size:0.95rem; opacity:0.8; }
.nav a:hover { opacity:1; }
.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 18px;
  border-radius:999px;
  font-weight:700;
  border:1px solid var(--primary);
  background:var(--primary);
  color:#ffffff;
  cursor:pointer;
}
.btn.secondary {
  background:transparent;
  color:var(--text);
  border-color:#e5e7eb;
}
.badge {
  display:inline-flex; align-items:center; justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background:#fff0e6;
  color:var(--primary);
  font-size:0.7rem;
  font-weight:700;
}
.menu-toggle { display:none; }

.hero-shell { background:#020617; color:#f9fafb; }
.hero {
  max-width:1200px; margin:0 auto;
  padding:80px 20px 72px;
  display:grid; grid-template-columns:1.05fr 1fr;
  gap:40px; align-items:center;
}
.hero h1 {
  font-family:'Archivo', sans-serif;
  font-size:3.2rem; line-height:1.02;
  margin:0 0 16px; letter-spacing:-0.04em;
}
.hero .lede { font-size:1.1rem; color:#e5e7eb; margin:0 0 24px; }
.hero-cta { display:flex; flex-wrap:wrap; gap:12px; }
.hero-meta { margin-top:16px; font-size:0.85rem; color:#9ca3af; }
.hero-media { border-radius:24px; overflow:hidden; box-shadow:0 28px 70px rgba(0,0,0,0.65); }

.section {
  max-width:1200px; margin:0 auto;
  padding:80px 20px;
  display:grid; grid-template-columns:1fr 1fr;
  gap:40px; align-items:center;
}
.section-title {
  font-family:'Archivo', sans-serif;
  font-size:2.3rem; margin:0 0 12px;
}
.section p { font-size:1.05rem; color:var(--muted); }
.section ul { padding-left:18px; color:var(--muted); }
.section-media { border-radius:var(--radius); overflow:hidden; box-shadow:0 14px 40px rgba(0,0,0,0.12); }
.section:nth-of-type(even) .section-media { order:2; }

.trust { background:var(--bg-alt); border-bottom:1px solid #e5e7eb; }
.trust-inner {
  max-width:1200px; margin:0 auto;
  padding:18px 20px;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; flex-wrap:wrap;
}
.trust-inner span { font-size:0.9rem; color:var(--muted); }

.cards {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
  gap:18px;
}
.card {
  background:var(--card);
  border-radius:var(--radius);
  border:1px solid #e5e7eb;
  padding:18px;
}
.card .name { margin-top:10px; font-weight:700; }

.gallery { background:var(--bg-alt); }
.gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
  margin-top:24px;
}
.gallery-item {
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 14px 40px rgba(0,0,0,0.18);
}

.pricing-aside {
  background:var(--card);
  border-radius:var(--radius);
  border:1px solid #e5e7eb;
  padding:22px;
  box-shadow:0 10px 36px rgba(15,23,42,0.06);
}
.input {
  width:100%; padding:11px 13px;
  border-radius:10px; border:1px solid #d1d5db;
  font-size:1rem;
}
.quote-row {
  margin-top:10px;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
#quoteOut { font-size:1.75rem; font-weight:800; }

.faq {
  max-width:900px; margin:0 auto;
  padding:70px 20px 80px;
}
.faq h2 { font-family:'Archivo', sans-serif; font-size:2rem; margin:0 0 16px; }
.faq-item { border-bottom:1px solid #e5e7eb; }
.faq-q {
  width:100%; padding:16px 0;
  background:none; border:none; text-align:left;
  font-size:1rem; font-weight:700;
  display:flex; align-items:center; justify-content:space-between;
  cursor:pointer;
}
.faq-a {
  max-height:0; overflow:hidden;
  transition:max-height 0.3s ease; color:var(--muted);
}
.faq-item.open .faq-a { max-height:220px; padding-bottom:14px; }

.footer { background:#020617; color:#e5e7eb; }
.footer-inner {
  max-width:1200px; margin:0 auto;
  padding:40px 20px;
  display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:20px;
}
.footer h4 { margin-top:0; font-size:0.95rem; }
.footer a { color:#e5e7eb; opacity:0.85; font-size:0.9rem; }
.footer a:hover { opacity:1; }
.footer p { font-size:0.9rem; }
.legal {
  border-top:1px solid rgba(148,163,184,0.5);
  text-align:center; padding:14px 20px 18px;
  font-size:0.8rem; color:#9ca3af;
}

@media (max-width:960px) {
  .hero { grid-template-columns:1fr; padding-top:56px; }
  .hero-media { order:-1; }
  .section { grid-template-columns:1fr; }
  .footer-inner { grid-template-columns:1fr 1fr; }
  .menu-toggle { display:inline-flex; }
  .nav { display:none; }
  .nav.open {
    display:flex; flex-direction:column;
    align-items:flex-start; padding:0 20px 12px;
  }
}

.hero .btn.secondary { color:#f9fafb; border-color:#f9fafb; }
