.hero {
  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;
}

.hero-left h1 {
  font-weight: 200;
  font-size: clamp(28px, 4vw, 48px);
  color: #0A0A0A;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

.hero-right p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  font-weight: 300;
  max-width: 420px;
  line-height: 1.7;
}

.offers-section {
  position: relative;
  padding: 80px 24px;
  overflow: hidden;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(163, 230, 53, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(56, 189, 248, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  z-index: 0;
}

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

.offers-section h2 {
  font-weight: 200;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text);
}

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

.offer-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.offer-logo {
  width: 180px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

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

.offer-card .offer-name {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

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

.offer-card .offer-bonus {
  font-size: clamp(13px, 2.5vw, 16px);
  font-weight: 500;
  color: #ffd700;
  display: block;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.35;
}

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

.offer-card .offer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  line-height: 1.5;
}

.offer-card .btn-offer {
  display: inline-block;
  padding: 10px 28px;
  background: #e94560;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease;
}

.offer-card .btn-offer:hover {
  background: #ff6b6b;
}

.info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
}

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

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

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--primary);
  border-radius: 10px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-cta:hover {
  background: var(--primary);
  color: #0A0A0A;
  transform: scale(1.02);
}

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

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

.decor-img {
  max-width: 100%;
  height: auto;
}

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

.info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.3s ease;
}

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

.info-card h3 {
  font-weight: 300;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 8px;
}

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

.steps-list {
  counter-reset: step;
  list-style: none;
  margin: 24px 0;
}

.steps-list li {
  counter-increment: step;
  position: relative;
  padding: 16px 16px 16px 56px;
  margin-bottom: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--muted);
  font-size: 14px;
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #0A0A0A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
}

.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
}

.stat-item .stat-val {
  font-size: 28px;
  font-weight: 200;
  color: var(--primary);
  display: block;
}

.stat-item .stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.pullquote-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: start;
}

.pullquote {
  padding: 28px;
  border-left: 3px solid var(--accent);
  background: var(--glass-bg);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 0 14px 14px 0;
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.payment-icon-item {
  flex: 1;
  min-width: 140px;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-align: center;
}

.payment-icon-item svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 8px;
}

.payment-icon-item span {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.checklist {
  list-style: none;
  margin: 20px 0;
}

.checklist li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--muted);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--primary);
  border-radius: 4px;
  background: rgba(163, 230, 53, 0.15);
}

.highlight-box {
  padding: 32px;
  background: linear-gradient(135deg, rgba(163, 230, 53, 0.08) 0%, rgba(56, 189, 248, 0.06) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.zigzag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.zigzag .decor-wrap {
  overflow: hidden;
  border-radius: 12px;
  max-width: 100%;
  width: 100%;
}

.zigzag .decor-wrap img {
  width: 100%;
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

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

.compare-table th {
  color: var(--primary);
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.compare-table td:first-child {
  color: var(--text);
  font-weight: 400;
}

.info-section::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--primary);
  margin: 0 auto;
  opacity: 0.3;
}

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

  .hero-right {
    border-left: none;
    border-top: 2px solid var(--accent);
  }

  .layout-split,
  .pullquote-block,
  .zigzag,
  .card-grid,
  .stat-band {
    grid-template-columns: 1fr;
  }

  .decor-img {
    max-width: 100%;
  }

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

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

  .info-section {
    overflow-x: hidden;
  }
}
