:root {
  --navy: #102542;
  --blue: #0b5cad;
  --blue-2: #1677d2;
  --orange: #f26b21;
  --red: #c73a2b;
  --ink: #172033;
  --muted: #5b6472;
  --line: #dbe2ea;
  --soft: #f4f7fb;
  --white: #ffffff;
  --green: #198754;
  --shadow: 0 18px 45px rgba(16, 37, 66, .14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: .9rem;
}
.topbar .wrap {
  min-height: 38px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #2b3445;
  font-weight: 650;
  font-size: .94rem;
}
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--blue); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 7px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(242, 107, 33, .24);
}
.btn-primary:hover { background: #de5f19; }
.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}
.btn-dark {
  color: var(--white);
  background: var(--navy);
}
.btn-phone {
  color: var(--white);
  background: var(--red);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16,37,66,.94) 0%, rgba(16,37,66,.78) 46%, rgba(16,37,66,.34) 100%);
  z-index: 1;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .64fr);
  gap: 42px;
  align-items: start;
  padding: 34px 0 46px;
}
.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: #e8f3ff;
  font-weight: 800;
  font-size: .86rem;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.08; color: var(--navy); margin: 0 0 16px; letter-spacing: 0; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.55rem, 6vw, 5rem);
  max-width: 820px;
  margin-top: 18px;
}
.hero p {
  max-width: 760px;
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  color: #eef6ff;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 22px; }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
}
.trust-strip span, .badge {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 7px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-weight: 750;
  font-size: .92rem;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.hero .panel { align-self: center; }
.panel-head {
  padding: 22px 22px 0;
}
.panel-head h2 { font-size: 1.45rem; margin-bottom: 6px; }
.panel-head p { color: var(--muted); font-size: .96rem; margin: 0; }

.lead-form {
  padding: 20px 22px 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 750; font-size: .9rem; color: #243149; }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbd5e1;
  border-radius: 7px;
  padding: 10px 11px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
textarea { min-height: 84px; resize: vertical; }
.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.35;
}
.consent input { min-height: auto; margin-top: 2px; }
.consent label {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 500;
}
.form-note { font-size: .78rem; color: var(--muted); margin-top: 10px; }
.form-success {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 7px;
  background: #eaf7ef;
  color: #135d33;
  font-weight: 750;
}

section { padding: 76px 0; }
.section-soft { background: var(--soft); }
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-kicker {
  color: var(--blue);
  font-weight: 850;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 10px;
}
.section-title {
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.section-intro {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 0 28px;
}
.section-dark .section-intro { color: #dbe9f8; }

.grid {
  display: grid;
  gap: 18px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); }
.card a { color: var(--blue); font-weight: 800; text-decoration: none; }
.selector-card {
  display: flex;
  flex-direction: column;
  min-height: 168px;
  justify-content: space-between;
  text-decoration: none;
  border-top: 5px solid var(--blue);
}
.selector-card strong { color: var(--navy); font-size: 1.15rem; }
.selector-card span { color: var(--muted); }
.selector-card:hover { border-top-color: var(--orange); box-shadow: var(--shadow); }

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .34em;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: var(--green);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: .57em;
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.steps {
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: 62px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.proof {
  min-height: 190px;
  border: 1px dashed #aab7c7;
  border-radius: 8px;
  background: repeating-linear-gradient(135deg, #f8fafc, #f8fafc 12px, #eef3f8 12px, #eef3f8 24px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 18px;
}
.proof strong { color: var(--navy); }
.proof span { color: var(--muted); font-size: .92rem; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(330px, .62fr);
  gap: 36px;
  align-items: start;
}
.page-hero {
  background: linear-gradient(135deg, var(--navy), #173e66);
  color: var(--white);
  padding: 70px 0;
}
.page-hero h1 { color: var(--white); font-size: clamp(2.3rem, 5vw, 4rem); max-width: 840px; }
.page-hero p { color: #e7f2ff; font-size: 1.14rem; max-width: 800px; }
.breadcrumbs {
  font-size: .88rem;
  color: #d5e8fb;
  margin-bottom: 14px;
}
.breadcrumbs a { color: #ffffff; text-decoration: none; }

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item button {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  text-align: left;
  font: inherit;
  font-weight: 850;
  color: var(--navy);
  cursor: pointer;
}
.faq-answer {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
}
.faq-item.open .faq-answer { display: block; }

.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 42px;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { margin: 0; color: #dbe9f8; }

.site-footer {
  background: #07182c;
  color: #d9e7f5;
  padding: 54px 0 86px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, .7fr));
  gap: 28px;
}
.site-footer h3 { color: var(--white); font-size: 1rem; }
.site-footer a { color: #d9e7f5; text-decoration: none; }
.site-footer ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 8px; }
.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: .86rem;
  color: #aac0d6;
}
.sticky-call {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  display: none;
}
.sticky-call a { width: 100%; }

@media (max-width: 920px) {
  .topbar { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav { min-height: 66px; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .header-actions .btn-secondary { display: none; }
  .hero .wrap, .split { grid-template-columns: 1fr; }
  .hero .wrap { min-height: auto; padding: 44px 0 38px; }
  .trust-strip, .grid-4, .grid-3, .proof-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 28px; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 24px, 1180px); }
  section { padding: 54px 0; }
  .hero h1, .page-hero h1 { font-size: 2.35rem; }
  .hero-actions .btn { width: 100%; }
  .trust-strip, .grid-2, .grid-3, .grid-4, .proof-grid, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .header-actions .btn-phone { display: none; }
  .sticky-call { display: block; }
  .panel-head, .lead-form { padding-left: 16px; padding-right: 16px; }
  .card { padding: 20px; }
}
