.hero {
  display: flex;
  min-height: 320px;
  position: relative;
  background: var(--bg);
}

.hero__stripe {
  width: 80px;
  flex-shrink: 0;
  background: var(--accent);
  box-shadow: 4px 0 0 rgba(2, 6, 23, 0.06);
}

.hero__main {
  flex: 1;
  padding: 56px 48px 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__main h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  max-width: 640px;
}

.hero__main p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
}

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

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(248, 250, 252, 0.85) 100%);
  pointer-events: none;
}

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

.offers-section .section-title {
  margin-bottom: 8px;
}

.offers-intro {
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 560px;
}

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

.offer-card {
  background: #1a2744;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.2);
  transition: transform 0.25s;
}

.offer-card:hover {
  transform: translateY(-4px);
}

.offer-card__logo-wrap {
  width: 220px;
  height: 72px;
  margin: 0 auto;
  background: #0f172a;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.offer-card__logo {
  width: 100%;
  height: 100%;
  max-width: none;
  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: 1.2rem;
  color: #f8fafc;
  margin-bottom: 10px;
}

.offer-card__bonus-group {
  margin-bottom: 14px;
}

.offer-card__bonus {
  font-size: clamp(0.82rem, 2.5vw, 0.95rem);
  color: #38bdf8;
  font-weight: 600;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-card__terms {
  display: block;
  font-size: 10px;
  color: rgba(148, 163, 184, 0.8);
  margin-top: 4px;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.5px;
}

.offer-card__cta {
  margin-top: auto;
  align-self: flex-start;
  background: #0ea5e9;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 12px;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.offer-card__cta:hover {
  background: #38bdf8;
  color: #fff;
}

.info-section {
  padding: 56px 0;
  position: relative;
}

.info-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.5);
}

.info-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 4px, transparent 4px, transparent 8px);
  opacity: 0.5;
}

.info-1__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

.info-1__img {
  max-width: 280px;
  max-height: 320px;
  object-fit: cover;
  box-shadow: var(--paper-shadow-lg);
  transform: rotate(-1.5deg);
  border-radius: 2px;
}

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

.info-1__card {
  background: var(--surface);
  padding: 16px;
  font-size: 14px;
  box-shadow: 3px 3px 0 rgba(2, 6, 23, 0.08);
  transform: rotate(0.5deg);
}

.info-1__cta {
  display: inline-block;
  margin-top: 20px;
}

.info-2__band {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.info-2__vip-img {
  max-width: 200px;
  max-height: 320px;
  object-fit: cover;
  box-shadow: var(--paper-shadow-lg);
  transform: rotate(1.5deg);
  flex-shrink: 0;
}

.info-2__content {
  flex: 1;
  background: var(--surface);
  padding: 32px;
  box-shadow: var(--paper-shadow);
  transform: rotate(0.3deg);
}

.info-2__sidebar {
  width: 200px;
  flex-shrink: 0;
  background: var(--primary);
  padding: 24px;
  color: var(--surface);
  box-shadow: var(--paper-shadow);
  transform: rotate(-1deg);
}

.info-2__sidebar li {
  list-style: none;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
  font-family: "Courier New", Courier, monospace;
}

.info-3__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.info-3__paper {
  background: var(--surface);
  padding: 28px;
  box-shadow: var(--paper-shadow);
}

.info-3__img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  box-shadow: var(--paper-shadow-lg);
  transform: rotate(1deg);
}

.info-3__quote {
  font-style: italic;
  color: var(--muted);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin-top: 16px;
}

.info-4__mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.info-4__text-block {
  background: var(--surface);
  padding: 32px;
  box-shadow: var(--paper-shadow);
}

.info-4__img-wrap {
  position: relative;
}

.info-4__img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  box-shadow: var(--paper-shadow-lg);
  transform: rotate(-2deg);
}

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

.info-4__tag {
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--bg);
  padding: 6px 12px;
  box-shadow: 2px 2px 0 rgba(2, 6, 23, 0.08);
}

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

.info-5__img {
  max-width: 280px;
  max-height: 320px;
  object-fit: cover;
  margin: 0 auto 24px;
  box-shadow: var(--paper-shadow-lg);
  transform: rotate(-1deg);
}

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

.info-5__col {
  background: var(--surface);
  padding: 20px;
  box-shadow: var(--paper-shadow);
}

.info-5__cta {
  margin-top: 28px;
}

.info-6__rail {
  display: block;
  max-width: 800px;
}

.info-6__img {
  max-width: 220px;
  max-height: 320px;
  object-fit: cover;
  box-shadow: var(--paper-shadow-lg);
}

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

.info-6__list li {
  padding: 12px 16px;
  margin-bottom: 8px;
  background: var(--surface);
  box-shadow: 2px 2px 0 rgba(2, 6, 23, 0.06);
  font-size: 14px;
}

.info-6__list li::before {
  content: "› ";
  color: var(--primary);
  font-weight: bold;
}

.info-7__stack {
  max-width: 800px;
  margin: 0 auto;
}

.info-7__pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.info-7__pro,
.info-7__con {
  padding: 24px;
  box-shadow: var(--paper-shadow);
}

.info-7__pro {
  background: rgba(14, 165, 233, 0.06);
  transform: rotate(-0.5deg);
}

.info-7__con {
  background: var(--surface);
  transform: rotate(0.5deg);
}

.info-7__pro h3,
.info-7__con h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-7__pro ul,
.info-7__con ul {
  margin-left: 18px;
  font-size: 14px;
}

.info-7__cta {
  margin-top: 20px;
}

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

.info-8__step {
  background: var(--surface);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--paper-shadow);
  position: relative;
}

.info-8__step-num {
  font-family: "Courier New", Courier, monospace;
  font-size: 2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.info-8__step p {
  font-size: 13px;
  color: var(--muted);
}

.info-8__cta-wrap {
  text-align: center;
  margin-top: 28px;
}

.info-9__zigzag {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-9__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
}

.info-9__num {
  width: 56px;
  height: 56px;
  background: var(--text);
  color: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 1.25rem;
  box-shadow: var(--paper-shadow);
  transform: rotate(-3deg);
}

.info-9__block {
  background: var(--surface);
  padding: 20px 24px;
  box-shadow: var(--paper-shadow);
}

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

.info-10__panel {
  background: var(--surface);
  padding: 32px;
  box-shadow: var(--paper-shadow-lg);
  transform: rotate(0.4deg);
}

.info-10__stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.info-10__stat {
  text-align: center;
  padding: 16px;
  background: var(--bg);
  box-shadow: 2px 2px 0 rgba(2, 6, 23, 0.08);
}

.info-10__stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: "Courier New", Courier, monospace;
}

.info-10__stat-label {
  font-size: 11px;
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero__stripe {
    width: 100%;
    height: 6px;
  }

  .hero__main {
    padding: 40px 24px;
    text-align: center;
    align-items: center;
  }

  .hero__main h1,
  .hero__main p {
    max-width: 100%;
  }

  .info-1__layout,
  .info-3__split,
  .info-4__mosaic,
  .info-5__cols,
  .info-7__pros-cons,
  .info-8__steps,
  .info-10__intro-layout {
    grid-template-columns: 1fr;
  }

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

  .info-2__band {
    flex-direction: column;
  }

  .info-2__sidebar {
    width: 100%;
  }

  .info-1__img,
  .info-4__img,
  .info-6__img {
    max-width: 100%;
    margin: 0 auto;
  }
}

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

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

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

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

@media (max-width: 480px) {
  .info-1__layout,
  .info-3__split,
  .info-4__mosaic,
  .info-6__rail {
    overflow: hidden;
  }

  .info-1__img,
  .info-2__vip-img,
  .info-3__img,
  .info-4__img,
  .info-5__img,
  .info-6__img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    transform: none;
    margin-left: auto;
    margin-right: auto;
  }

  .info-2__band {
    overflow: hidden;
  }
}
