.offers-section {
  position: relative;
  padding: 80px 48px;
  background-color: var(--surface);
  background-image:
    linear-gradient(135deg, rgba(34, 211, 238, 0.06) 0%, transparent 50%),
    linear-gradient(225deg, rgba(244, 114, 182, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 70%, rgba(163, 230, 53, 0.05), transparent 60%);
  overflow: hidden;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(237, 233, 254, 0.02) 80px,
      rgba(237, 233, 254, 0.02) 81px
    );
  pointer-events: none;
}

.offers-section__header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.offers-section__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  margin-bottom: 12px;
}

.offers-section__header p {
  color: var(--muted);
  font-size: 15px;
}

.offers-grid {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.offer-card {
  background: linear-gradient(145deg, #1a1d35 0%, #121528 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 28px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: luxury-reveal 0.8s ease forwards;
  opacity: 0;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(34, 211, 238, 0.12);
}

.offer-card__logo-wrap {
  width: 120px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
  flex-shrink: 0;
}

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

.offer-card__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

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

.offer-card__bonus {
  color: var(--secondary);
  font-size: 1rem;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.offer-card__terms {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

.offer-card__desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.offer-card__cta {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.offer-card__cta:hover {
  background: var(--primary);
  color: var(--bg);
}

.info-section {
  padding: 72px 48px;
  position: relative;
  opacity: 0;
  animation: luxury-reveal 0.9s ease forwards;
}

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

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

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

.info-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  margin-bottom: 20px;
}

.info-section p {
  color: var(--muted);
  margin-bottom: 16px;
}

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.info-cta-link:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

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

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

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

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

.layout-card-item {
  padding: 24px;
  background: rgba(14, 16, 32, 0.6);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
}

.layout-card-item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.layout-card-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.layout-quote {
  border-left: 4px solid var(--accent);
  padding: 24px 32px;
  background: rgba(244, 114, 182, 0.06);
  margin: 24px 0;
}

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

.layout-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin: 20px 0;
  list-style: none;
}

.layout-list-grid li {
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  font-size: 14px;
}

.layout-list-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}

.layout-stat-band {
  display: flex;
  gap: 32px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.layout-stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--border);
}

.layout-stat__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary);
  display: block;
}

.layout-stat__label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.layout-timeline {
  position: relative;
  padding-left: 32px;
  margin: 24px 0;
}

.layout-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 16px;
}

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

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

.timeline-item p {
  font-size: 14px;
  margin-bottom: 0;
}

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

.layout-mosaic__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.layout-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.layout-pill {
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  border-radius: 20px;
}

.layout-accordion-block {
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.layout-accordion-block h3 {
  padding: 16px 20px;
  background: rgba(34, 211, 238, 0.04);
  font-size: 1rem;
  color: var(--text);
  margin: 0;
}

.layout-accordion-block p {
  padding: 16px 20px;
  margin: 0;
  font-size: 14px;
}

.luxury-property-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(34, 211, 238, 0.1);
  pointer-events: none;
}

.real-estate-frame {
  position: relative;
  padding: 8px;
  border: 1px solid var(--border);
}

.real-estate-frame::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  pointer-events: none;
}

.architecture-line {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}

@keyframes luxury-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.info-1 { animation-delay: 0.1s; }
.info-2 { animation-delay: 0.15s; }
.info-3 { animation-delay: 0.2s; }
.info-4 { animation-delay: 0.25s; }
.info-5 { animation-delay: 0.3s; }
.info-6 { animation-delay: 0.35s; }
.info-7 { animation-delay: 0.4s; }
.info-8 { animation-delay: 0.45s; }
.info-9 { animation-delay: 0.5s; }
.info-10 { animation-delay: 0.55s; }

@media (max-width: 768px) {
  .offers-section {
    padding: 48px 20px;
  }

  .info-section {
    padding: 48px 20px;
  }

  .layout-split,
  .layout-mosaic {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

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

  .offer-card__logo-wrap {
    width: 120px;
    height: 80px;
  }

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