/* Commercial and legal information pages */
.info-hero {
  padding: 74px 0 58px;
  background: var(--mint);
}

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

.info-hero h1 {
  max-width: 900px;
  font-size: 52px;
}

.info-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(18, 63, 67, 0.76);
  font-size: 18px;
}

.info-hero-ozon {
  color: var(--white);
  background: var(--ozon-blue);
  border-bottom: 0;
}

.info-hero-ozon h1 {
  color: var(--white);
}

.info-hero-ozon p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.info-hero-ozon .ozon-brand-line {
  margin-bottom: 24px;
}

.info-section {
  padding: 72px 0 96px;
  background: var(--paper);
}

.info-layout {
  width: min(940px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 72px;
  align-items: start;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 72px;
  align-items: start;
}

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

.info-content h2 {
  margin: 46px 0 14px;
  font-size: 31px;
}

.info-content h2:first-child {
  margin-top: 0;
}

.info-content h3 {
  margin: 26px 0 10px;
  font-size: 21px;
}

.info-content p,
.info-content li,
.info-content dd,
.info-content dt {
  font-size: 16px;
  line-height: 1.72;
}

.info-content p + p {
  margin-top: 12px;
}

.info-content ul,
.info-content ol {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 23px;
}

.info-content a {
  color: var(--ink);
  font-weight: 800;
  text-underline-offset: 3px;
}

.info-aside {
  position: sticky;
  top: 104px;
  display: grid;
  border-top: 1px solid var(--line);
}

.info-aside strong,
.info-aside a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.info-aside strong {
  color: var(--ink);
  font-size: 14px;
}

.info-aside a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

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

.numbered-steps {
  list-style: none;
  padding: 0 !important;
  border-top: 1px solid var(--line);
}

.numbered-steps li {
  display: grid;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.numbered-steps strong {
  color: var(--ink);
}

.numbered-steps span {
  color: var(--muted);
}

.info-block {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.info-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-block h2 {
  margin-bottom: 16px;
  font-size: 32px;
}

.info-block h3 {
  margin: 24px 0 10px;
  font-size: 21px;
}

.info-block p,
.info-block li,
.info-block dd,
.info-block dt {
  font-size: 16px;
  line-height: 1.7;
}

.info-block p + p {
  margin-top: 12px;
}

.info-block ul,
.info-block ol {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.info-block a {
  color: var(--ink);
  font-weight: 800;
}

.info-note {
  padding: 18px 20px;
  color: var(--ink-deep);
  background: #fff7d5;
  border-left: 4px solid var(--yellow);
  border-radius: 3px;
}

.info-note strong {
  display: block;
  margin-bottom: 4px;
}

.info-steps {
  counter-reset: info-step;
  list-style: none;
  padding: 0 !important;
}

.info-steps li {
  position: relative;
  min-height: 54px;
  padding-left: 58px;
  counter-increment: info-step;
}

.info-steps li::before {
  content: counter(info-step);
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.requisites-list {
  margin: 0;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

.requisites-list dt,
.requisites-list dd {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.requisites-list dt {
  color: var(--muted);
  font-weight: 700;
}

.requisites-list dd {
  color: var(--ink);
  font-weight: 800;
}

.status-page {
  min-height: calc(100vh - 34px);
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background: var(--mint);
}

.status-card {
  width: min(680px, 100%);
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 var(--yellow);
}

.status-card h1 {
  font-size: 46px;
}

.status-card > p:not(.eyebrow) {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 17px;
}

.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-layout-wide {
  grid-template-columns: minmax(210px, 1.2fr) minmax(150px, 0.8fr) minmax(220px, 1fr) minmax(210px, 0.9fr);
  gap: 44px;
  align-items: start;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer .footer-nav,
.footer-contacts {
  display: grid;
  align-items: start;
  gap: 9px;
}

.site-footer .footer-nav strong,
.footer-contacts strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
}

.site-footer .footer-nav a,
.footer-contacts a,
.footer-contacts span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.footer-requisites {
  grid-column: 1 / -1;
  max-width: none !important;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.mobile-cta {
  display: none;
}

/* Commerce information and legal pages */
.info-hero {
  padding: 76px 0 64px;
  background: var(--mint);
  border-bottom: 1px solid rgba(18, 63, 67, 0.12);
}

.info-hero h1 {
  max-width: 900px;
  font-size: 52px;
}

.info-hero p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 18px;
  color: rgba(18, 63, 67, 0.78);
  font-size: 18px;
}

.info-hero.info-hero-ozon {
  color: var(--white);
  background: var(--ozon-blue);
  border-bottom: 0;
}

.info-hero.info-hero-ozon h1 {
  color: var(--white);
}

.info-hero.info-hero-ozon p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.legal-page {
  padding: 72px 0 96px;
  background: var(--paper);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 88px;
  align-items: start;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin: 48px 0 14px;
  font-size: 30px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 28px 0 10px;
  font-size: 21px;
}

.legal-content p,
.legal-content li,
.legal-content dd,
.legal-content dt {
  font-size: 16px;
  line-height: 1.75;
}

.legal-content p + p {
  margin-top: 12px;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 24px;
}

.legal-content .document-date {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 13px;
}

.legal-aside {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.legal-aside a {
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.legal-aside a[aria-current="page"],
.legal-aside a:hover {
  color: var(--coral);
}

.notice-band {
  margin: 28px 0;
  padding: 20px 22px;
  color: var(--ink);
  background: #eef7f3;
  border-left: 4px solid var(--mint-strong);
}

.warning-band {
  background: #fff8d8;
  border-left-color: var(--yellow);
}

.commerce-steps {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.commerce-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.commerce-step > span {
  color: var(--coral);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.commerce-step h3 {
  margin: 0 0 6px;
}

.requisites-list {
  margin: 12px 0 0;
  border-top: 1px solid var(--line);
}

.requisites-list > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.requisites-list dt {
  color: var(--muted);
}

.requisites-list dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.document-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.document-links a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  text-decoration: none;
}

.payment-status-note {
  margin: 20px 0 28px;
  padding: 16px;
  background: var(--paper);
  border-left: 4px solid var(--yellow);
}

/* Editorial SEO pages */
.page-hero {
  padding: 84px 0;
  background: var(--mint);
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 72px;
  align-items: center;
}

.page-hero h1 {
  font-size: 56px;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(18, 63, 67, 0.78);
  font-size: 20px;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero-actions .button {
  color: var(--white);
  background: var(--ink);
}

.page-hero img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  background: var(--white);
  border: 8px solid var(--white);
  box-shadow: 14px 14px 0 var(--yellow);
}

.page-hero .page-photo {
  object-position: 72% center;
}

.page-proof {
  color: var(--white);
  background: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid article {
  min-height: 190px;
  padding: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-grid article > span {
  display: block;
  margin-bottom: 28px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.proof-grid strong {
  display: block;
  color: var(--white);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 20px;
}

.proof-grid p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.article-section {
  background: var(--paper);
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 96px;
  align-items: start;
}

.article-content {
  min-width: 0;
  max-width: 760px;
}

.article-content h2 {
  margin: 54px 0 16px;
  font-size: 34px;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  margin: 30px 0 10px;
  font-size: 23px;
}

.article-content p,
.article-content li {
  color: #4c5d63;
  font-size: 18px;
  line-height: 1.75;
}

.article-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.article-content ol {
  display: grid;
  gap: 14px;
  padding-left: 24px;
}

.article-content a {
  color: var(--ink);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.answer-box,
.article-warning {
  margin-bottom: 34px;
  padding: 22px 24px;
  background: #eaf5ef;
  border-left: 4px solid var(--mint-strong);
}

.answer-box strong,
.article-warning strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 14px;
}

.answer-box p,
.article-warning p {
  color: var(--ink-deep);
}

.article-warning {
  margin: 28px 0;
  background: #fff7d5;
  border-left-color: var(--yellow);
}

.page-hero .page-photo-contain {
  height: 520px;
  object-fit: contain;
  object-position: center;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 42px;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--coral);
}

.download-panel h2 {
  margin: 3px 0 8px;
  font-size: 30px;
}

.download-panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.download-panel .button {
  white-space: nowrap;
}

.article-photo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0 8px;
}

.article-photo-pair figure {
  min-width: 0;
  margin: 0;
}

.article-photo-pair img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--white);
}

.article-photo-pair figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.article-table-wrap {
  max-width: 100%;
  margin: 24px 0 8px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.article-table {
  width: 100%;
  min-width: 590px;
  border-collapse: collapse;
}

.article-table th,
.article-table td {
  padding: 15px 16px 15px 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.55;
}

.article-table th {
  color: var(--ink);
  font-size: 13px;
}

.article-table td {
  color: #4c5d63;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 54px;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.5;
}

.article-meta span,
.article-meta time {
  display: inline-flex;
}

.side-offer {
  position: sticky;
  top: 110px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.side-offer img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--paper);
}

.side-offer h3 {
  margin-top: 22px;
}

.side-offer p {
  margin: 10px 0 20px;
  color: var(--muted);
}

.side-offer .button {
  width: 100%;
  color: var(--white);
  background: var(--ink);
}

.article-cta {
  background: var(--yellow);
}

.article-cta .eyebrow {
  color: #7d2f24;
}

.article-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.article-cta-box h2 {
  max-width: 760px;
}

.article-cta-box .button {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--ink);
}

.thank-you {
  min-height: calc(100vh - 34px);
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: var(--mint);
}

.thank-you-box {
  width: min(720px, 100%);
  padding: 56px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 14px 14px 0 var(--yellow);
}

.thank-you-box .section-copy {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 18px;
}

.thank-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.thank-steps span {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
}

.thank-steps strong {
  color: var(--coral);
  font-size: 18px;
}

.thank-you-box .button {
  color: var(--white);
  background: var(--ink);
}

.support-note {
  display: grid;
  gap: 4px;
  margin: 0 0 26px;
  padding: 16px 18px;
  color: var(--muted);
  background: var(--paper);
  border-left: 4px solid var(--mint-strong);
}

.support-note strong {
  color: var(--ink);
}

.support-note a {
  color: var(--ink);
  font-weight: 800;
  text-underline-offset: 3px;
}

.status-failed .support-note {
  border-left-color: var(--coral);
}
.breadcrumbs { display: flex; align-items: center; gap: 8px; padding-top: 18px; color: #61706f; font-size: 14px; }
.breadcrumbs a { color: #315e5c; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.breadcrumbs span[aria-hidden="true"] { color: #9ba8a7; }
