:root {
  --navy: #0d2b57;
  --navy-deep: #081c3a;
  --blue: #1e5eb8;
  --blue-bright: #2f7de0;
  --gold: #c9a227;
  --gold-soft: #e5c766;
  --red: #c0392b;
  --ink: #1c2733;
  --slate: #52616e;
  --line: #dde5ec;
  --paper: #f5f8fb;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 2px 6px rgba(13, 43, 87, .08), 0 12px 32px rgba(13, 43, 87, .10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.topbar {
  background: var(--navy-deep);
  color: #cfe0f5;
  font-size: .85rem;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.topbar a { color: var(--gold-soft); text-decoration: none; font-weight: 600; }
.topbar a:hover { text-decoration: underline; }

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(13, 43, 87, .06);
}
.site .wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  margin-right: auto;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold), 0 2px 6px rgba(0,0,0,.15);
}
.brand .name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.15;
}
.brand .tag {
  font-size: .72rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .09em;
}

nav.primary { display: flex; align-items: center; gap: 4px; }
nav.primary a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
  padding: 8px 14px;
  border-radius: 8px;
}
nav.primary a:hover { background: var(--paper); color: var(--blue); }
nav.primary a.active { color: var(--blue); background: var(--paper); }
nav.primary a.cta {
  background: var(--red);
  color: var(--white);
  margin-left: 8px;
}
nav.primary a.cta:hover { background: #a93226; color: var(--white); }

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--navy);
  cursor: pointer;
}

/* ---------- Hero (homepage) ---------- */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(47, 125, 224, .55), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(30, 94, 184, .5), transparent 55%),
    linear-gradient(150deg, var(--navy-deep), var(--navy) 55%, #123a75);
  color: var(--white);
  padding: 72px 0 84px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
}
.hero .kicker,
.page-hero .kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(229, 199, 102, .45);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  max-width: 17em;
  font-weight: 800;
}
.hero h1 em { font-style: normal; color: var(--gold-soft); }
.hero p.lead,
.page-hero p.lead {
  margin-top: 18px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #d9e6f7;
  max-width: 44em;
}
.hero .actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    radial-gradient(700px 300px at 90% -20%, rgba(47, 125, 224, .5), transparent 60%),
    linear-gradient(150deg, var(--navy-deep), var(--navy) 65%, #123a75);
  color: var(--white);
  padding: 48px 0 56px;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft), var(--gold));
}
.page-hero h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
}
.page-hero .kicker { margin-bottom: 16px; }
.page-hero p.lead { margin-top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 1rem;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost { color: var(--white); border: 1.5px solid rgba(255,255,255,.55); background: transparent; }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #a93226; }

/* ---------- Trust strip ---------- */
.trust { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 26px;
  padding-bottom: 26px;
}
.trust .item { text-align: center; }
.trust .big {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
}
.trust .small { font-size: .85rem; color: var(--slate); font-weight: 600; }

/* ---------- Sections ---------- */
section.block { padding: 72px 0; }
section.block.tight { padding: 56px 0; }
.block h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--navy);
  letter-spacing: -.015em;
  margin-bottom: 10px;
}
.block .sub { color: var(--slate); max-width: 46em; margin-bottom: 40px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card.gold { border-top-color: var(--gold); }
.card.red { border-top-color: var(--red); }
.card .icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: var(--paper);
  margin-bottom: 16px;
}
.card h3 { color: var(--navy); font-size: 1.2rem; margin-bottom: 10px; }
.card ul { list-style: none; margin: 0 0 18px; flex: 1; }
.card li {
  padding: 5px 0 5px 26px;
  position: relative;
  color: var(--slate);
  font-size: .95rem;
}
.card li::before {
  content: "\2713";
  position: absolute;
  left: 2px;
  color: var(--gold);
  font-weight: 800;
}
.card a.more { font-weight: 700; text-decoration: none; font-size: .95rem; }
.card a.more:hover { text-decoration: underline; }
.card p { color: var(--slate); font-size: .95rem; margin-bottom: 14px; }

/* ---------- Prose (text-heavy sections) ---------- */
.prose { max-width: 70ch; }
.prose p { margin-bottom: 16px; }
.prose p.big { font-size: 1.08rem; color: var(--ink); }
.prose h2 { margin-top: 36px; }

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: start;
}

/* ---------- About band ---------- */
.about { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about .wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}
blockquote.pull {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  padding: 24px 26px;
  color: var(--slate);
  font-size: 1.02rem;
}
blockquote.pull strong { color: var(--navy); display: block; margin-top: 12px; font-size: .9rem; }

/* ---------- Checklist columns ---------- */
.checklist {
  list-style: none;
  columns: 2;
  column-gap: 40px;
  margin: 18px 0 0;
}
.checklist li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--slate);
  break-inside: avoid;
}
.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 2px;
  color: var(--gold);
  font-weight: 800;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
}
.form-card h2 { font-size: 1.35rem; color: var(--navy); margin-bottom: 6px; }
.form-card .note { color: var(--slate); font-size: .92rem; margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.field label .req { color: var(--red); }
.field input,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(47, 125, 224, .15);
}
.field textarea { resize: vertical; min-height: 140px; }
.captcha-slot {
  border: 1.5px dashed var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--slate);
  font-size: .88rem;
  text-align: center;
  padding: 22px 14px;
  margin-bottom: 18px;
}

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  margin-bottom: 20px;
}
.info-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card p { color: var(--slate); font-size: .95rem; }
.info-card a.big-link {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  margin-top: 4px;
}
.info-card a.big-link:hover { color: var(--blue); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 8px; }
.cta-band p { color: #d9e6f7; margin-bottom: 26px; }
.cta-band .phone {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--gold-soft);
  text-decoration: none;
  letter-spacing: .01em;
}
.cta-band .actions { margin-top: 22px; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--navy-deep);
  color: #9db4d1;
  padding: 48px 0 32px;
  font-size: .92rem;
}
footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
footer h4 {
  color: var(--white);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}
footer a { color: #c4d6ee; text-decoration: none; }
footer a:hover { color: var(--gold-soft); }
footer ul { list-style: none; }
footer li { padding: 4px 0; }
footer .legal {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
}

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .cards, .cards.two { grid-template-columns: 1fr; }
  .about .wrap, .split, .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust .wrap { grid-template-columns: repeat(2, 1fr); }
  footer .cols { grid-template-columns: 1fr 1fr; }
  .checklist { columns: 1; }
}

@media (max-width: 720px) {
  .menu-btn { display: block; }
  nav.primary {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(13,43,87,.14);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 16px;
  }
  nav.primary.open { display: flex; }
  nav.primary a { padding: 12px 14px; }
  nav.primary a.cta { margin-left: 0; text-align: center; margin-top: 6px; }
  .topbar .area { display: none; }
  .brand .name { font-size: 1.05rem; }
  .brand .tag { font-size: .6rem; letter-spacing: .06em; }
  .brand img { width: 44px; height: 44px; }
  .hero { padding: 52px 0 64px; }
  .page-hero { padding: 40px 0 48px; }
  footer .cols { grid-template-columns: 1fr; }
  footer .legal { justify-content: center; text-align: center; }
}
