* {
  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-about {
  margin-bottom: 3rem;
}
.hero-about 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-about p {
  font-size: 1.05rem;
  color: #3c5a64;
  max-width: 700px;
  border-left: 3px solid #2c6e9e;
  padding-left: 1.2rem;
}

/* карточки */
.about-card {
  background: #ffffff;
  border-radius: 32px;
  box-shadow:
    0 20px 35px -12px rgba(0, 0, 0, 0.05),
    0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid #eef2f6;
  overflow: hidden;
  margin-bottom: 2rem;
}

.card-header {
  padding: 1.8rem 2rem 0.8rem 2rem;
  border-bottom: 1px solid #edf2f7;
  background: #fefefe;
}
.card-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a4d5f;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card-body {
  padding: 1.5rem 2rem 2rem 2rem;
}

.section-title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #cf2e2e;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1.5px solid #ffe1e1;
  padding-bottom: 0.3rem;
}

.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}
@media (max-width: 768px) {
  .grid-2col {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 1.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #2c6e9e;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.stat-desc {
  font-size: 0.85rem;
  color: #406d7a;
  font-weight: 500;
  margin-top: 0.3rem;
}

.value-item {
  background: #fafdff;
  border-radius: 24px;
  padding: 1rem 1.2rem;
  border: 1px solid #eef3fa;
  transition: all 0.2s;
  height: 100%;
}
.value-item:hover {
  background: #ffffff;
  border-color: #d0e2ec;
  box-shadow: 0 6px 12px -8px rgba(0, 0, 0, 0.05);
}
.value-title {
  font-weight: 700;
  font-size: 1rem;
  color: #174e5e;
  margin-bottom: 0.4rem;
}
.value-text {
  font-size: 0.88rem;
  color: #3c6470;
  line-height: 1.4;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.chip {
  background: #edf4f8;
  padding: 0.3rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #1f6475;
}

.quote-block {
  background: #f2f8fc;
  border-radius: 28px;
  padding: 1.8rem 2rem;
  margin-top: 0.5rem;
  border-left: 5px solid #2c6e9e;
  font-style: normal;
}
.quote-text {
  font-size: 1rem;
  font-weight: 500;
  color: #1a4d5f;
  margin-bottom: 0.6rem;
}
.separator-light {
  height: 1px;
  background: linear-gradient(90deg, #e2edf4, transparent);
  margin: 1.5rem 0;
}
.inline-highlight {
  font-weight: 600;
  color: #cf2e2e;
}
.vision-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1f4b58;
}
.grecaptcha-badge {
  opacity: 0 !important;
  visibility: hidden !important;
}
