.hero {
  background-color: #1A1A1A;
  padding: 72px 24px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  color: #E2E2E2;
  max-width: 720px;
  margin-left: -8px;
  padding-left: 64px;
  margin-bottom: 24px;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #888888;
  max-width: 560px;
  padding-left: 120px;
  line-height: 1.7;
}

.offers-section {
  padding: 64px 24px;
  background-color: #242424;
  border-top: 1px solid rgba(180, 83, 9, 0.2);
  border-bottom: 1px solid rgba(180, 83, 9, 0.2);
}

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

.offers-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #E2E2E2;
  text-align: center;
  margin-bottom: 12px;
}

.offers-intro {
  text-align: center;
  color: #888888;
  font-size: 0.95rem;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

.offer-card {
  width: 100%;
  max-width: 380px;
  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;
  object-fit: contain;
  object-position: center;
  display: block;
}

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

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

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

.offer-bonus {
  font-size: 0.95rem;
  font-weight: 600;
  color: #F3E8FF;
  line-height: 1.4;
  word-break: break-word;
}

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

.offer-desc {
  font-size: 0.78rem;
  color: rgba(243, 232, 255, 0.65);
  line-height: 1.45;
}

.offer-cta {
  margin-top: auto;
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  transition: opacity 0.25s ease;
}

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

.info-section {
  padding: 64px 24px;
}

.info-section:nth-child(even) {
  background-color: #242424;
}

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

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

.info-1-text h2 {
  font-size: 1.75rem;
  color: #E2E2E2;
  margin-bottom: 16px;
}

.info-1-text p {
  color: #888888;
  margin-bottom: 12px;
}

.info-1-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-1-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #1A1A1A;
  border: 1px solid rgba(180, 83, 9, 0.2);
  border-radius: 8px;
}

.info-1-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: #B45309;
  min-width: 36px;
}

.info-1-card p {
  color: #888888;
  font-size: 0.95rem;
}

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

.info-2-accent {
  background: linear-gradient(180deg, #B45309, #78350F);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
}

.info-2-accent svg {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  fill: #E2E2E2;
}

.info-2-accent span {
  display: block;
  font-size: 0.85rem;
  color: #E2E2E2;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.info-2-content h2 {
  font-size: 1.75rem;
  color: #E2E2E2;
  margin-bottom: 16px;
}

.info-2-content p {
  color: #888888;
  margin-bottom: 12px;
}

.info-2-list {
  list-style: none;
  margin-top: 20px;
}

.info-2-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #888888;
  border-bottom: 1px solid rgba(180, 83, 9, 0.1);
}

.info-2-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #D97706;
  border-radius: 50%;
}

.info-3-layout {
  max-width: 720px;
  margin: 0 auto;
  border-left: 4px solid #B45309;
  padding-left: 32px;
}

.info-3-layout h2 {
  font-size: 1.75rem;
  color: #E2E2E2;
  margin-bottom: 16px;
}

.info-3-layout p {
  color: #888888;
  margin-bottom: 12px;
}

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

.info-4-text h2 {
  font-size: 1.75rem;
  color: #E2E2E2;
  margin-bottom: 16px;
}

.info-4-text p {
  color: #888888;
  margin-bottom: 12px;
}

.info-4-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.info-4-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: #1A1A1A;
  border: 1px solid rgba(180, 83, 9, 0.2);
  border-radius: 8px;
  text-align: center;
}

.info-4-trust-item svg {
  width: 32px;
  height: 32px;
  fill: #D97706;
}

.info-4-trust-item span {
  font-size: 0.8rem;
  color: #888888;
  font-weight: 500;
}

.info-5-layout h2 {
  font-size: 1.75rem;
  color: #E2E2E2;
  margin-bottom: 16px;
  text-align: center;
}

.info-5-layout > p {
  color: #888888;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.info-5-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.info-5-chip {
  padding: 10px 20px;
  background: #1A1A1A;
  border: 1px solid rgba(180, 83, 9, 0.3);
  border-radius: 24px;
  font-size: 0.9rem;
  color: #E2E2E2;
  font-weight: 500;
}

.info-6-layout {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-6-layout h2 {
  font-size: 1.75rem;
  color: #E2E2E2;
  margin-bottom: 32px;
  text-align: center;
}

.info-6-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.info-6-steps::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(180, 83, 9, 0.3);
}

.info-6-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.info-6-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #B45309;
  color: #E2E2E2;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}

.info-6-step p {
  font-size: 0.9rem;
  color: #888888;
}

.info-7-layout h2 {
  font-size: 1.75rem;
  color: #E2E2E2;
  margin-bottom: 16px;
}

.info-7-layout > p {
  color: #888888;
  margin-bottom: 32px;
  max-width: 640px;
}

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

.info-7-stat {
  text-align: center;
  padding: 32px 20px;
  background: #1A1A1A;
  border: 1px solid rgba(180, 83, 9, 0.2);
  border-radius: 8px;
}

.info-7-stat strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #D97706;
  line-height: 1;
  margin-bottom: 8px;
}

.info-7-stat span {
  font-size: 0.85rem;
  color: #888888;
}

.info-8-layout h2 {
  font-size: 1.75rem;
  color: #E2E2E2;
  margin-bottom: 32px;
  text-align: center;
}

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

.info-8-card {
  padding: 24px;
  background: #1A1A1A;
  border: 1px solid rgba(180, 83, 9, 0.2);
  border-radius: 8px;
}

.info-8-card h3 {
  font-size: 1rem;
  color: #D97706;
  margin-bottom: 8px;
}

.info-8-card p {
  font-size: 0.9rem;
  color: #888888;
}

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

.info-9-quote {
  padding: 32px;
  background: rgba(180, 83, 9, 0.08);
  border-radius: 8px;
  border: 1px solid rgba(180, 83, 9, 0.2);
}

.info-9-quote p {
  font-size: 1.15rem;
  color: #E2E2E2;
  font-style: italic;
  line-height: 1.6;
}

.info-9-text h2 {
  font-size: 1.75rem;
  color: #E2E2E2;
  margin-bottom: 16px;
}

.info-9-text p {
  color: #888888;
  margin-bottom: 12px;
}

.info-10-layout {
  text-align: center;
}

.info-10-layout h2 {
  font-size: 1.75rem;
  color: #E2E2E2;
  margin-bottom: 16px;
}

.info-10-layout > p {
  color: #888888;
  max-width: 640px;
  margin: 0 auto 32px;
}

.info-10-tiers {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.info-10-tier {
  padding: 16px 28px;
  background: linear-gradient(145deg, #242424, #1A1A1A);
  border: 1px solid rgba(180, 83, 9, 0.25);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #E2E2E2;
}

.info-10-tier:nth-child(2) {
  border-color: rgba(180, 83, 9, 0.4);
  color: #D97706;
}

.info-10-tier:nth-child(3) {
  border-color: #B45309;
  color: #D97706;
}

.info-10-tier:nth-child(4) {
  border-color: #D97706;
  background: linear-gradient(145deg, #78350F, #B45309);
  color: #E2E2E2;
}

@media (max-width: 768px) {
  .hero h1 {
    margin-left: 0;
    padding-left: 0;
    text-align: center;
  }

  .hero-subtitle {
    padding-left: 0;
    text-align: center;
    margin: 0 auto;
  }

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

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

  .info-1-layout,
  .info-2-layout,
  .info-4-layout,
  .info-9-layout {
    grid-template-columns: 1fr;
  }

  .info-6-steps {
    flex-direction: column;
    gap: 24px;
  }

  .info-6-steps::before {
    display: none;
  }

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

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