.hero {
  background: #fafafa;
  padding: 48px 24px;
  border-bottom: 4px solid #000;
}

.hero__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #000;
  text-align: left;
  line-height: 1.05;
  border-bottom: 4px solid #000;
  padding-bottom: 20px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #64748b;
  text-align: right;
  max-width: 520px;
  margin-left: auto;
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .hero h1 {
    text-align: center;
    border-bottom: none;
    border-top: 4px solid #000;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .hero__subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.offers-section {
  padding: 64px 24px;
  background: var(--bg);
}

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

.offers-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.offers-section__lead {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 40px;
  max-width: 600px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.offer-card {
  background: #1a1f3a;
  border: 3px solid #000;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
}

.offer-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 #000;
}

.offer-card--favbet {
  background: linear-gradient(160deg, #1e3a5f 0%, #0f2744 100%);
}

.offer-card--olybet {
  background: linear-gradient(160deg, #2d1f4e 0%, #1a1235 100%);
}

.offer-card--luckia {
  background: linear-gradient(160deg, #1a3d2e 0%, #0f2920 100%);
}

.offer-card__header {
  padding: 24px 24px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.4);
}

.offer-card__logo-wrap {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  padding: 6px;
}

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

.offer-card__name {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

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

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

.offer-card__bonus {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.3;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-card__terms {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.offer-card__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  border-left: 3px solid var(--accent);
  padding-left: 12px;
}

.offer-card__cta {
  display: block;
  margin: 0 24px 24px;
  padding: 14px 20px;
  background: var(--primary);
  color: #000;
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 3px solid #000;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.offer-card__cta:hover {
  background: var(--secondary);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
  color: #000;
}

.info-section {
  padding: 56px 24px;
  border-bottom: 3px solid #000;
}

.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;
}

.info-section h2 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

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

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

.info-1__wheel {
  width: 120px;
  height: 120px;
  border: 4px solid #000;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0deg 90deg, var(--accent) 90deg 180deg, var(--secondary) 180deg 270deg, #fff 270deg 360deg);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: #000;
}

.info-1 h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--primary);
}

@media (max-width: 600px) {
  .info-1 {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-1__wheel {
    margin: 0 auto;
  }
}

.info-2 h2 {
  font-size: 1.75rem;
  color: var(--secondary);
  margin-bottom: 28px;
}

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

.info-2__step {
  border: 3px solid #000;
  padding: 20px 16px;
  background: var(--bg);
  box-shadow: var(--shadow);
  text-align: center;
}

.info-2__num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.info-2__step p {
  font-size: 13px;
}

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

.info-3 h2 {
  font-size: 2rem;
  color: var(--accent);
}

.info-3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.info-3__box {
  border: 3px solid #000;
  padding: 24px;
  background: var(--bg);
  box-shadow: var(--shadow);
}

.info-3__box strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 900;
}

@media (max-width: 700px) {
  .info-3__grid {
    grid-template-columns: 1fr;
  }
}

.info-4 {
  text-align: center;
}

.info-4 h2 {
  font-size: 2rem;
  color: var(--primary);
}

.info-4__quote {
  max-width: 700px;
  margin: 24px auto 0;
  border: 4px solid #000;
  padding: 32px 40px;
  background: var(--bg);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.info-4__quote::before {
  content: "\201C";
  font-size: 4rem;
  color: var(--accent);
  line-height: 0;
  display: block;
  margin-bottom: 16px;
  font-weight: 900;
}

.info-5 h2 {
  font-size: 1.75rem;
  color: var(--secondary);
}

.info-5__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 20px;
}

.info-5__pill {
  padding: 10px 20px;
  border: 3px solid #000;
  background: var(--primary);
  color: #000;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 #000;
}

.info-5__pill:nth-child(2) {
  background: var(--accent);
}

.info-5__pill:nth-child(3) {
  background: var(--secondary);
}

.info-5__pill:nth-child(4) {
  background: #fff;
}

.info-6 h2 {
  font-size: 2rem;
  color: var(--primary);
}

.info-6__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.info-6__col {
  border: 3px solid #000;
  padding: 28px 20px;
  background: var(--bg);
  box-shadow: var(--shadow);
  text-align: center;
}

.info-6__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.info-6__col strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 900;
}

@media (max-width: 700px) {
  .info-6__cols {
    grid-template-columns: 1fr;
  }
}

.info-7 h2 {
  font-size: 1.75rem;
  color: var(--accent);
}

.info-7__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border: 3px solid #000;
  box-shadow: var(--shadow);
}

.info-7__table th,
.info-7__table td {
  padding: 14px 18px;
  text-align: left;
  border: 2px solid #000;
  font-size: 14px;
}

.info-7__table th {
  background: var(--primary);
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.info-7__table td {
  background: var(--bg);
  color: var(--muted);
}

.info-8 h2 {
  font-size: 2rem;
  color: var(--secondary);
}

.info-8__timeline {
  margin-top: 28px;
  padding-left: 32px;
  border-left: 4px solid var(--primary);
}

.info-8__item {
  position: relative;
  padding: 0 0 28px 24px;
}

.info-8__item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border: 3px solid #000;
  border-radius: 50%;
}

.info-8__item strong {
  display: block;
  color: var(--text);
  font-weight: 900;
  margin-bottom: 4px;
}

.info-9 h2 {
  font-size: 1.75rem;
  color: var(--primary);
}

.info-9__list {
  list-style: none;
  margin-top: 20px;
}

.info-9__list li {
  padding: 14px 16px 14px 48px;
  border: 2px solid #000;
  margin-bottom: 10px;
  background: var(--bg);
  box-shadow: 3px 3px 0 #000;
  color: var(--muted);
  font-size: 14px;
  position: relative;
}

.info-9__list li::before {
  content: "\2713";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: var(--secondary);
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 12px;
  color: #000;
  line-height: 22px;
  text-align: center;
}

.info-10 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.info-10__banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border: 4px solid #000;
  box-shadow: var(--shadow-lg);
  padding: 48px 32px;
  text-align: center;
}

.info-10__banner span {
  font-size: 3rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.info-10 h2 {
  font-size: 2rem;
  color: var(--text);
}

@media (max-width: 700px) {
  .info-10 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .offer-card__logo-wrap {
    width: 64px;
    height: 64px;
  }

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

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