/*
  Palette demandée:
  Небесно-голубой — #B8E3FF
  Белый — #FFFFFF
  Светло-серый — #EDF2F7
  Синий акцент — #2563EB
*/
:root {
  --sky: #B8E3FF;
  --white: #FFFFFF;
  --gray: #EDF2F7;
  --blue: #2563EB;
  --blue-dark: #1E40AF;
  --text: #102033;
  --muted: #5F6F83;
  --line: rgba(37, 99, 235, 0.14);
  --shadow: 0 18px 50px rgba(37, 99, 235, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(184, 227, 255, 0.95), transparent 38%),
    linear-gradient(180deg, #F8FCFF 0%, var(--gray) 48%, #F9FBFF 100%);
  line-height: 1.65;
}

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 24px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  color: var(--blue-dark);
  background: linear-gradient(135deg, var(--white), #EAF7FF);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.12);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.main {
  padding: 44px 0 70px;
}


.cards__title {
  margin: 0 0 0px;
  color: var(--text);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}


.cards {
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.card {
  display: grid;
  grid-template-columns: 150px minmax(180px, 1fr) 110px minmax(240px, 1.2fr) 170px;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.32);
  box-shadow: var(--shadow);
}

.card__img {
  display: grid;
  place-items: center;
  min-height: 86px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gray), var(--white));
  border: 1px solid var(--line);
}

.card__img img {
  width: 112px;
  height: auto;
}

.card__bonus .title {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card__bonus .text {
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}

.card__rate {
  display: grid;
  justify-items: start;
  gap: 6px;
  color: var(--text);
  font-weight: 900;
}

.stars {
  display: flex;
  gap: 3px;
}

.stars img {
  width: 18px;
  height: 18px;
}

.card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.card__list li {
  position: relative;
  padding-left: 21px;
}

.card__list li + li {
  margin-top: 6px;
}

.card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

.card__promo {
  display: flex;
  align-items: center;
}

.card__btn {
  width: 100%;
  border: 0;
  border-radius: 16px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;

  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #60A5FA);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.24);
}

.content {
  margin-top: 30px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.content h2 {
  margin: 0 0 15px;
  color: var(--text);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.content__image {
  width: 100%;
  margin: 22px 0;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.table-wrap {
  overflow-x: auto;
  margin: 26px 0;
  border-radius: 20px;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  background: var(--white);
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  color: var(--muted);
}

tr:last-child td {
  border-bottom: 0;
}

.payments {
  display: grid;
  grid-template-columns: repeat(8, minmax(86px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.payment__item {
  display: grid;
  place-items: center;
  min-height: 64px;
  padding: 12px;
  border-radius: 18px;
  background: var(--gray);
  border: 1px solid var(--line);
}

.payment__item img {
  max-width: 78px;
  max-height: 38px;
}

.footer {
  padding: 34px 0;
  color: #3C4A5E;
  background: linear-gradient(180deg, #EAF7FF, var(--sky));
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0 auto 12px;
  max-width: 980px;
  text-align: center;
  font-size: 14px;
}

.footer__copy {
  color: var(--blue-dark);
  font-weight: 900;
}

@media (max-width: 1060px) {
  .card {
    grid-template-columns: 130px 1fr 90px;
  }

  .card__list,
  .card__promo {
    grid-column: 1 / -1;
  }

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

  .payments {
    grid-template-columns: repeat(4, minmax(86px, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .header {
    padding: 12px 0;
  }

  .logo {
    width: 100%;
    justify-content: center;
  }

  .main {
    padding: 24px 0 44px;
  }
.card {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .card__img {
    min-height: 70px;
    padding: 8px;
    border-radius: 16px;
  }

  .card__img img {
    width: 84px;
  }

  .card__bonus .text {
    font-size: 20px;
  }

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

  .content {
    padding: 22px 16px;
    border-radius: 26px;
  }

  .payments {
    grid-template-columns: repeat(2, minmax(86px, 1fr));
  }
}


.info-table th:first-child {
  border-top-left-radius: 18px;
}

.info-table th:last-child {
  border-top-right-radius: 18px;
}

@media (max-width: 680px) {
  .table-wrap {
    overflow: visible;
    border: 0;
    margin: 22px 0;
  }

  .info-table,
  .info-table thead,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table {
    min-width: 0;
    background: transparent;
  }

  .info-table thead {
    display: none;
  }

  .info-table tbody {
    display: grid;
    gap: 14px;
  }

  .info-table tr {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
  }

  .info-table td {
    padding: 14px 16px 14px 126px;
    border-bottom: 1px solid var(--line);
    position: relative;
    min-height: 54px;
    font-size: 15px;
  }

  .info-table td:last-child {
    border-bottom: 0;
  }

  .info-table td::before {
    content: attr(data-label);
    position: absolute;
    left: 16px;
    top: 14px;
    width: 96px;
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
}
