.hero {
  position: relative;
  background: var(--bg);
  min-height: 300px;
  padding: 60px 20px 80px;
  text-align: center;
  overflow: hidden;
  border-bottom: 4px solid var(--bauhaus-black);
}

.hero__content {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 14px;
  animation: heroIn 0.7s ease both;
}

.hero__subtitle {
  color: rgba(245, 243, 255, 0.92);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  animation: heroIn 0.7s ease 0.12s both;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hero__shapes .s-circle {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bauhaus-red);
  border: 4px solid var(--bauhaus-black);
  top: 18%;
  left: 8%;
  opacity: 0.35;
  animation: floatY 5s ease-in-out infinite;
}

.hero__shapes .s-square {
  position: absolute;
  width: 56px;
  height: 56px;
  background: var(--bauhaus-yellow);
  border: 4px solid var(--bauhaus-black);
  top: 22%;
  right: 12%;
  opacity: 0.3;
  animation: floatY 6s ease-in-out 0.4s infinite reverse;
}

.hero__shapes .s-tri {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 36px solid transparent;
  border-right: 36px solid transparent;
  border-bottom: 62px solid var(--bauhaus-blue);
  bottom: 28%;
  left: 18%;
  opacity: 0.28;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 64px;
  z-index: 2;
}

.hero-wave path {
  fill: var(--surface);
}

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

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.offers-section {
  position: relative;
  padding: 56px 20px;
  background-color: var(--surface);
  background-image: linear-gradient(rgba(46, 16, 101, 0.82), rgba(46, 16, 101, 0.88)), url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid var(--bauhaus-black);
}

.offers-section::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  top: 24px;
  left: 24px;
  background: var(--bauhaus-yellow);
  border: 4px solid var(--bauhaus-black);
  opacity: 0.2;
  pointer-events: none;
}

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

.offers-title {
  text-align: center;
  text-transform: lowercase;
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 28px;
  color: var(--text);
}

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

.offer-card {
  background: #1a1035;
  border: 3px solid #2a1a4a;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

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

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

.offer-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: lowercase;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.offer-bonus {
  font-size: clamp(12px, 3.4vw, 15px);
  font-weight: 600;
  color: #fbbf24;
  line-height: 1.35;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.offer-terms {
  font-size: 11px;
  color: #9ca3af;
}

.offer-desc {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.4;
}

.offer-cta .btn {
  margin-top: 4px;
  background: #fbbf24;
  color: #1a1035;
  border-color: #111;
}

.info-section {
  padding: 56px 20px;
  position: relative;
  border-bottom: 3px solid var(--bauhaus-black);
}

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

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

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

.info-section h2 {
  font-size: clamp(22px, 3vw, 30px);
  text-transform: lowercase;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}

.info-section p {
  margin-bottom: 12px;
  color: rgba(245, 243, 255, 0.92);
  max-width: 68ch;
}

.info-cta {
  display: inline-flex;
  margin-top: 16px;
  padding: 10px 16px;
  background: var(--primary);
  color: var(--bg);
  border: 3px solid var(--bauhaus-black);
  font-weight: 600;
  text-transform: lowercase;
}

.info-cta:hover {
  background: var(--accent);
  color: var(--text);
}

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

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

.info-card {
  background: rgba(244, 114, 182, 0.08);
  border: 3px solid var(--bauhaus-black);
  padding: 16px;
}

.info-card h3 {
  text-transform: lowercase;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--primary);
}

.info-card p {
  font-size: 14px;
  margin: 0;
  color: var(--muted);
}

.layout-steps {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.step-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  border-left: 4px solid var(--bauhaus-red);
  padding-left: 12px;
}

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

.layout-quote {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 28px;
  align-items: stretch;
}

.pull-quote {
  background: var(--bauhaus-blue);
  border: 4px solid var(--bauhaus-black);
  padding: 24px;
  font-size: 20px;
  line-height: 1.4;
  text-transform: lowercase;
  display: flex;
  align-items: center;
}

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

.zig-block {
  padding: 18px;
  border: 3px solid var(--bauhaus-black);
  background: rgba(91, 33, 182, 0.35);
}

.zig-block:nth-child(2) {
  margin-top: 28px;
  background: rgba(236, 72, 153, 0.12);
}

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

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

.stat-band strong {
  display: block;
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 4px;
}

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

.layout-timeline {
  border-left: 4px solid var(--bauhaus-yellow);
  margin: 18px 0 0 8px;
  padding-left: 22px;
  display: grid;
  gap: 18px;
}

.timeline-item h3 {
  text-transform: lowercase;
  color: var(--primary);
  margin-bottom: 6px;
}

.layout-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 8px 8px 8px 28px;
  border-bottom: 2px solid var(--border);
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  background: var(--bauhaus-red);
  border: 2px solid var(--bauhaus-black);
}

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

.side-rail {
  background: var(--bauhaus-yellow);
  color: var(--bauhaus-black);
  border: 4px solid var(--bauhaus-black);
  padding: 18px 14px;
  text-transform: lowercase;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 16px;
}

.mosaic-a {
  grid-row: 1 / 3;
  background: rgba(244, 114, 182, 0.1);
  border: 3px solid var(--bauhaus-black);
  padding: 18px;
}

.mosaic-b,
.mosaic-c {
  border: 3px solid var(--bauhaus-black);
  padding: 16px;
  background: rgba(91, 33, 182, 0.4);
}

.mosaic-b {
  background: var(--bauhaus-blue);
}

.bg-band {
  background-image: url("/images/decorative/decor_1.png");
  background-size: cover;
  background-position: center;
  min-height: 160px;
  border: 3px solid var(--bauhaus-black);
  position: relative;
}

.bg-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(46, 16, 101, 0.55);
}

@media (max-width: 800px) {
  .hero {
    padding: 32px 16px 48px;
  }

  .hero-wave {
    height: 40px;
  }

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

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

  .layout-mosaic .mosaic-a {
    grid-row: auto;
  }

  .side-rail {
    max-width: 100%;
  }

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

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

  .decor-wrap,
  .bg-band {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
  }
}

@media (max-width: 375px) {
  .offers-section,
  .info-section,
  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

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

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

  .decor-img {
    max-width: 100%;
    max-height: 180px;
  }

  .hero__shapes .s-circle,
  .hero__shapes .s-square,
  .hero__shapes .s-tri {
    display: none;
  }
}
