:root {
  --bg: #f6f9fc;
  --surface: #ffffff;
  --surface-soft: #edf6ff;
  --surface-green: #e9f8f1;
  --ink: #0f1a2e;
  --text: #17213a;
  --muted: #61708a;
  --blue: #1769e0;
  --blue-dark: #0f3f93;
  --green: #16a66a;
  --yellow: #f3b43f;
  --cyan: #13a8c8;
  --line: #dfe8f2;
  --shadow: 0 18px 42px rgba(26, 49, 84, 0.1);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #f2f8ff 0, #ffffff 420px, var(--bg) 100%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(223, 232, 242, 0.8);
  backdrop-filter: blur(18px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 132px;
  height: auto;
}

.brand-badge {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--surface-soft);
  font-size: 12px;
  font-weight: 800;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--blue-dark);
  background: var(--surface-soft);
}

.hero {
  padding: 58px 0 30px;
}

.product-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 26px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(15, 26, 46, 0.96), rgba(18, 62, 126, 0.94)),
    #101c33;
}

.product-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  align-items: center;
  column-gap: 72px;
  justify-content: center;
  padding: 44px 0 34px;
}

.hero-content > :not(.hero-canvas) {
  grid-column: 1;
}

.hero-eyebrow {
  color: #7fe4b4;
}

.product-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(46px, 5.8vw, 76px);
  line-height: 0.98;
}

.hero-lead {
  max-width: 680px;
  color: #d9e4f2;
}

.product-hero .hero-lead {
  color: #d9e4f2;
}

.hero-secondary {
  color: #eaf4ff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-canvas {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 6;
  width: 100%;
  min-height: 430px;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  color: var(--text);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 22px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.hero-card-main {
  right: 0;
  bottom: 28px;
  width: 360px;
  padding: 22px;
}

.hero-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  margin-bottom: 16px;
  border-radius: 18px;
  object-fit: cover;
  background: #eef6ff;
}

.hero-card-main h2 {
  margin-bottom: 8px;
  font-size: 34px;
}

.hero-card-main p {
  color: var(--muted);
  line-height: 1.5;
}

.hero-card-small {
  left: 0;
  top: 0;
  width: 210px;
  padding: 16px;
}

.hero-card-small.accent {
  left: 30px;
  top: 176px;
  color: #083d2a;
  background: #e5f8ef;
}

.hero-card-small span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.hero-card-small strong {
  font-size: 18px;
}

.mini-progress {
  height: 10px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #e4edf6;
}

.mini-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.metric-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 8px;
}

.metric-strip div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-strip strong {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 28px;
}

.metric-strip span {
  color: #cbd8ea;
  font-size: 14px;
  font-weight: 800;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 34px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.22;
}

.lead {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 15px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 14px 28px rgba(23, 105, 224, 0.22);
}

.button.secondary {
  color: var(--blue-dark);
  background: #eaf4ff;
}

.hero-panel,
.card,
.empty-state,
.seo-panel {
  border: 1px solid rgba(223, 232, 242, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 22px;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.status-pill {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--green);
  background: #e8f8f0;
  font-size: 12px;
  font-weight: 900;
}

.stack-list {
  display: grid;
  gap: 10px;
}

.stack-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 15px;
  background: #f7fbff;
}

.stack-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-dark);
  background: #e4f1ff;
  font-weight: 900;
}

.section {
  padding: 42px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-head p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.game-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 16px;
}

.game-card,
.catalog-card,
.category-card,
.new-game-row {
  border: 1px solid rgba(223, 232, 242, 0.9);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.game-card {
  min-height: 360px;
  overflow: hidden;
  border-radius: 24px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  display: flex;
  min-height: 410px;
  overflow: hidden;
  flex-direction: column;
  border-radius: 24px;
}

.catalog-card.active {
  border-color: rgba(22, 166, 106, 0.38);
}

.game-card.large {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
}

.game-visual {
  min-height: 150px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--blue-dark);
  overflow: hidden;
}

.catalog-visual-link {
  display: block;
  overflow: hidden;
  background: #eef6ff;
}

.catalog-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.game-visual img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: block;
  object-fit: cover;
}

.game-visual span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 38px;
  font-weight: 900;
}

.game-visual.credit {
  background:
    linear-gradient(145deg, rgba(23, 105, 224, 0.9), rgba(22, 166, 106, 0.82)),
    var(--blue);
}

.game-visual.budget {
  background:
    linear-gradient(145deg, rgba(19, 168, 200, 0.92), rgba(15, 63, 147, 0.9)),
    var(--cyan);
}

.game-visual.risk {
  background:
    linear-gradient(145deg, rgba(243, 180, 63, 0.94), rgba(15, 63, 147, 0.88)),
    var(--yellow);
}

.game-body {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.game-body p {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.game-body .button {
  margin-top: auto;
}

.game-status {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--green);
  background: var(--surface-green);
  font-size: 12px;
  font-weight: 900;
}

.game-status.live {
  color: #ffffff;
  background: var(--green);
}

.game-page-shell,
.placeholder-page {
  min-height: calc(100vh - 72px);
  padding: 28px 0 56px;
  background:
    linear-gradient(180deg, #f2f8ff, #ffffff 360px),
    var(--bg);
}

.game-intro-panel {
  width: min(100%, 760px);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(223, 232, 242, 0.9);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.game-intro-panel img,
.game-page-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.game-intro-panel h1 {
  margin-bottom: 10px;
  font-size: clamp(34px, 5vw, 56px);
}

.game-intro-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.game-page-image {
  margin-bottom: 18px;
}

.public-card {
  overflow: hidden;
}

.kredit-stage {
  width: min(100%, 460px);
  margin: 0 auto;
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(223, 232, 242, 0.9);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.risk-stage,
.dti-stage,
.card-credit-stage {
  border-color: rgba(23, 105, 224, 0.14);
}

.kredit-stage.start,
.kredit-stage.final {
  min-height: 620px;
  align-content: center;
  text-align: center;
}

.kredit-stage h1 {
  margin-bottom: 0;
  font-size: 42px;
}

.kredit-stage p {
  color: var(--muted);
  line-height: 1.55;
}

.kredit-logo {
  width: 140px;
  margin: 0 auto 8px;
}

.kredit-stage small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.kredit-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.kredit-topline span {
  padding: 9px 11px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--surface-soft);
  font-weight: 900;
}

.kredit-progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e3edf8;
}

.kredit-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.kredit-client-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfdff;
}

.kredit-client-card h2 {
  font-size: 22px;
}

.kredit-client-card dl {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.kredit-client-card dl div {
  padding: 12px;
  border-radius: 14px;
  background: #ffffff;
}

.kredit-client-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.kredit-client-card dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.kredit-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dti-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.answer-btn {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(26, 49, 84, 0.08);
  font-weight: 900;
}

.answer-btn.yes {
  color: var(--green);
}

.answer-btn.no {
  color: var(--blue-dark);
}

.answer-btn.mid {
  color: #805400;
}

.answer-btn:disabled {
  opacity: 0.55;
}

.kredit-result {
  display: grid;
  gap: 8px;
  padding: 16px;
  border-radius: 20px;
}

.kredit-result.correct {
  background: #e8f8f0;
}

.kredit-result.wrong {
  background: #fff1f1;
}

.kredit-result span {
  color: var(--muted);
  font-weight: 900;
}

.factor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.factor-list span {
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #eef6ff;
  font-size: 12px;
}

.product-choice-card dl .wide {
  grid-column: 1 / -1;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.comparison-grid div {
  display: grid;
  gap: 7px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.62);
}

.comparison-grid b {
  color: var(--text);
}

.comparison-grid em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.game-seo-section {
  width: min(100%, 760px);
  margin: 24px auto 0;
}

.article-content.compact {
  width: 100%;
}

.game-page-cta {
  margin-top: 18px;
}

.score-ring {
  width: 142px;
  height: 142px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #ffffff 58%, transparent 59%),
    conic-gradient(var(--green) 72%, #e3edf8 0);
}

.score-ring span {
  font-size: 30px;
  font-weight: 900;
}

.placeholder-card {
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(223, 232, 242, 0.9);
  border-radius: 28px;
  background:
    linear-gradient(135deg, #ffffff, #f2f8ff 60%, #edf9f3),
    var(--surface);
  box-shadow: var(--shadow);
}

.placeholder-card h1 {
  font-size: clamp(40px, 6vw, 70px);
}

.placeholder-card p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.article-page {
  padding: 32px 0 58px;
  background: linear-gradient(180deg, #f2f8ff, #ffffff 320px, var(--bg));
}

.article-layout {
  display: grid;
  gap: 26px;
}

.article-content {
  width: min(100%, 780px);
  padding: 26px;
  border: 1px solid rgba(223, 232, 242, 0.9);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.article-content h1 {
  font-size: clamp(36px, 6vw, 64px);
}

.article-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.faq-list details {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fbff;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

.faq-list p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.category-seo-text {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.related-section {
  margin-top: 28px;
}

.section-head.compact {
  margin-bottom: 14px;
}

.section-head.compact h2 {
  font-size: clamp(26px, 4vw, 36px);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.related-card {
  min-height: 172px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border: 1px solid rgba(223, 232, 242, 0.9);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 14px 32px rgba(26, 49, 84, 0.08);
  text-decoration: none;
}

.related-card span {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-card strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.new-games-section {
  background: #ffffff;
}

.new-games-list {
  display: grid;
  gap: 12px;
}

.new-game-row {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
}

.new-game-row h3 {
  margin-bottom: 4px;
}

.new-game-row p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.row-index {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue-dark);
  background: var(--surface-soft);
  font-weight: 900;
}

.row-tag {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: #eef6ff;
  font-size: 12px;
  font-weight: 900;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  min-height: 220px;
  padding: 20px;
  border-radius: 22px;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(26, 49, 84, 0.14);
}

.category-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.card {
  min-height: 164px;
  padding: 20px;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.card-meta {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: var(--surface-soft);
  font-size: 12px;
  font-weight: 900;
}

.category-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-weight: 900;
}

.empty-state {
  padding: 28px;
  text-align: center;
}

.empty-state p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.6;
}

.page-hero {
  padding: 48px 0 22px;
}

.page-hero h1 {
  max-width: 840px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 800;
}

.hero-breadcrumb {
  color: #b9c8dd;
}

.hero-breadcrumb span {
  color: #ffffff;
  font-weight: 800;
}

.filter-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.catalog-search {
  margin-bottom: 14px;
}

.catalog-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(26, 49, 84, 0.07);
  font: inherit;
  font-weight: 800;
}

.filter-chip {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  font-size: 14px;
  font-weight: 800;
}

.filter-chip.is-active {
  color: #ffffff;
  border-color: transparent;
  background: var(--blue);
}

.seo-panel {
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, #f1f8ff);
}

.seo-product {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(223, 232, 242, 0.9);
  border-radius: 26px;
  background:
    linear-gradient(135deg, #ffffff, #f3f9ff 48%, #eefaf5),
    var(--surface);
  box-shadow: var(--shadow);
}

.seo-grid {
  display: grid;
  gap: 12px;
}

.seo-grid div {
  padding: 16px;
  border: 1px solid rgba(223, 232, 242, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.seo-grid strong,
.seo-grid span {
  display: block;
}

.seo-grid strong {
  margin-bottom: 4px;
  font-size: 18px;
}

.seo-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.seo-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.seo-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 700;
}

.blog-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.blog-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.site-footer {
  margin-top: 42px;
  padding: 30px 0;
  color: var(--muted);
  background: #101c33;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner img {
  width: 116px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: #d9e5f5;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    column-gap: 44px;
  }

  .product-hero h1 {
    max-width: 620px;
    font-size: clamp(44px, 5.6vw, 66px);
  }

  .hero-canvas {
    min-height: 390px;
  }

  .hero-card-main {
    width: 320px;
  }

  .hero-card-small {
    width: 190px;
  }

  .hero-card-small.accent {
    left: 20px;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    border-radius: 14px;
  }

  .hero-grid,
  .grid.three,
  .grid.two,
  .game-grid,
  .game-card.large,
  .catalog-grid,
  .category-grid,
  .seo-product,
  .related-grid,
  .game-intro-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .product-hero {
    padding-top: 24px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 22px 0 16px;
  }

  .hero-canvas {
    position: static;
    display: grid;
    gap: 12px;
    width: 100%;
    min-height: 0;
    margin-top: 20px;
    pointer-events: auto;
  }

  .hero-card {
    position: static;
    width: 100%;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
  }

  .hero-card-main {
    width: 100%;
    order: 1;
  }

  .hero-card-small {
    order: 2;
  }

  .hero-card-small.accent {
    order: 3;
  }

  .hero-card-main h2 {
    font-size: 28px;
  }

  .hero-card-main p {
    font-size: 16px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
    padding-top: 8px;
  }

  .section-head,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .game-intro-panel {
    grid-template-columns: 92px 1fr;
    gap: 12px;
    padding: 12px;
    border-radius: 20px;
  }

  .game-intro-panel img {
    border-radius: 16px;
  }

  .game-intro-panel h1 {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 1.05;
  }

  .game-intro-panel .eyebrow {
    margin-bottom: 6px;
  }

  .game-intro-panel p:not(.eyebrow) {
    display: none;
  }
}

@media (max-width: 460px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 24px, 1120px);
  }

  .brand img {
    width: 118px;
  }

  .brand-badge {
    display: none;
  }

  h1 {
    font-size: 42px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .product-hero h1 {
    font-size: 38px;
    line-height: 0.98;
  }

  .hero-card-main {
    width: 100%;
  }

  .hero-card-small {
    width: 100%;
  }

  .hero-card-small.accent {
    width: 100%;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .new-game-row {
    grid-template-columns: 1fr;
  }

  .kredit-actions {
    grid-template-columns: 1fr;
  }

  .kredit-stage {
    gap: 12px;
    padding: 14px;
    border-radius: 22px;
  }

  .kredit-stage h1 {
    font-size: 34px;
  }

  .kredit-client-card {
    padding: 14px;
    border-radius: 18px;
  }

  .kredit-client-card h2 {
    font-size: 19px;
  }

  .kredit-client-card dl {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .kredit-client-card dl div {
    padding: 9px;
  }

  .kredit-client-card dd {
    font-size: 13px;
    overflow-wrap: anywhere;
  }

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

  .row-index {
    width: 42px;
    height: 42px;
  }

  .game-page-shell {
    padding-top: 18px;
  }

  .breadcrumb {
    margin-bottom: 12px;
  }

  .kredit-stage.start,
  .kredit-stage.final {
    min-height: 520px;
  }
}
