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

body {
  background-color: #f8fafd;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Helvetica,
    sans-serif;
  color: #0a1927;
  line-height: 1.45;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}
/* Хлебные крошки */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  margin-bottom: 2rem;
  color: #5a6e7c;
}
.breadcrumb a {
  color: #2c6e9e;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: #0f4c6f;
  text-decoration: underline;
}
.breadcrumb span:last-child {
  color: #1f3b4c;
  font-weight: 500;
}

/* hero */
.hero-history {
  margin-bottom: 3rem;
}
.hero-history h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(to right, #1a4d5f, #2c7a6e);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}
.hero-history p {
  font-size: 1.05rem;
  color: #3c5a64;
  max-width: 700px;
  border-left: 3px solid #cf2e2e;
  padding-left: 1.2rem;
}

/* таймлайн (вертикальная лента) */
.timeline {
  position: relative;
  margin: 2rem 0 2rem 0;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #cf2e2e, #2c7a6e);
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.timeline-dot {
  position: absolute;
  left: -0.58rem;
  top: 0.2rem;
  width: 1rem;
  height: 1rem;
  background: #cf2e2e;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #f0f4f9;
  z-index: 2;
}

.timeline-year {
  font-size: 1.4rem;
  font-weight: 800;
  color: #cf2e2e;
  letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
  display: inline-block;
  background: #ffffff;
  padding-right: 1rem;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a4d5f;
  margin-bottom: 0.6rem;
}

.timeline-desc {
  font-size: 0.92rem;
  color: #2c5a66;
  line-height: 1.5;
  max-width: 85%;
  background: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2f6;
}

@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .timeline-desc {
    max-width: 100%;
  }
  .timeline {
    padding-left: 1rem;
  }
  .timeline-item {
    padding-left: 1.2rem;
  }
}

/* карточка с цифрами */
.facts-card {
  background: #ffffff;
  border-radius: 32px;
  border: 1px solid #eef2f6;
  padding: 1.8rem 2rem;
  margin: 2.5rem 0 1.5rem;
  box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.04);
}
.facts-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: center;
}
.fact-item {
  flex: 1;
  min-width: 130px;
}
.fact-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #cf2e2e;
}
.fact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #2c7a6e;
  letter-spacing: 0.5px;
}
.separator-light {
  height: 1px;
  background: linear-gradient(90deg, #e2edf4, transparent);
  margin: 1rem 0;
}
.grecaptcha-badge {
  opacity: 0 !important;
  visibility: hidden !important;
}
