.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.hero-left {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  border-right: 2px solid var(--accent);
}

.hero-left h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.25;
  color: var(--text);
  max-width: 520px;
}

.hero-right {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

.hero-right p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
}

.offers-section {
  position: relative;
  padding: 72px 24px;
  background-image: url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 0, 36, 0.9);
}

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

.offers-inner h2 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 10px;
}

.offers-sub {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 28px;
}

.offer-card {
  background: linear-gradient(145deg, #2a0a3a, #1a0524);
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(216, 180, 254, 0.1);
}

.offer-card-logo {
  width: 280px;
  height: 90px;
  margin: 0 auto;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
  flex-shrink: 0;
}

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

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

.offer-card-name {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #fff;
}

.offer-bonus-group {
  margin-bottom: 12px;
}

.offer-bonus {
  display: block;
  font-size: 1rem;
  color: #e9d5ff;
  font-weight: 600;
}

.offer-terms {
  display: block;
  font-size: 11px;
  color: rgba(233, 213, 255, 0.55);
  margin-top: 4px;
}

.offer-desc {
  font-size: 12px;
  color: rgba(233, 213, 255, 0.7);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.offer-cta {
  display: inline-block;
  text-align: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

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

.info-section {
  padding: 72px 24px;
  border-bottom: 1px solid var(--border);
}

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

.info-section h2 {
  font-size: 1.6rem;
  margin-bottom: 24px;
  color: var(--text);
}

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

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: var(--primary);
  color: var(--text);
  font-size: 14px;
  border: 1px solid var(--border);
}

.info-cta:hover {
  background: var(--surface);
  color: var(--secondary);
}

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

.info-1-layout ul {
  list-style: none;
  margin: 0;
}

.info-1-layout li {
  padding: 14px 0 14px 20px;
  border-left: 3px solid var(--secondary);
  margin-bottom: 8px;
  color: var(--muted);
}

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

.info-card {
  background: var(--surface);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--secondary);
}

.info-card p {
  font-size: 14px;
  margin: 0;
}

.info-3-layout ol {
  counter-reset: step;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.info-3-layout li {
  counter-increment: step;
  position: relative;
  padding: 20px 20px 20px 64px;
  margin-bottom: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
}

.info-3-layout li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.info-4-band {
  position: relative;
  padding: 48px 32px;
  background-image: url("/images/decorative/decor_2.webp");
  background-size: cover;
  background-position: center;
}

.info-4-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 75, 0.88);
}

.info-4-band .info-inner {
  position: relative;
  z-index: 1;
}

.info-4-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.info-4-table th,
.info-4-table td {
  padding: 14px 16px;
  text-align: left;
  border: 1px solid var(--border);
  font-size: 14px;
}

.info-4-table th {
  background: rgba(0, 0, 255, 0.2);
  color: var(--text);
}

.info-4-table td {
  color: var(--muted);
}

.info-5-quote {
  border-left: 4px solid var(--accent);
  padding: 24px 32px;
  margin: 28px 0;
  background: var(--surface);
  font-size: 1.1rem;
  color: var(--muted);
  font-style: italic;
}

.info-6-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.info-6-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.info-6-marker {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  margin-top: 8px;
}

.info-6-item p {
  margin: 0;
  font-size: 14px;
}

.info-7-timeline {
  position: relative;
  margin-top: 32px;
  padding-left: 32px;
  border-left: 2px solid var(--secondary);
}

.info-7-step {
  position: relative;
  padding-bottom: 28px;
}

.info-7-step::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

.info-7-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--secondary);
}

.info-7-media {
  margin-top: 32px;
  max-width: 500px;
}

.info-7-media img {
  width: 100%;
  height: auto;
  max-width: 500px;
  border: 1px solid var(--border);
}

.info-8-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.info-stat-box {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-align: center;
}

.info-stat-box h3 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 12px;
}

.info-stat-box p {
  margin: 0 auto;
  font-size: 14px;
}

.info-9-dl dt {
  font-size: 1rem;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 6px;
}

.info-9-dl dd {
  color: var(--muted);
  margin: 0 0 0 16px;
  font-size: 14px;
}

.info-10-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.info-10-aside {
  background: var(--surface);
  padding: 24px;
  border: 1px solid var(--border);
}

.info-10-aside h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--secondary);
}

.info-10-aside ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

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

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-left {
    border-right: none;
    border-bottom: 2px solid var(--accent);
    padding: 40px 24px;
  }

  .hero-right {
    padding: 40px 24px;
  }

  .info-1-layout,
  .info-2-layout,
  .info-6-checklist,
  .info-8-stats,
  .info-10-split {
    grid-template-columns: 1fr;
  }

  .info-4-table {
    font-size: 13px;
  }

  .info-4-table th,
  .info-4-table td {
    padding: 10px 8px;
  }

  .offer-card-logo {
    width: 240px;
    height: 77px;
  }

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