.hero {
  width: 100%;
  background: var(--primary);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(3, 7, 18, 0.08) 2px, rgba(3, 7, 18, 0.08) 4px);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.hero__headline {
  font-size: clamp(32px, 7vw, 64px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.1;
  margin-bottom: 20px;
  transform: scaleX(1.08);
}

.hero__headline .hero__light {
  color: var(--text);
}

.hero__headline .hero__accent {
  color: var(--accent);
}

.hero__subtitle {
  font-size: clamp(15px, 2.5vw, 18px);
  color: rgba(236, 254, 255, 0.85);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.offers {
  position: relative;
  padding: 64px 24px;
  margin-top: 0;
  background-image: url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
  background-color: var(--bg);
}

.offers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.92) 0%, rgba(2, 6, 23, 0.88) 100%);
}

.offers__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.offers__title {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 12px;
}

.offers__grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.offer-card {
  background: #ffffff;
  color: #1a1a1a;
  border: 3px solid #333;
  width: 320px;
  box-shadow: 10px 10px 0 #000;
  display: flex;
  flex-direction: column;
}

.offer-card__logo {
  width: 200px;
  height: 64px;
  margin: 20px auto 0;
  padding: 0;
  background: #f0f0f0;
  border-bottom: 2px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.offer-card__name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #111;
}

.offer-card__bonus-wrap {
  margin-bottom: 12px;
}

.offer-card__bonus {
  font-size: 13px;
  color: #333;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.offer-card__terms {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
  display: block;
}

.offer-card__desc {
  font-size: 12px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.4;
}

.offer-card__cta {
  margin-top: auto;
}

.offer-card__btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #1a472a;
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.offer-card__btn:hover {
  background: #2d6a3e;
}

.info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  position: relative;
}

.info-section h2 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

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

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

.info-1__visual {
  position: relative;
}

.info-1__visual img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
  filter: drop-shadow(4px 0 0 rgba(249, 115, 22, 0.5)) drop-shadow(-4px 0 0 rgba(34, 211, 238, 0.5));
  transition: filter 0.2s;
}

.info-1__visual img:hover {
  filter: invert(1) drop-shadow(4px 0 0 rgba(249, 115, 22, 0.5));
}

.info-1__tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}

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

.info-2__card {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--secondary);
}

.info-2__card h3 {
  font-size: 14px;
  color: var(--secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-3 {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: none;
}

.info-3__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.info-3__img {
  flex-shrink: 0;
  max-width: 280px;
}

.info-3__img img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  filter: drop-shadow(3px 0 0 rgba(34, 211, 238, 0.6)) drop-shadow(-3px 0 0 rgba(249, 115, 22, 0.6));
}

.info-3__list {
  list-style: none;
  margin-top: 16px;
}

.info-3__list li {
  padding: 10px 0 10px 20px;
  border-left: 2px solid var(--primary);
  margin-bottom: 8px;
  font-size: 14px;
}

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

.info-4__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
  text-align: left;
}

.info-4__col {
  padding: 24px;
  background: rgba(34, 211, 238, 0.04);
  border: 1px solid var(--border);
}

.info-4__col h3 {
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 10px;
}

.info-5__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  border-left: 2px solid var(--primary);
  padding-left: 24px;
}

.info-5__step {
  position: relative;
  padding: 16px 0 16px 8px;
}

.info-5__step::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 22px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

.info-5__step-num {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.2em;
  margin-bottom: 4px;
}

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

.info-6__rail {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  overflow: hidden;
  max-height: 280px;
  line-height: 0.9;
}

.info-6__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.info-6__tile {
  padding: 16px;
  background: var(--surface);
  border: 1px dashed var(--border);
  font-size: 14px;
}

.info-7__band {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.info-7__stat {
  flex: 1;
  min-width: 140px;
  padding: 16px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.info-8 {
  background-image: linear-gradient(135deg, rgba(249, 115, 22, 0.06) 0%, transparent 60%);
}

.info-8__quote {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  color: var(--accent);
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 20px 0;
  transform: translateX(-8px);
  clip-path: inset(0 0 0 0);
}

.info-8__img-wrap {
  float: right;
  max-width: 260px;
  margin: 0 0 16px 24px;
}

.info-8__img-wrap img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  filter: drop-shadow(2px 0 0 rgba(34, 211, 238, 0.5)) drop-shadow(-2px 0 0 rgba(249, 115, 22, 0.5));
}

.info-9__overlap {
  position: relative;
  margin-top: 24px;
}

.info-9__bg-text {
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: clamp(60px, 12vw, 120px);
  font-weight: 900;
  color: rgba(34, 211, 238, 0.06);
  line-height: 1;
  z-index: 0;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}

.info-9__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-9__panel {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.info-10__mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.info-10__main {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.info-10__side img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  filter: drop-shadow(3px 0 0 rgba(249, 115, 22, 0.4)) drop-shadow(-3px 0 0 rgba(34, 211, 238, 0.4));
}

.info-10__variants {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.info-10__variant {
  padding: 6px 14px;
  font-size: 12px;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

@media (max-width: 768px) {
  .hero {
    padding: 32px 20px;
  }

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

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

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

  .info-1__visual,
  .info-3__img,
  .info-8__img-wrap,
  .info-10__side {
    max-width: 100%;
    overflow: hidden;
  }

  .info-1__visual img,
  .info-3__img img,
  .info-8__img-wrap img,
  .info-10__side img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 280px;
  }

  .info-9__overlap {
    overflow: hidden;
  }

  .info-9__bg-text {
    max-width: 100%;
    font-size: clamp(40px, 10vw, 80px);
  }

  .info-6__rail {
    overflow: hidden;
    max-width: 100%;
  }

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

  .info-3__wrap {
    flex-direction: column;
  }

  .info-3__img {
    max-width: 100%;
  }

  .info-4__split {
    grid-template-columns: 1fr;
  }

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

  .info-6__rail {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 24px;
    max-height: none;
  }

  .info-8__img-wrap {
    float: none;
    max-width: 100%;
    margin: 16px 0;
  }

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

  .info-10__mosaic {
    grid-template-columns: 1fr;
  }

  .offer-card {
    width: 100%;
    max-width: 340px;
  }
}

.dead-pixel--1 { top: 12%; left: 8%; }
.dead-pixel--2 { top: 45%; right: 15%; background: var(--primary); }
.dead-pixel--3 { bottom: 20%; left: 22%; background: var(--secondary); }
