.hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--surface);
  border-bottom: 4px solid var(--bauhaus-black);
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--bauhaus-red);
  border: 4px solid var(--bauhaus-black);
  top: 24px;
  left: 8%;
  border-radius: 50%;
  opacity: 0.85;
  animation: float-shape 7s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  background: var(--bauhaus-yellow);
  border: 4px solid var(--bauhaus-black);
  bottom: 32px;
  right: 10%;
  animation: float-shape 5s ease-in-out infinite reverse;
}

@keyframes float-shape {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.hero-sub {
  display: none;
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  background-color: var(--surface);
  background-image:
    linear-gradient(180deg, rgba(11, 18, 32, 0.88) 0%, rgba(18, 27, 46, 0.92) 100%),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover, cover;
  background-position: center;
  border-bottom: 4px solid var(--bauhaus-black);
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 56px,
    rgba(255, 255, 255, 0.03) 56px,
    rgba(255, 255, 255, 0.03) 57px
  );
  pointer-events: none;
}

.offers-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.offers-section h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 12px;
  text-transform: lowercase;
}

.offers-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 40px;
}

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

.offer-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.offer-logo-wrap {
  width: 160px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

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

.offer-card-bonus {
  font-size: 14px;
  font-weight: 600;
  color: #f0f0f0;
  line-height: 1.5;
  word-break: break-word;
  overflow-wrap: break-word;
}

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

.offer-card-desc {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}

.offer-cta {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #e63946, #c1121f);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  margin-top: auto;
  align-self: flex-start;
}

.offer-cta:hover {
  opacity: 0.92;
  color: #fff;
}

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

.info-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 20px;
  text-transform: lowercase;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.02em;
}

.info-section p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
  max-width: 70ch;
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: var(--bauhaus-blue);
  color: var(--text);
  font-weight: 700;
  text-transform: lowercase;
  border: 3px solid var(--bauhaus-black);
  transition: transform 0.2s ease;
}

.info-cta:hover {
  color: var(--text);
  transform: translateX(4px);
}

.layout-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.layout-split .decor-wrap {
  justify-self: end;
}

.layout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.info-card {
  border: 3px solid var(--bauhaus-black);
  padding: 16px;
  background: var(--surface);
}

.info-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
  text-transform: lowercase;
}

.info-card p {
  font-size: 13px;
  margin-bottom: 0;
}

.layout-offset {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
}

.layout-offset__rail {
  background: var(--bauhaus-red);
  border: 3px solid var(--bauhaus-black);
  min-height: 100%;
}

.layout-band {
  background: var(--surface);
  border: 4px solid var(--bauhaus-black);
  padding: 28px;
  position: relative;
}

.layout-band::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 40px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 28px solid var(--bauhaus-yellow);
}

.layout-checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.layout-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 15px;
}

.layout-checklist .mark {
  width: 18px;
  height: 18px;
  background: var(--secondary);
  border: 2px solid var(--bauhaus-black);
  flex-shrink: 0;
  margin-top: 2px;
}

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

.layout-zigzag .block:nth-child(2) {
  margin-top: 40px;
}

.block {
  border-left: 6px solid var(--bauhaus-blue);
  padding-left: 16px;
  background: rgba(59, 130, 246, 0.06);
  padding: 16px 16px 16px 20px;
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.stat-cell {
  border: 3px solid var(--bauhaus-black);
  padding: 18px 12px;
  text-align: center;
  background: var(--surface);
}

.stat-cell strong {
  display: block;
  font-size: 22px;
  color: var(--bauhaus-yellow);
  margin-bottom: 4px;
}

.stat-cell span {
  font-size: 12px;
  color: var(--muted);
  text-transform: lowercase;
}

.layout-quote {
  border: 4px solid var(--bauhaus-black);
  border-left-width: 14px;
  border-left-color: var(--bauhaus-red);
  padding: 24px;
  margin: 20px 0;
  background: var(--surface);
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
}

.layout-steps {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  counter-reset: step;
}

.step-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.step-num {
  width: 48px;
  height: 48px;
  background: var(--bauhaus-yellow);
  color: var(--bauhaus-black);
  border: 3px solid var(--bauhaus-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

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

.mosaic-panel {
  min-height: 180px;
  background-image: url("/images/decorative/decor_3.webp");
  background-size: cover;
  background-position: center;
  border: 4px solid var(--bauhaus-black);
  max-width: 100%;
}

.layout-columns {
  columns: 2;
  column-gap: 32px;
}

.layout-columns p {
  break-inside: avoid;
}

.layout-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.icon-tile {
  flex: 1 1 140px;
  border: 3px solid var(--bauhaus-black);
  padding: 16px;
  background: var(--surface);
  text-align: center;
}

.icon-tile .shape-circle,
.icon-tile .shape-square {
  margin: 0 auto 10px;
}

.icon-tile p {
  font-size: 13px;
  margin: 0;
  max-width: none;
}

.layout-aside {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
}

.aside-rail {
  background: var(--bauhaus-blue);
  border: 4px solid var(--bauhaus-black);
  padding: 16px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-transform: lowercase;
  writing-mode: horizontal-tb;
}

.info-1 {
  background: rgba(59, 130, 246, 0.04);
}

.info-1::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 4px solid var(--bauhaus-black);
  background: var(--bauhaus-yellow);
  right: 8%;
  top: 24px;
  opacity: 0.5;
}

.info-2 {
  background: var(--bg);
}

.info-3 .layout-band {
  animation: band-in 0.8s ease both;
}

@keyframes band-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.info-4 {
  background: rgba(167, 139, 250, 0.05);
}

.info-5 {
  background: var(--surface);
}

.info-6 {
  background: var(--bg);
}

.info-7 {
  background: rgba(34, 197, 94, 0.04);
}

.info-8 {
  background: var(--surface);
}

.info-9 {
  background: var(--bg);
}

.info-10 {
  background: rgba(59, 130, 246, 0.05);
}

@media (max-width: 900px) {
  .hero-sub {
    display: block;
  }

  .hero::before,
  .hero::after {
    opacity: 0.35;
    width: 60px;
    height: 60px;
  }

  .layout-split,
  .layout-zigzag,
  .layout-mosaic,
  .layout-aside,
  .layout-cards,
  .layout-stats,
  .layout-columns {
    grid-template-columns: 1fr;
    columns: 1;
  }

  .layout-zigzag .block:nth-child(2) {
    margin-top: 0;
  }

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

  .layout-offset__rail {
    height: 12px;
    min-height: 12px;
  }

  .layout-split .decor-wrap {
    justify-self: start;
    max-width: 100%;
    overflow: hidden;
  }

  .offer-logo-wrap {
    width: 140px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  .offer-card-bonus {
    font-size: 13px;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 400px) {
  .hero::before,
  .hero::after {
    width: 40px;
    height: 40px;
    left: 4%;
    right: 4%;
  }

  .offer-logo-wrap {
    width: 120px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  .offer-card-bonus {
    font-size: 12px;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}
