main {
  position: relative;
  z-index: 1;
}

.hero-section {
  padding: 64px 24px 80px;
  position: relative;
}

.hero-cards {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  min-height: 200px;
}

.hero-card-back {
  position: absolute;
  top: 10px;
  left: 20px;
  right: 0;
  background: #221A42;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-card-front {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-card-front h1 {
  font-variant: small-caps;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--text);
}

.hero-card-back p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.offers-section {
  padding: 64px 24px;
  position: relative;
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(15, 10, 31, 0.88), rgba(15, 10, 31, 0.92)),
    radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(245, 243, 255, 0.015) 20px,
    rgba(245, 243, 255, 0.015) 21px
  );
  pointer-events: none;
}

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

.offers-section h2 {
  font-variant: small-caps;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.06em;
}

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

.offer-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-card-logo {
  width: 180px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.offer-bonus {
  color: #1A1433;
  font-size: 0.85rem;
  line-height: 1.5;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms {
  color: #6B7280;
  font-size: 0.75rem;
}

.offer-description {
  color: #4B5563;
  font-size: 0.8rem;
  line-height: 1.5;
}

.offer-cta {
  display: inline-block;
  background: #16A34A;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  margin-top: auto;
}

.offer-cta:hover {
  background: #15803D;
}

.info-section {
  padding: 56px 24px;
  position: relative;
}

.info-section:nth-child(even) {
  background: rgba(26, 20, 51, 0.4);
}

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

.info-section h2 {
  font-variant: small-caps;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  color: var(--text);
}

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

.info-section ul {
  color: var(--muted);
  margin: 16px 0;
  padding-left: 24px;
}

.info-section li {
  margin-bottom: 8px;
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-variant: small-caps;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

.info-cta:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

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

.info-1-layout .decor-img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border);
}

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

.info-2-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
}

.info-2-card h3 {
  font-variant: small-caps;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.info-2-card p {
  font-size: 0.9rem;
  margin: 0;
}

.info-3-numbered {
  counter-reset: info-num;
}

.info-3-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.info-3-item::before {
  counter-increment: info-num;
  content: counter(info-num);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  min-width: 48px;
}

.info-4-pullquote {
  border-left: 4px solid var(--primary);
  padding: 24px 32px;
  background: rgba(139, 92, 246, 0.08);
  margin: 24px 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.1rem;
}

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

.info-5-stat {
  text-align: center;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

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

.info-5-stat span {
  font-size: 0.85rem;
  color: var(--muted);
}

.info-6-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

.info-6-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.info-6-table th,
.info-6-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
  color: var(--muted);
}

.info-6-table th {
  background: var(--surface);
  color: var(--text);
  font-variant: small-caps;
}

.info-7-slots {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.info-7-slot {
  flex: 1;
  min-width: 140px;
  padding: 16px;
  background: linear-gradient(135deg, var(--surface) 0%, #221A42 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
}

.info-7-slot strong {
  display: block;
  font-variant: small-caps;
  color: var(--primary);
  margin-bottom: 6px;
}

.info-7-slot span {
  font-size: 0.85rem;
  color: var(--muted);
}

.info-7-decor {
  float: right;
  max-width: 280px;
  max-height: 200px;
  margin: 0 0 16px 24px;
  border-radius: 8px;
  object-fit: cover;
}

.info-8-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.info-8-checklist li {
  padding: 12px 16px 12px 40px;
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  margin-bottom: 10px;
}

.info-8-checklist li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--secondary);
  font-weight: bold;
}

.info-9-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 24px;
}

.info-9-col h3 {
  font-variant: small-caps;
  margin-bottom: 12px;
  color: var(--secondary);
}

.info-9-col.cons h3 {
  color: #F87171;
}

.info-9-col ul {
  list-style: none;
  padding: 0;
}

.info-9-col li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.info-10-steps {
  counter-reset: step;
  margin-top: 24px;
}

.info-10-step {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border);
}

.info-10-step::before {
  counter-increment: step;
  content: counter(step);
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

.info-3-decor-wrap {
  text-align: center;
  margin-top: 32px;
  max-width: 100%;
  overflow: hidden;
}

.info-3-decor-wrap img {
  max-width: 100%;
  max-height: 260px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-card-back {
    display: none;
  }

  .hero-card-front {
    padding: 24px;
  }

  .hero-card-front h1 {
    font-size: 1.6rem;
  }

  .offer-card-logo {
    width: 160px;
    height: 56px;
  }

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

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

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

  .info-5-stats {
    grid-template-columns: 1fr;
  }

  .info-7-decor {
    float: none;
    max-width: 100%;
    margin: 0 0 16px;
  }

  .info-9-columns {
    grid-template-columns: 1fr;
  }
}
