.hero {
  background: var(--bg);
  padding: 64px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.offers-section {
  position: relative;
  padding: 56px 20px;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.94)),
    url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
}

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

.offers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.offers-inner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease 0.1s both;
}

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

.offer-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(56, 189, 248, 0.2);
}

.offer-card-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.offer-logo-wrap {
  width: 72px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
}

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

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

.offer-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.offer-bonus {
  color: #1a1a2e;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.offer-terms {
  color: #888;
  font-size: 0.72rem;
}

.offer-desc {
  color: #666;
  font-size: 0.82rem;
  line-height: 1.45;
}

.offer-cta {
  display: block;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #e94560 0%, #c23152 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin-top: auto;
  font-family: inherit;
}

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

.info-section {
  padding: 56px 20px;
  animation: fadeInUp 0.7s ease both;
}

.info-section:nth-child(odd) {
  background: rgba(30, 41, 59, 0.35);
}

.info-section:nth-child(even)::before {
  content: "";
  display: block;
  max-width: var(--max-w);
  margin: -56px auto 0;
  height: 1px;
  background: var(--border);
}

.info-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.info-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.25;
}

.info-section p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 14px;
}

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

.layout-split-img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
}

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

.type-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 20px;
  transition: border-color 0.2s;
}

.type-card:hover {
  border-color: var(--secondary);
}

.type-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}

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

.layout-band {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
}

.layout-band-img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  margin-top: 20px;
}

.layout-timeline {
  margin: 24px 0;
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}

.timeline-item {
  margin-bottom: 20px;
  position: relative;
}

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

.timeline-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 14px;
}

.timeline-item span {
  color: var(--muted);
  font-size: 14px;
}

.layout-quote {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 0;
}

.layout-quote blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 24px;
  border: none;
}

.layout-asymmetric {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
}

.asymmetric-sidebar {
  background: var(--surface);
  border-left: 3px solid var(--secondary);
  padding: 24px;
}

.asymmetric-sidebar h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  margin-bottom: 12px;
}

.asymmetric-sidebar ul {
  list-style: none;
  margin: 0;
}

.asymmetric-sidebar li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 20px;
  text-align: center;
}

.stat-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 4px;
}

.layout-stats-img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  margin: 20px auto 0;
}

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

.numbered-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.numbered-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  flex-shrink: 0;
}

.numbered-item h3 {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 6px;
}

.numbered-item p {
  font-size: 13px;
  margin: 0;
}

.layout-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.pros-box,
.cons-box {
  padding: 24px;
  border: 1px solid var(--border);
}

.pros-box {
  border-top: 3px solid var(--accent);
}

.cons-box {
  border-top: 3px solid #f87171;
}

.pros-box h3,
.cons-box h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.pros-box ul,
.cons-box ul {
  list-style: none;
  margin: 0;
}

.pros-box li,
.cons-box li {
  font-size: 14px;
  color: var(--muted);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.pros-box li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.cons-box li::before {
  content: "−";
  position: absolute;
  left: 0;
  color: #f87171;
}

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

.magazine-pull {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--secondary);
  border-left: 3px solid var(--secondary);
  padding-left: 20px;
  margin: 20px 0;
}

.magazine-img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .layout-split,
  .layout-band,
  .layout-asymmetric,
  .layout-magazine,
  .layout-numbered,
  .layout-proscons {
    grid-template-columns: 1fr;
  }

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

  .layout-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 32px 20px;
  }

  .hero-title {
    -webkit-text-stroke: 1px var(--text);
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .offer-logo-wrap {
    width: 64px;
    height: 42px;
  }

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

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

  .layout-split-img,
  .layout-band-img,
  .layout-stats-img,
  .magazine-img {
    max-width: 100%;
    width: 100%;
    max-height: 220px;
    object-fit: cover;
  }

  .info-inner,
  .layout-split,
  .layout-band,
  .layout-magazine {
    overflow: hidden;
    max-width: 100%;
  }
}
