.hero-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.hero-block {
  padding: 24px;
  border: 1px solid var(--border);
}

.hero-block--primary {
  background: var(--primary);
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.hero-block--primary h1 {
  font-family: var(--mono);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 420px;
}

.hero-block--secondary {
  background: var(--secondary);
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: right;
}

.hero-block--secondary p {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--bg);
  max-width: 320px;
  font-weight: 500;
}

.offers-section {
  padding: 40px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.offers-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-section__title {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 6px;
}

.offers-section__intro {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 24px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  justify-items: center;
}

.offer-card {
  width: 100%;
  max-width: 360px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.offer-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(239, 68, 68, 0.15);
}

.offer-card__logo-wrap {
  width: 200px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  flex-shrink: 0;
}

.offer-card__logo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card__name {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.offer-card__bonus-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-card__bonus {
  font-size: 0.875rem;
  color: #fbbf24;
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.offer-card__terms {
  font-size: 11px;
  color: #B6C2E2;
}

.offer-card__desc {
  font-size: 12px;
  color: #B6C2E2;
  line-height: 1.5;
  margin: 0;
}

.offer-card__btn {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #3B82F6;
  color: #3B82F6;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: auto;
  font-family: inherit;
}

.offer-card__btn:hover {
  background: #3B82F6;
  color: #0f172a;
  transform: scale(1.05);
}

.info-section {
  padding: 36px 24px;
  border-bottom: 1px solid var(--border);
}

.info-section:nth-child(even) {
  background: var(--surface);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-section h2 {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--secondary);
  margin-bottom: 12px;
}

.info-section p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
}

.layout-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.layout-1-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.layout-1-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 12px;
  font-family: var(--mono);
}

.layout-1-stat strong {
  display: block;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 2px;
}

.layout-1-stat span {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.layout-2 {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
}

.layout-2-icon {
  width: 80px;
  height: 80px;
  background: var(--primary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.2;
}

.layout-2-body {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.layout-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.layout-3-col {
  padding: 16px;
  border: 1px solid var(--border);
}

.layout-3-col--pro {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.3);
}

.layout-3-col--con {
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.25);
}

.layout-3-col h3 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.layout-3-col--pro h3 {
  color: var(--accent);
}

.layout-3-col--con h3 {
  color: #f87171;
}

.layout-3-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.layout-3-col li {
  font-size: 12px;
  line-height: 1.5;
  padding: 4px 0;
  padding-left: 12px;
  position: relative;
}

.layout-3-col li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-family: var(--mono);
}

.layout-4 {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.layout-4-accent {
  width: 4px;
  background: var(--primary);
  flex-shrink: 0;
}

.layout-4-body {
  flex: 1;
}

.layout-4-meta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.layout-4-tag {
  font-family: var(--mono);
  font-size: 10px;
  padding: 4px 8px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.layout-5-steps {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.layout-5-step {
  flex: 1;
  min-width: 140px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-right: none;
  position: relative;
}

.layout-5-step:last-child {
  border-right: 1px solid var(--border);
}

.layout-5-step::before {
  content: attr(data-step);
  display: block;
  font-family: var(--mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.layout-5-step p {
  font-size: 11px;
  line-height: 1.45;
}

.layout-6-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 11px;
}

.layout-6-table th,
.layout-6-table td {
  padding: 10px 12px;
  text-align: left;
  border: 1px solid var(--border);
}

.layout-6-table th {
  background: var(--bg);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  width: 30%;
}

.layout-6-table td {
  color: var(--text);
  font-family: var(--sans);
  font-size: 12px;
}

.layout-7-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.layout-7-tag {
  font-family: var(--mono);
  font-size: 10px;
  padding: 6px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.layout-8 {
  background: var(--bg);
  border: 1px solid var(--accent);
  border-left-width: 4px;
  padding: 20px 24px;
}

.layout-8-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.layout-9-list {
  counter-reset: roulette;
  list-style: none;
  padding: 0;
  margin: 0;
}

.layout-9-list li {
  counter-increment: roulette;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  line-height: 1.5;
}

.layout-9-list li:last-child {
  border-bottom: none;
}

.layout-9-list li::before {
  content: counter(roulette, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.layout-10-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.layout-10-card {
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.layout-10-card strong {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.layout-10-card span {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text);
}

@media (max-width: 767px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-block--primary,
  .hero-block--secondary {
    min-height: 160px;
  }

  .layout-1,
  .layout-3,
  .layout-10-grid {
    grid-template-columns: 1fr;
  }

  .layout-2 {
    grid-template-columns: 1fr;
  }

  .layout-2-icon {
    width: 100%;
    height: 48px;
  }

  .layout-5-steps {
    flex-direction: column;
  }

  .layout-5-step {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }

  .layout-5-step:last-child {
    border-bottom: 1px solid var(--border);
  }

  .offer-card__logo-wrap {
    width: 200px;
    height: 64px;
  }

  .offer-card__logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}

@media (min-width: 768px) {
  .offer-card__logo-wrap {
    width: 200px;
    height: 64px;
  }
}
