.home-header {
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-contact-link {
  padding: 8px 12px;
  border-radius: 999px;
  background: #111827;
  color: #ffffff !important;
  font-weight: 700;
}

.home-hero {
  padding: 76px 0;
  background: linear-gradient(135deg, #eef2ff, #ffffff);
  border-bottom: 1px solid #e5e7eb;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 46px;
  align-items: center;
}

.home-hero-content {
  max-width: 760px;
}

.home-hero h1 {
  margin: 0 0 20px;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.home-hero p {
  margin: 0;
  max-width: 680px;
  color: #4b5563;
  font-size: 20px;
  line-height: 1.55;
}

.home-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.home-secondary-link {
  color: #374151;
  font-weight: 700;
}


.home-image-placeholder,
.home-info-image {
  min-height: 360px;
  border: 1px solid #dbe2ea;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(79, 70, 229, 0.16), transparent 32%),
    radial-gradient(circle at 80% 70%, rgba(17, 24, 39, 0.12), transparent 30%),
    #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.placeholder-card {
  width: min(320px, 100%);
  padding: 28px;
  border-radius: 22px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.22);
}

.placeholder-card span {
  display: block;
  margin-bottom: 14px;
  color: #c7d2fe;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.placeholder-card strong {
  display: block;
  font-size: 28px;
  line-height: 1.16;
}

.home-info-section {
  padding: 64px 0;
  background: #ffffff;
}

.home-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 46px;
  align-items: center;
}

.home-info-content h2,
.contact-card h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.home-info-content p,
.contact-card p {
  margin: 0 0 28px;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.65;
}

.info-scheme {
  display: grid;
  gap: 14px;
  width: min(360px, 100%);
}

.info-scheme div {
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

.info-scheme span {
  color: #6b7280;
  font-size: 26px;
  font-weight: 800;
  text-align: center;
}

.home-section {
  padding: 56px 0;
}

.home-section + .home-section {
  border-top: 1px solid #e5e7eb;
}

.home-news-section {
  background: #ffffff;
}

.home-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.home-section-header h2 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.15;
}

.home-section-header p {
  margin: 0;
  max-width: 680px;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.55;
}

.home-section-link {
  color: #374151;
  font-weight: 700;
  white-space: nowrap;
}

.home-contact-section {
  padding: 64px 0;
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 36px;
  padding: 42px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

.contact-details {
  display: grid;
  gap: 18px;
  align-content: center;
}

.contact-details div {
  display: grid;
  gap: 6px;
}

.contact-details span {
  color: #6b7280;
  font-size: 14px;
}

.contact-details a:not(.material-card-link) {
  color: #111827;
  font-size: 18px;
  font-weight: 800;
}

.home-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.home-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .home-hero-grid,
  .home-info-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .home-image-placeholder,
  .home-info-image {
    min-height: 280px;
  }

  .home-section-header,
  .home-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding: 52px 0;
  }

  .home-hero h1 {
    font-size: 36px;
  }

  .home-hero p {
    font-size: 18px;
  }

  .home-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-info-content h2,
  .contact-card h2 {
    font-size: 32px;
  }

  .contact-card {
    padding: 28px;
  }
}