:root {
  --ink: #131a24;
  --muted: #4b5563;
  --blue: #0877c9;
  --blue-dark: #006bb8;
  --blue-soft: #e8f2fb;
  --cyan: #00b5d8;
  --green: #60c58b;
  --navy: #09082f;
  --navy-card: #232448;
  --line: #d8e1ea;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 14px;
  --shadow-soft: 0 20px 45px rgba(19, 46, 91, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f4f6f8;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  line-height: 1.42;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  width: min(1200px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 35px rgba(22, 35, 54, 0.12);
}

.section {
  padding-right: 22px;
  padding-left: 22px;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  letter-spacing: -0.018em;
}

.intro {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 50px;
  align-items: start;
  padding-top: 30px;
}

.intro h1 {
  margin-bottom: 26px;
  font-size: 45px;
  line-height: 1;
  font-weight: 800;
}

.intro__accent {
  position: relative;
  max-width: 330px;
  margin: 0;
  padding-left: 13px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.intro__accent::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 3px;
  background: #ff4d25;
  content: "";
}

.definition-card {
  min-height: 180px;
  padding: 26px 30px 22px;
  border-radius: 24px;
  background: #e1eaf3;
  font-size: 14px;
  line-height: 1.52;
}

.definition-card p {
  margin-bottom: 8px;
}

.definition-card strong {
  display: block;
  color: #0b3d68;
  font-size: 13px;
  text-align: right;
}

.brand {
  padding-top: 105px;
  padding-bottom: 108px;
  text-align: center;
}

.brand__logo {
  width: 365px;
  height: 108px;
  margin: 0 auto -2px;
  object-fit: contain;
}

.brand__subtitle {
  margin-bottom: 28px;
  font-size: 20px;
  line-height: 1.15;
}

.brand p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 600;
}

.benefits {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: start;
  padding-bottom: 50px;
}

.benefits h2 {
  margin-bottom: 30px;
  font-size: 31px;
  line-height: 1.12;
}

.benefits__number {
  display: inline-block;
  margin-right: 8px;
  font-size: 55px;
  font-weight: 400;
  line-height: 0.7;
  vertical-align: -7px;
}

.benefit-list {
  display: grid;
  gap: 20px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 14px;
}

.benefit-item h3 {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.25;
}

.benefit-item p {
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.52;
}

.check-icon {
  position: relative;
  display: grid;
  width: 21px;
  height: 21px;
  margin-top: 2px;
  place-items: center;
  color: transparent;
  background:
    linear-gradient(#67b4f4, #67b4f4) left top / 7px 1.5px no-repeat,
    linear-gradient(#67b4f4, #67b4f4) left top / 1.5px 7px no-repeat,
    linear-gradient(#67b4f4, #67b4f4) right top / 7px 1.5px no-repeat,
    linear-gradient(#67b4f4, #67b4f4) right top / 1.5px 7px no-repeat,
    linear-gradient(#67b4f4, #67b4f4) left bottom / 7px 1.5px no-repeat,
    linear-gradient(#67b4f4, #67b4f4) left bottom / 1.5px 7px no-repeat,
    linear-gradient(#67b4f4, #67b4f4) right bottom / 7px 1.5px no-repeat,
    linear-gradient(#67b4f4, #67b4f4) right bottom / 1.5px 7px no-repeat;
}

.check-icon::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--green);
  content: "✓";
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}


.benefits__visual {
  margin: 2px 0 0;
  padding: 0;
  border-radius: 17px;
  overflow: hidden;
  background: #dcecf8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 25px;
  border: 2px solid var(--blue);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 7px 15px rgba(0, 119, 202, 0.15);
}

.button--primary:hover {
  background: var(--blue-dark);
}

.button--outline {
  color: var(--blue);
  background: var(--white);
}

.partner {
  margin: 0 22px;
  padding: 43px 22px 35px;
  border-radius: 31px;
  color: var(--white);
  background: linear-gradient(115deg, #151442 0%, #070628 100%);
  text-align: center;
}

.partner h2 {
  margin-bottom: 38px;
  font-size: 28px;
  line-height: 1.12;
}

.partner h3 {
  margin-bottom: 24px;
  font-size: 17px;
}

.partner__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.partner__cards article {
  display: grid;
  min-height: 112px;
  padding: 17px 20px;
  place-items: center;
  border: 1.5px solid var(--cyan);
  border-radius: 14px;
  background: rgba(59, 60, 103, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.partner > p {
  max-width: 1060px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.45;
}

.connection {
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: 55px;
  align-items: start;
  padding-top: 58px;
  padding-bottom: 98px;
}

.package-card {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.steps h2 {
  margin-bottom: 35px;
  font-size: 31px;
  line-height: 1.08;
}

.timeline {
  position: relative;
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0 0 0 42px;
  list-style: none;
  counter-reset: step;
}

.timeline::before {
  position: absolute;
  top: 12px;
  bottom: 13px;
  left: 12px;
  width: 1.5px;
  background: #75b9f1;
  content: "";
}

.timeline li {
  position: relative;
  min-height: 26px;
  font-size: 13px;
  line-height: 1.38;
  counter-increment: step;
}

.timeline li::before {
  position: absolute;
  top: -2px;
  left: -42px;
  z-index: 1;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1.5px solid #59aaf0;
  border-radius: 50%;
  color: #4f9fe9;
  background: var(--white);
  content: counter(step);
  font-size: 12px;
  font-weight: 700;
}

.steps__button {
  margin-top: 32px;
}

.cta {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 65px;
  align-items: end;
  padding-bottom: 92px;
}

.cta h2 {
  margin-bottom: 31px;
  font-size: 31px;
  line-height: 1.1;
}

.cta p {
  max-width: 735px;
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 1.45;
}

.cta .actions {
  margin-top: 26px;
}

.partner-code {
  padding-bottom: 19px;
  text-align: center;
}

.partner-code strong {
  display: block;
  color: #666;
  font-size: 83px;
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.partner-code span {
  display: block;
  margin-top: 10px;
  font-size: 11px;
}

.footer {
  position: relative;
  padding-top: 24px;
  padding-bottom: 18px;
  text-align: center;
}

.footer::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 160px;
  height: 1px;
  background: #d4d7da;
  content: "";
  transform: translateX(-50%);
}

.footer p {
  margin-bottom: 8px;
  font-size: 10px;
}

@media (max-width: 900px) {
  .intro,
  .benefits,
  .connection,
  .cta {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 28px;
  }

  .intro__accent,
  .cta p {
    max-width: none;
  }

  .brand {
    padding-top: 70px;
    padding-bottom: 75px;
  }

  .benefits__visual {
    width: min(360px, 100%);
    margin: 0 auto;
    order: -1;
  }

  .partner__cards {
    grid-template-columns: 1fr;
  }

  .connection {
    gap: 42px;
  }

  .package-card {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .partner-code {
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .intro {
    padding-top: 22px;
  }

  .intro h1 {
    font-size: 38px;
  }

  .definition-card {
    padding: 22px 20px;
  }

  .brand__logo {
    width: 290px;
    height: auto;
  }

  .brand p br,
  .partner h2 br,
  .steps h2 br {
    display: none;
  }

  .benefits h2,
  .steps h2,
  .cta h2 {
    font-size: 27px;
  }

  .actions {
    display: grid;
    gap: 12px;
  }

  .button {
    width: 100%;
  }

  .partner {
    margin-right: 12px;
    margin-left: 12px;
    padding: 34px 16px 28px;
    border-radius: 24px;
  }

  .partner h2 {
    font-size: 23px;
  }

  .connection {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .cta {
    gap: 35px;
    padding-bottom: 72px;
  }

  .partner-code strong {
    font-size: 64px;
  }
}

@media print {
  body {
    background: #fff;
  }

  .page {
    box-shadow: none;
  }

  .button {
    break-inside: avoid;
  }
}
