:root {
  --ink: #0b1f33;
  --muted: #566274;
  --line: #dbe3eb;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --gold: #d8aa45;
  --gold-dark: #9f7520;
  --blue: #3d668f;
  --green: #2f7d67;
  --shadow: 0 18px 50px rgba(11, 31, 51, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

img, svg { max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}

.topbar .container,
.site-header .container,
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar a { color: #fff; opacity: .95; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.logo {
  display: inline-flex;
  align-items: center;
  padding: 14px 0;
}

.logo img { width: 170px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a { color: var(--muted); }
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); }

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
}

.button:hover { background: #e8bd59; }
.button.secondary { background: #fff; border-color: var(--line); }
.button.dark { background: var(--ink); color: #fff; }
.button.full { width: 100%; }

.hero {
  padding: 72px 0 54px;
  background: linear-gradient(180deg, #f6f8fb 0%, #fff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(42px, 6vw, 70px);
}

h2 {
  font-size: clamp(30px, 4vw, 46px);
}

h3 { font-size: 22px; }

.lead {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stat strong {
  display: block;
  font-size: 26px;
}

.stat span { color: var(--muted); font-size: 14px; }

.hero-media {
  filter: drop-shadow(var(--shadow));
}

.section {
  padding: 78px 0;
}

.section.alt { background: var(--soft); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.card p,
.card li { color: var(--muted); }

.card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.service-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 750;
}

.steps {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.case-list {
  display: grid;
  gap: 14px;
}

.case-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.case-row strong { font-size: 19px; }
.case-row span { color: var(--muted); }
.case-amount { color: var(--gold-dark); font-weight: 850; white-space: nowrap; }

.lead-panel {
  padding: 36px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.lead-panel p { color: rgba(255,255,255,.78); }

.lead-form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: inherit;
  font-size: 14px;
  font-weight: 700;
}

input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea { min-height: 110px; resize: vertical; }

.form-status {
  min-height: 22px;
  color: #f9d889;
  font-size: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::after { content: "+"; color: var(--gold-dark); }
.faq-item.is-open .faq-question::after { content: "-"; }

.faq-answer {
  padding: 0 20px 20px;
  color: var(--muted);
}

.page-hero {
  padding: 58px 0;
  background: var(--soft);
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 34px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 100px;
}

.price {
  display: grid;
  gap: 12px;
}

.price strong {
  font-size: 34px;
}

.article-list a {
  display: block;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.article-list span {
  color: var(--muted);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
}

.map-placeholder {
  min-height: 340px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eaf0f6;
  color: var(--muted);
}

.site-footer {
  padding: 42px 0;
  background: var(--ink);
  color: #fff;
}

.site-footer img {
  padding: 8px;
  border-radius: 6px;
  background: #fff;
}

.site-footer p,
.site-footer a { color: rgba(255,255,255,.76); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-mobile {
  display: none;
}

@media (max-width: 1280px) {
  .menu-button { display: block; }

  .site-nav {
    position: absolute;
    inset: 72px 20px auto 20px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .steps,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .grid.two,
  .stats {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .hero {
    padding-top: 44px;
  }

  h1 { font-size: 42px; }

  .sticky-mobile {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 60;
    display: flex;
    box-shadow: var(--shadow);
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .topbar .container { display: block; padding: 8px 0; }
  .case-row { grid-template-columns: 1fr; }
  .lead-panel { padding: 24px; }
  .section { padding: 56px 0; }
}
