:root {
  --ink: #0f1720;
  --ink-soft: #3d4a57;
  --mute: #6b7a89;
  --line: #d5dde5;
  --paper: #f4f7fa;
  --white: #ffffff;
  --steel: #1e3a5f;
  --steel-deep: #12263d;
  --accent: #e85d04;
  --accent-soft: #fff1e6;
  --ok: #1a7a4c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Barlow", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
h1, h2, h3, .font-display {
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 247, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-link:hover, .nav-link.is-active { color: var(--steel); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: white;
}
.btn-primary:hover { background: #d04f00; }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--steel); color: var(--steel); }
.btn-steel {
  background: var(--steel);
  color: white;
}
.btn-steel:hover { background: var(--steel-deep); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--mute);
}
.h-hero { font-size: clamp(42px, 7vw, 72px); }
.h-section { font-size: clamp(32px, 4vw, 48px); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.service-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 100%;
}
.service-card h3 { margin: 12px 0 8px; font-size: 26px; }
.service-card p { margin: 0; color: var(--ink-soft); }

.phone-banner {
  background: linear-gradient(135deg, var(--steel-deep), var(--steel));
  color: white;
}
.footer {
  background: var(--steel-deep);
  color: rgba(255,255,255,0.78);
}
.footer a:hover { color: white; }
.footer h4 {
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 14px;
}
.footer-link { color: rgba(255,255,255,0.72); font-size: 14px; }

.reveal { opacity: 1; }

.faq-item {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-body { margin-top: 10px; color: var(--ink-soft); }

.hero-panel {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(160deg, rgba(18,38,61,0.55), rgba(18,38,61,0.15)),
    url("https://images.unsplash.com/photo-1621905251189-08b45d6a269e?w=1400&q=80") center/cover;
}
.hero-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: white;
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(15,23,32,0.18);
}
