.hero-section {
  position: relative;
  z-index: 10;
  height: 120px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.92;
}

.hero-subtitle-strip {
  position: relative;
  z-index: 10;
  height: 40px;
  background: rgba(4, 28, 44, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.offers-section {
  position: relative;
  z-index: 10;
  padding: 60px 20px;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 11, 19, 0.88) 0%, rgba(4, 28, 44, 0.82) 100%);
  z-index: 0;
}

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

.offers-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 36px;
  color: var(--text);
}

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

.offer-card {
  background: linear-gradient(145deg, #1a3a52 0%, #0d2538 100%);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.offer-logo-wrap {
  width: 120px;
  height: 60px;
  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;
  max-width: none;
}

.offer-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

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

.offer-bonus {
  font-size: 1rem;
  font-weight: 600;
  color: #ffd700;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.35;
  max-width: 100%;
}

.offer-terms {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.55);
}

.offer-cta {
  display: inline-block;
  padding: 10px 24px;
  background: #e94560;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.offer-cta:hover {
  background: #ff6b81;
  transform: scale(1.05);
  color: #fff;
}

.info-sections {
  position: relative;
  z-index: 10;
}

.info-block {
  padding: 56px 20px;
  position: relative;
}

.info-block:nth-child(odd) {
  background: rgba(4, 28, 44, 0.5);
}

.info-block:nth-child(even) {
  background: rgba(1, 11, 19, 0.6);
}

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

.info-block h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}

.info-block p {
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 720px;
}

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--text);
  border-radius: 24px;
  font-weight: 600;
  box-shadow: var(--shadow-clay);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.info-cta-link:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-clay-hover);
  color: var(--text);
}

.layout-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.layout-split-reverse {
  direction: rtl;
}

.layout-split-reverse > * {
  direction: ltr;
}

.decor-img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-clay);
  box-shadow: var(--shadow-clay);
}

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

.clay-card {
  background: var(--surface);
  border-radius: var(--radius-clay);
  padding: 24px;
  box-shadow: var(--shadow-clay);
  border: 1px solid var(--border);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.clay-card:hover {
  transform: translateY(-3px) scale(1.02);
}

.clay-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.clay-card p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

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

.feature-list {
  list-style: none;
  margin-top: 16px;
}

.feature-list li {
  padding: 12px 16px;
  margin-bottom: 8px;
  background: var(--surface);
  border-radius: 16px;
  color: var(--muted);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
  font-size: 0.9rem;
}

.feature-list li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

.layout-timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 20px;
}

.timeline-item {
  position: relative;
  padding-bottom: 24px;
  padding-left: 24px;
  border-left: 2px solid var(--primary);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

.timeline-item h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.layout-stat-band {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.stat-pill {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius-clay);
  box-shadow: var(--shadow-clay);
}

.stat-pill strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-pill span {
  font-size: 0.8rem;
  color: var(--muted);
}

.layout-quote {
  margin-top: 24px;
  padding: 28px 32px;
  background: var(--surface);
  border-radius: var(--radius-clay);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-clay);
}

.layout-quote p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0;
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.mosaic-main {
  border-radius: var(--radius-clay);
  overflow: hidden;
  max-height: 320px;
  max-width: 100%;
}

.mosaic-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mosaic-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mosaic-tile {
  padding: 16px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: var(--shadow-clay);
  font-size: 0.88rem;
  color: var(--muted);
}

.layout-zigzag {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.zigzag-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.zigzag-row:nth-child(even) {
  flex-direction: row-reverse;
}

.zigzag-icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-clay);
}

.zigzag-text h3 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.zigzag-text p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.layout-bg-decor {
  position: relative;
  overflow: hidden;
}

.layout-bg-decor::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 200px;
  background-image: url("/images/decorative/decor_4.jpg");
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-clay);
  opacity: 0.35;
  pointer-events: none;
}

.layout-bg-decor .info-inner {
  position: relative;
  z-index: 1;
}

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

.compare-col {
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius-clay);
  box-shadow: var(--shadow-clay);
}

.compare-col h3 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.compare-col ul {
  list-style: none;
}

.compare-col li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

.clay-keywords {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.info-inner-spaced {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .hero-section {
    height: 80px;
  }

  .hero-headline {
    white-space: normal;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    text-align: center;
    padding: 0 12px;
  }

  .hero-subtitle-strip {
    height: auto;
    min-height: 40px;
    padding: 8px 12px;
    text-align: center;
  }

  .offer-card {
    min-width: 0;
    overflow: hidden;
  }

  .layout-split,
  .layout-list-grid,
  .layout-mosaic,
  .layout-compare {
    grid-template-columns: 1fr;
  }

  .layout-split-reverse {
    direction: ltr;
  }

  .zigzag-row,
  .zigzag-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .layout-bg-decor::after {
    right: 0;
    width: 140px;
    height: 100px;
    opacity: 0.2;
  }

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

  .mosaic-main {
    max-height: 220px;
  }

  .offer-logo-wrap {
    width: 120px;
    height: 60px;
  }

  .offer-logo-wrap img {
    object-fit: contain;
    object-position: center;
  }

  .offer-bonus {
    font-size: 0.9rem;
  }

  .info-block {
    overflow-x: hidden;
  }
}
