:root {
  --primary: #111827;
  --primary-dark: #000000;
  --accent: #f59e0b;
  --surface: #ffffff;
  --surface-alt: #f9fafb;
  --text: #111827;
  --text-muted: #4b5563;
  --border: rgba(0,0,0,0.08);
  --shadow: 0 8px 30px rgba(0,0,0,0.08);
  --radius: 14px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: &#39;Open Sans&#39;, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.55;
}
a { color: var(--primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: &#39;Poppins&#39;, sans-serif; line-height: 1.15; margin: 0 0 0.6em; }
h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); }
h3 { font-size: 1.15rem; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 820px; }
.lead { font-size: 1.1rem; color: var(--text-muted); }
.eyebrow {
  text-transform: uppercase; font-size: 0.75rem;
  letter-spacing: 0.12em; color: var(--primary); font-weight: 700;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s, border-color .2s;
}
.site-header.is-stuck { box-shadow: var(--shadow); border-color: var(--border); }
.header-inner { display: flex; align-items: center; padding: 0.85rem 1.25rem; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 800; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--primary); color: #fff;
}
.brand-name { font-size: 1.05rem; }
.primary-nav { margin-left: auto; display: flex; gap: 1.25rem; align-items: center; }
.primary-nav a { font-weight: 600; color: var(--text); }
.primary-nav .cta-phone {
  background: var(--accent); color: var(--text);
  padding: 0.55rem 0.9rem; border-radius: 999px;
}
.menu-toggle {
  display: none; background: none; border: 0;
  font-size: 1.6rem; cursor: pointer; margin-left: auto;
}

/* Hero */
.hero {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--surface-alt), var(--surface));
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.hero-copy h1 { color: var(--text); }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.4rem 0 1.5rem; }
.trust-row { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem; }
.trust-row li { color: var(--text-muted); font-weight: 600; }

.hero-card {
  background: var(--surface); border: 1px solid var(--border);
  padding: 1.6rem; border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-card-title { font-weight: 700; font-size: 1.1rem; margin: 0 0 0.8rem; }
.hero-card form, .contact-form { display: grid; gap: 0.7rem; }
.hero-card label, .contact-form label {
  display: grid; gap: 0.3rem; font-size: 0.9rem; font-weight: 600; color: var(--text-muted);
}
input, select, textarea {
  font-family: inherit; font-size: 1rem; padding: 0.65rem 0.8rem;
  border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--text);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--primary); outline-offset: 1px; }

.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1.1rem; border-radius: 999px;
  font-weight: 700; cursor: pointer; border: 0; font-size: 1rem;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--primary-dark); border: 2px solid var(--primary-dark); }
.btn-light { background: #fff; color: var(--primary-dark); }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid #fff; }

.intro { padding: 2.5rem 0; }
.services-summary { padding: 3rem 0; background: var(--surface-alt); }
.service-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-top: 1.5rem;
}
.service-card {
  background: var(--surface); padding: 1.4rem; border-radius: var(--radius);
  border: 1px solid var(--border); transition: transform .2s, box-shadow .2s;
  display: block; color: var(--text);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); text-decoration: none; }
.service-card h2, .service-card h3 { color: var(--text); }
.link-arrow { color: var(--primary-dark); font-weight: 700; margin-top: 0.6rem; display: inline-block; }

.cta-band { padding: 3rem 0; background: var(--primary); color: #fff; }
.cta-band h2 { color: #fff; }
.cta-band-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.5rem; align-items: center;
}
.cta-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: flex-end; }

.page-header { padding: 3rem 0 1rem; background: var(--surface-alt); }
.about-body, .services-detail, .service-body, .contact-grid { padding: 2.5rem 0; }
.bulleted { padding-left: 1.2rem; line-height: 1.9; }
.faq-list dt { font-weight: 700; margin-top: 1.1rem; }
.faq-list dd { margin: 0.3rem 0 0.8rem; color: var(--text-muted); }

.two-col { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; }
.big-phone { font-size: 1.8rem; font-weight: 800; }
.muted { color: var(--text-muted); }
.form-status { font-weight: 600; min-height: 1.2em; }
.form-status.error { color: #b91c1c; }
.form-status.success { color: #15803d; }

/* Footer */
.site-footer { background: var(--text); color: #d1d5db; padding: 2.5rem 0 1.5rem; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; }
.footer-brand { font-weight: 800; color: #fff; font-size: 1.1rem; }
.footer-heading { color: #fff; font-weight: 700; margin: 0 0 0.5rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 0.18rem 0; }
.footer-address { font-size: 0.9rem; line-height: 1.5; margin: 0.4rem 0; color: #d1d5db; }
.footer-disclaimer {
  padding-top: 1.2rem; margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem; color: #9ca3af; line-height: 1.55;
}
.footer-disclaimer p { margin: 0.4rem 0; }
.footer-copy { color: #d1d5db; font-weight: 500; }
.footer-disclaimer-text { max-width: 820px; }
.footer-legal-links { color: #9ca3af; }
.footer-legal-links a { color: #d1d5db; }

/* How It Works (3-step on homepage) */
.how-it-works { padding: 3rem 0; background: var(--surface); }
.how-it-works h2 { text-align: center; }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.how-step { text-align: center; padding: 1.2rem; }
.how-step-num {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff; font-weight: 800; font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.how-step h3 { margin: 0.3rem 0 0.5rem; font-size: 1.1rem; }
.how-step p { color: var(--text-muted); margin: 0; }

/* Why Use cards (network-attested trust) */
.why-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.why-card { background: var(--surface-alt); padding: 1.2rem; border-radius: var(--radius); border-left: 4px solid var(--primary); }
.why-card h3 { font-size: 1rem; margin: 0 0 0.4rem; }
.why-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* Legal pages */
.legal-body { padding: 3rem 0; }
.legal-body h2 { margin-top: 1.8rem; }
.legal-body h3 { margin-top: 1.2rem; }
.legal-body p, .legal-body li { color: var(--text); line-height: 1.65; }

[data-reveal] { opacity: 0; transform: translateY(12px); transition: opacity .5s, transform .5s; }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 880px) {
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute; top: 64px; left: 0; right: 0; background: var(--surface);
    flex-direction: column; padding: 1rem 1.25rem; gap: 0.8rem; box-shadow: var(--shadow);
    display: none;
  }
  .primary-nav.is-open { display: flex; }
  .hero-grid, .cta-band-inner, .footer-grid, .two-col { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
}
