.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.hero__headline-col {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  border-right: 2px solid var(--accent);
}

.hero__headline-col h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 480px;
}

.hero__subtitle-col {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

.hero__subtitle-col p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 440px;
}

.offers-section {
  padding: 64px 0;
  background: var(--steel-dark);
  position: relative;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 26, 46, 0.95), rgba(26, 26, 46, 0.98)),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(52, 211, 153, 0.06) 39px, rgba(52, 211, 153, 0.06) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(52, 211, 153, 0.06) 39px, rgba(52, 211, 153, 0.06) 40px);
  pointer-events: none;
}

.offers-section .container {
  position: relative;
  z-index: 1;
}

.offers-header {
  text-align: center;
  margin-bottom: 40px;
}

.offers-header h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.offers-header p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-family: var(--font-mono);
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #1e1b1b 0%, #0f172a 100%);
  border: 1px solid rgba(250, 204, 21, 0.35);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.offer-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 72px;
  margin: 20px auto 0;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

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

.offer-card__body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.offer-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
}

.offer-card__bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.offer-card__bonus {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FDBA74;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.offer-card__terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.offer-card__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  text-align: center;
}

.offer-card__cta {
  display: block;
  margin-top: auto;
  padding: 10px 20px;
  background: rgba(251, 113, 133, 0.15);
  border: 1px solid rgba(251, 113, 133, 0.4);
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  font-family: var(--font-mono);
  transition: background 0.2s, border-color 0.2s;
}

.offer-card__cta:hover {
  background: rgba(251, 113, 133, 0.3);
  border-color: var(--primary);
  color: #FFFFFF;
}

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

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

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

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

.info-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(251, 113, 133, 0.08);
  border: 1px solid rgba(251, 113, 133, 0.2);
  padding: 4px 10px;
  margin-bottom: 12px;
}

.info-section h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
}

.info-section p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.info-1-bar {
  background: linear-gradient(180deg, var(--primary), var(--accent));
  min-height: 100%;
  border-radius: 2px;
}

.info-2-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

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

.info-2-cell {
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-2-cell--accent {
  background: rgba(52, 211, 153, 0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.info-3-layout {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.info-3-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.info-3-stat {
  text-align: center;
  padding: 16px 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  min-width: 120px;
}

.info-3-stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.info-3-stat-label {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.info-4-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.info-4-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 28px 32px;
  position: relative;
}

.info-4-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.info-5-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-5-step {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
}

.info-5-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(251, 113, 133, 0.25);
  line-height: 1;
  margin-bottom: 12px;
}

.info-5-step h2 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.info-5-step p {
  font-size: 0.875rem;
}

.info-6-layout {
  background: var(--steel-dark);
  padding: 40px;
  border-left: 4px solid var(--accent);
}

.info-6-layout h2 {
  color: #FFFFFF;
}

.info-6-layout p {
  color: rgba(255, 255, 255, 0.7);
}

.info-7-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  align-items: start;
}

.info-7-code {
  background: var(--steel-dark);
  padding: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  line-height: 1.8;
  border-radius: 4px;
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.info-7-code span {
  color: rgba(255, 255, 255, 0.4);
}

.info-8-layout {
  position: relative;
  padding-left: 32px;
}

.info-8-layout::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}

.info-8-item {
  position: relative;
  padding-bottom: 28px;
}

.info-8-item::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--surface);
}

.info-8-item:last-child {
  padding-bottom: 0;
}

.info-8-item h2 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.info-8-item p {
  font-size: 0.9rem;
}

.info-9-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.info-9-main {
  grid-row: span 2;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.info-9-side {
  padding: 20px;
  background: rgba(251, 113, 133, 0.06);
  border: 1px solid rgba(251, 113, 133, 0.15);
  font-size: 0.875rem;
}

.info-9-side h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-10-layout {
  border: 2px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.info-10-header {
  background: var(--steel-dark);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-10-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.info-10-dot:nth-child(2) {
  background: var(--secondary);
}

.info-10-dot:nth-child(3) {
  background: var(--accent);
}

.info-10-header span {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.info-10-body {
  padding: 32px;
  background: var(--surface);
}

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

  .hero__headline-col {
    border-right: none;
    border-bottom: 2px solid var(--accent);
    padding: 40px 24px;
    min-height: 180px;
  }

  .hero__subtitle-col {
    padding: 40px 24px;
    min-height: 160px;
  }

  .offer-card__logo-wrap {
    width: 170px;
    height: 68px;
  }

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

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

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

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

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

  .info-9-main {
    grid-row: auto;
  }
}

@media (max-width: 480px) {
  .info-2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-3-stats {
    gap: 12px;
  }

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

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

  .offer-card__bonus {
    font-size: 0.85rem;
  }
}
