* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background: #f7f6f3;
}

a { color: inherit; text-decoration: none; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e6e3dc;
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #d5f6de;
  color: #047857;
  font-size: 22px;
}

.brand strong { display: block; font-size: 18px; }
.brand span { display: block; color: #6b7280; font-size: 13px; }

.menu {
  display: flex;
  gap: 28px;
  font-weight: 700;
  font-size: 14px;
}

.menu a:hover { color: #047857; }

.hero {
  background: linear-gradient(135deg, #064e3b 0%, #047857 58%, #365314 100%);
  color: white;
  padding: 92px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 80px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  margin-bottom: 26px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 70px);
  line-height: .98;
  letter-spacing: -2px;
}

.hero p {
  max-width: 640px;
  font-size: 22px;
  line-height: 1.45;
  color: #ecfdf5;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  padding: 17px 24px;
  border-radius: 18px;
  font-weight: 800;
}

.btn.primary {
  color: #064e3b;
  background: white;
}

.btn.outline {
  border: 1px solid rgba(255,255,255,.55);
}

.notice-card {
  background: white;
  color: #111827;
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

.notice-card h2 {
  margin: 0 0 18px;
  font-size: 34px;
}

.notice-card p { line-height: 1.55; }

.notice-item {
  background: #ecfdf5;
  border-radius: 18px;
  padding: 18px;
  margin-top: 16px;
}

.notice-item strong,
.notice-item span {
  display: block;
}

.notice-item span {
  margin-top: 8px;
  color: #64748b;
}

.features {
  padding: 72px 0;
}

.cards-3,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card,
.news-card,
.form,
.requisites {
  background: white;
  border: 1px solid #e8e5dd;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(17,24,39,.06);
}

.card {
  padding: 34px;
}

.icon { font-size: 32px; margin-bottom: 20px; }

.card h3,
.news-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.card p,
.news-card p,
.docs-grid p,
.payments p {
  color: #5f6b7a;
  line-height: 1.6;
}

.section { padding: 74px 0; }
.white { background: white; }

.eyebrow {
  color: #047857;
  font-weight: 800;
}

.eyebrow.light { color: #a7f3d0; }

.section h2,
.docs-grid h2,
.payments h2,
.contacts-grid h2 {
  font-size: 38px;
  margin: 12px 0 18px;
}

.section-head {
  margin-bottom: 34px;
}

.news-card {
  padding: 30px;
  transition: transform .2s, box-shadow .2s;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(17,24,39,.10);
}

.news-card span {
  color: #047857;
  font-weight: 700;
  font-size: 14px;
}

.docs-grid,
.payments-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.docs-list {
  display: grid;
  gap: 14px;
}

.docs-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(17,24,39,.05);
  font-weight: 700;
}

.payments {
  padding: 74px 0;
  background: #064e3b;
  color: white;
}

.payments p { color: #d1fae5; }

.requisites {
  color: #111827;
  padding: 28px;
}

.requisites div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #ececec;
}

.requisites div:last-child { border-bottom: 0; }

.requisites span { color: #6b7280; }

.contact-line {
  margin-top: 26px;
  display: grid;
  gap: 8px;
}

.contact-line span { color: #5f6b7a; line-height: 1.55; }

.form {
  padding: 30px;
  display: grid;
  gap: 16px;
}

.form h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #d8d5ce;
  border-radius: 18px;
  padding: 16px;
  font: inherit;
  outline: none;
}

textarea { min-height: 130px; resize: vertical; }

input:focus,
textarea:focus { border-color: #047857; }

button {
  border: 0;
  border-radius: 18px;
  padding: 17px 22px;
  background: #047857;
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

footer {
  background: white;
  border-top: 1px solid #e6e3dc;
  padding: 28px 0;
  color: #6b7280;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 860px) {
  .menu { display: none; }
  .hero-grid,
  .docs-grid,
  .payments-grid,
  .contacts-grid,
  .cards-3,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding: 58px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; }
}
