:root {
  --primary: #0f5b78;
  --primary-dark: #0a4157;
  --accent: #f59e0b;
  --ink: #17202a;
  --muted: #667085;
  --surface: #ffffff;
  --soft: #f4f7f9;
  --border: #e4e7ec;
  --max: 1160px;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(16,24,40,.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }
.hidden { display: none !important; }

.topbar { background: var(--primary-dark); color: #fff; font-size: 14px; }
.topbar-inner { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; }
.topbar a { font-weight: 800; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-size: 21px; font-weight: 900; }
.logo { max-height: 46px; max-width: 180px; object-fit: contain; }
.nav-links { display: flex; gap: 24px; align-items: center; font-weight: 700; font-size: 15px; }
.menu-toggle { display: none; background: none; border: 0; font-size: 28px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: #fff;
  border: 2px solid var(--primary);
  padding: 13px 20px; border-radius: 11px; font-weight: 850;
  cursor: pointer; transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-secondary { background: transparent; color: var(--primary); }
.btn-small { padding: 9px 14px; }

.hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(245,158,11,.18), transparent 28%),
    linear-gradient(135deg, #f8fbfc 0%, #eef5f8 100%);
  padding: 92px 0;
}
.hero-grid, .split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.eyebrow { color: var(--primary); text-transform: uppercase; letter-spacing: .14em; font-size: 13px; font-weight: 900; margin-bottom: 10px; }
h1, h2, h3 { line-height: 1.08; margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 72px); letter-spacing: -.04em; margin-bottom: 22px; }
h2 { font-size: clamp(32px, 4vw, 46px); letter-spacing: -.03em; margin-bottom: 18px; }
h3 { font-size: 21px; }
.hero-sub { font-size: 20px; color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 700; font-size: 14px; }

.hero-card { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 28px; padding: 18px; box-shadow: var(--shadow); transform: rotate(1deg); }
.hero-card-inner { background: #fff; border-radius: 20px; padding: 42px; min-height: 300px; display: flex; flex-direction: column; justify-content: center; }
.rating { color: var(--accent); font-size: 24px; letter-spacing: 3px; }
.phone-link { color: var(--primary); font-size: clamp(28px, 4vw, 40px); font-weight: 950; margin-top: 18px; }

.section { padding: 88px 0; }
.alt { background: var(--soft); }
.dark { background: var(--primary-dark); color: white; }
.dark .eyebrow { color: #ffd48a; }
.section-heading { max-width: 700px; margin-bottom: 42px; }
.section-heading p { color: var(--muted); font-size: 18px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: 0 6px 18px rgba(16,24,40,.05); }
.card-icon { font-size: 28px; margin-bottom: 14px; }
.card p { color: var(--muted); }
.benefits { display: grid; gap: 12px; }
.benefit { background: #fff; padding: 16px 18px; border-radius: 12px; border: 1px solid var(--border); font-weight: 750; }
.reviews .card { position: relative; }
.review-stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 8px; }
.review-author { font-weight: 850; margin-top: 14px; }
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.area { border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); padding: 10px 14px; border-radius: 999px; }

.faq-list { display: grid; gap: 12px; max-width: 860px; }
.faq { border: 1px solid var(--border); border-radius: 14px; padding: 20px 22px; background: #fff; }
.faq summary { font-weight: 850; cursor: pointer; }
.faq p { color: var(--muted); margin-bottom: 0; }

.contact-section { background: #fbfcfd; }
.lead-form { background: white; border: 1px solid var(--border); border-radius: 20px; padding: 28px; box-shadow: var(--shadow); }
.lead-form label { display: grid; gap: 7px; font-size: 14px; font-weight: 800; margin-bottom: 14px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, select, textarea {
  width: 100%; border: 1px solid #cfd5dc; border-radius: 10px; padding: 12px 13px;
  font: inherit; color: var(--ink); background: #fff;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(15,91,120,.12); border-color: var(--primary); }
.form-note { color: var(--muted); font-size: 13px; margin-bottom: 0; }
.contact-phone a { color: var(--primary); font-weight: 900; }

.footer { background: #101828; color: #d0d5dd; padding: 52px 0 26px; }
.footer strong { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer p { margin: 8px 0; }
.copyright { border-top: 1px solid #344054; margin-top: 34px; padding-top: 20px; font-size: 13px; }

.mobile-call { display: none; }

@media (max-width: 850px) {
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 74px;
    background: #fff; padding: 20px; border-bottom: 1px solid var(--border);
    flex-direction: column; align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
  .hero { padding: 62px 0; }
  .hero-grid, .split, .cards, .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .field-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-card { transform: none; }
  .section { padding: 62px 0; }
  .mobile-call {
    display: block; position: fixed; z-index: 60; left: 14px; right: 14px; bottom: 14px;
    text-align: center; background: var(--primary); color: #fff;
    padding: 14px; border-radius: 12px; font-weight: 900; box-shadow: var(--shadow);
  }
  body { padding-bottom: 72px; }
}
