.info-main {
  min-height: 70vh;
  padding-top: var(--header-height);
}

.info-hero {
  padding-block: 88px 72px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 169, 232, 0.16), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fd 100%);
}

.info-hero-inner {
  max-width: 850px;
}

.info-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5.8vw, 5rem);
  line-height: 1.02;
}

.info-hero p:last-child {
  max-width: 740px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.info-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  align-items: start;
  gap: 70px;
  padding-block: 76px 110px;
}

.info-content > * {
  min-width: 0;
}

.info-aside {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8fbff;
}

.info-aside strong {
  margin-bottom: 4px;
  color: var(--navy);
}

.info-aside a {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.info-aside a:hover {
  color: var(--blue);
}

.info-article {
  max-width: 820px;
}

.info-article section {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.info-article section + section {
  margin-top: 54px;
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

.info-article h2 {
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.info-article h3 {
  margin: 30px 0 10px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.info-article p,
.info-article li {
  color: #445a73;
}

.info-article ul {
  display: grid;
  gap: 9px;
  padding-left: 20px;
}

.info-article a {
  color: var(--blue-dark);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(11, 82, 181, 0.3);
  text-underline-offset: 3px;
}

.info-note {
  margin: 30px 0;
  padding: 20px 22px;
  border: 1px solid #c9dced;
  border-left: 4px solid var(--blue);
  border-radius: 14px;
  background: #f3f8ff;
}

.info-note strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
}

.info-note p:last-child {
  margin-bottom: 0;
}

.info-updated {
  margin-top: 28px;
  color: #718197;
  font-size: 0.82rem;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.security-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.security-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.security-card h3 {
  margin: 0 0 8px;
}

.security-card p {
  margin: 0;
  font-size: 0.9rem;
}

.data-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

.data-table th {
  background: #eef5fd;
  color: var(--navy);
}

.data-table td {
  color: #445a73;
}

@media (max-width: 900px) {
  .info-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .info-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-aside strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .info-hero {
    padding-block: 58px 48px;
  }

  .info-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .info-content {
    padding-block: 48px 76px;
  }

  .info-aside,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .info-aside strong {
    grid-column: auto;
  }

  .data-table {
    display: block;
    border-collapse: separate;
    border-spacing: 0;
  }

  .data-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

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

  .data-table tr {
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
  }

  .data-table td {
    display: grid;
    grid-template-columns: minmax(90px, 0.38fr) minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
    border: 0;
    border-bottom: 1px solid var(--line);
    overflow-wrap: anywhere;
  }

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

  .data-table td::before {
    content: attr(data-label);
    color: var(--navy);
    font-weight: 800;
  }
}
