:root {
  --ink: #122033;
  --ink-soft: #3a4a5c;
  --paper: #f4f1ea;
  --white: #fffcf7;
  --cyan: #0e8f9a;
  --cyan-dark: #0a6d76;
  --gold: #c47a2c;
  --line: rgba(18, 32, 51, 0.12);
  --shadow: 0 18px 40px rgba(18, 32, 51, 0.08);
  --radius: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Figtree", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--cyan), #145a78);
  color: white;
  display: grid;
  place-items: center;
  font-family: "Newsreader", serif;
  font-size: 1.15rem;
}

.brand small {
  display: block;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
  background: rgba(14, 143, 154, 0.1);
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.phone-btn:hover {
  background: var(--cyan-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
}

.hero {
  padding: 72px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.kicker {
  color: var(--cyan-dark);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

h1, h2, h3 {
  font-family: "Newsreader", serif;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--cyan);
  color: white;
}

.btn-primary:hover {
  background: var(--cyan-dark);
}

.btn-ghost {
  background: white;
  border-color: var(--line);
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card p {
  color: var(--ink-soft);
}

.phone-big {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 10px 0 18px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.stat {
  background: var(--paper);
  border-radius: 14px;
  padding: 14px;
}

.stat strong {
  display: block;
  font-size: 1.2rem;
}

.section {
  padding: 56px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 180px;
}

.card span {
  display: inline-block;
  margin-bottom: 14px;
  background: rgba(14, 143, 154, 0.12);
  color: var(--cyan-dark);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 999px;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.panel ol,
.panel ul {
  margin: 14px 0 0 18px;
}

.panel li {
  margin: 8px 0;
}

.call-banner {
  background: linear-gradient(135deg, #122033, #145a78);
  color: white;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.call-banner .phone-btn {
  background: white;
  color: var(--ink);
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.page-hero {
  padding: 56px 0 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 28px;
  margin-top: 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner p,
.footer-inner a {
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .hero-grid,
  .steps,
  .contact-grid,
  .cards {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  .call-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .cards,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .header-inner .phone-btn span:last-child {
    display: none;
  }
}
