@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #102d3d;
  --text: #28485d;
  --green: #08764e;
  --green-dark: #075a43;
  --mint: #eaf7f1;
  --mint-2: #f2faf7;
  --line: #cfe4dc;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }

.header { background: #fff; }
.header__inner {
  min-height: 122px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { display: block; text-decoration: none; flex: 1; }
.brand img { display: block; width: min(330px, 100%); height: auto; }
.header__contacts {
  display: grid;
  gap: 5px;
  font-size: 15px;
  color: #17445d;
  margin-left: auto;
}
.header__contacts a { text-decoration: none; }
.header__contacts a:first-child::before { content: "⌕"; color: var(--green); margin-right: 10px; }
.header__contacts a:last-child::before { content: "✉"; color: var(--green); margin-right: 10px; }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 355px;
  align-items: stretch;
}
.hero__content { padding: 32px 35px 36px 0; }
.status {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: #dff2e8;
  color: #086346;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
h1 {
  margin: 18px 0 17px;
  color: var(--ink);
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 1.06;
  letter-spacing: -.045em;
}
.hero p { max-width: 575px; font-size: 17px; }
.hero__image {
  overflow: hidden;
  min-height: 355px;
  border-radius: 0;
  background: #f3f6f5;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
  filter: saturate(.9);
}

.notice {
  margin-top: 22px;
  padding: 24px 38px;
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 30px;
  align-items: center;
  background: var(--mint-2);
  border-radius: 14px;
}
.notice__icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: #d9f0e5;
  color: var(--green);
  display: grid; place-items: center;
  font-size: 34px;
  border: 1px solid #c4e5d7;
}
.notice h2 { margin: 0 0 3px; color: var(--green-dark); font-size: 20px; }
.notice p { margin: 0; font-size: 15px; }

.section { padding-top: 34px; }
.section-title {
  margin: 0 0 25px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing: -.035em;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: 70px;
}
.about-copy p { margin: 0 0 20px; font-size: 16px; }
.facts {
  padding-left: 40px;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 22px;
}
.fact { display: grid; grid-template-columns: 58px 1fr; gap: 18px; }
.fact__icon, .benefit__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #e2f4ec;
  color: var(--green);
  display: grid; place-items: center;
  font-size: 25px;
  font-weight: 700;
}
.fact h3, .benefit h3 { margin: 0 0 5px; color: #17445b; font-size: 15px; line-height: 1.35; }
.fact p { margin: 0; font-size: 13px; line-height: 1.45; }

.benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.benefit {
  padding: 0 20px;
  border-left: 1px solid var(--line);
}
.benefit:first-child { border-left: 0; padding-left: 0; }
.benefit__icon { margin-bottom: 13px; }
.benefit p { margin: 0; font-size: 12px; line-height: 1.55; }

.bottom-grid {
  margin-top: 38px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 1.15fr .9fr 1fr;
  border-top: 1px solid var(--line);
}
.bottom-card {
  padding: 0 26px;
  border-left: 1px solid var(--line);
}
.bottom-card:first-child { border-left: 0; padding-left: 0; }
.bottom-card__title { display: flex; gap: 12px; align-items: flex-start; color: var(--green); }
.bottom-card__title h2 { margin: 0; color: #17445b; font-size: 16px; line-height: 1.35; }
.bottom-card p { font-size: 12px; line-height: 1.55; margin: 14px 0; }
.bottom-card a { color: var(--green-dark); font-weight: 800; text-decoration: none; }
.label { color: #4b6676; }
.partners { display: flex; align-items: center; gap: 16px; font-weight: 800; font-size: 14px; }
.partners--black { color: #111; }

.footer { margin-top: 36px; padding: 20px 0; border-top: 1px solid #e3eee9; color: #6b7e89; font-size: 12px; }
.footer .container { display: flex; justify-content: space-between; }

@media (max-width: 900px) {
  .header__inner { flex-wrap: wrap; padding: 20px 0; }
  .brand { flex-basis: 100%; }
  .header__contacts { margin-left: auto; }
  .hero { grid-template-columns: 1fr; }
  .hero__content { padding-right: 0; }
  .hero__image { height: 420px; border-radius: 0 0 0 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .facts { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 25px; }
  .benefits { grid-template-columns: repeat(2, 1fr); gap: 25px 0; }
  .benefit:nth-child(3) { border-left: 0; padding-left: 0; }
  .bottom-grid { grid-template-columns: 1fr; gap: 25px; }
  .bottom-card { border-left: 0; border-top: 1px solid var(--line); padding: 25px 0 0; }
  .bottom-card:first-child { border-top: 0; padding-top: 0; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 30px, 1120px); }
  .header__inner { display: grid; grid-template-columns: 1fr auto; gap: 18px; }
  .brand { grid-column: 1 / -1; }
  .brand img { width: 270px; }
  .brand__caption { margin-left: 45px; font-size: 12px; }
  .header__contacts { font-size: 13px; display:none;}
  .max-badge { min-width: auto; padding-left: 14px; }
  h1 { font-size: 38px; }
  .hero p { font-size: 15px; }
  .hero__image { height: 330px; border-radius: 0; }
  .notice { grid-template-columns: 1fr; padding: 22px; }
  .notice__icon { width: 60px; height: 60px; font-size: 26px; }
  .section-title { font-size: 27px; }
  .benefits { grid-template-columns: 1fr; }
  .benefit, .benefit:first-child, .benefit:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 22px 0 0;
  }
  .benefit:first-child { border-top: 0; padding-top: 0; }
  .footer .container { display: block; }
}
