:root {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: #111a29;
  background: #ffffff;
  font-synthesis: none;
  --ink: #111a29;
  --muted: #526176;
  --blue: #155eef;
  --teal: #0c7c72;
  --line: #d9e0e9;
  --surface: #f4f7fa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
}

.header-content,
.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 23px;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.header-note {
  color: #526176;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(820px, 88vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #eef2f6;
  background-image: url("assets/expert-consultation.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-copy {
  width: min(610px, 54%);
  padding: 120px 0 74px;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--blue);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 23px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
}

h1 {
  margin: 0;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 850;
  letter-spacing: 0;
}

.lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: #425168;
  font-size: 21px;
  line-height: 1.5;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  margin-top: 38px;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #0c7c72;
  border-radius: 6px;
  color: #075f57;
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.text-link {
  padding: 10px 0;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.text-link:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(21, 94, 239, 0.32);
  outline-offset: 4px;
}

.process {
  padding: 72px 0 76px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: end;
  gap: 32px;
  margin-bottom: 42px;
}

.process-heading h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  letter-spacing: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-item {
  min-width: 0;
  padding: 8px 34px 4px;
  border-left: 1px solid var(--line);
}

.process-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.step-number {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.process-item h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.site-footer {
  padding: 23px 0;
  color: #697689;
  background: #fff;
  font-size: 13px;
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 32px, 720px);
  }

  .hero {
    min-height: 820px;
    align-items: flex-end;
    background-position: 66% center;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(248, 250, 252, 0.72);
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 60px;
  }

  h1 {
    font-size: 58px;
  }

  .process-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-item,
  .process-item:first-child {
    padding: 23px 0;
    border: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
  }

  .header-note {
    display: none;
  }

  .brand {
    font-size: 21px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .hero {
    min-height: 740px;
  }

  h1 {
    font-size: 43px;
  }

  .lead {
    font-size: 18px;
  }

  .status-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .process {
    padding: 54px 0;
  }

  .process-heading h2 {
    font-size: 31px;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
