.home-hero {
  padding: 56px 24px 64px;
  background:
    linear-gradient(180deg, rgba(251, 248, 243, 0.9) 0%, rgba(212, 175, 55, 0.04) 100%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212, 175, 55, 0.08), transparent);
  position: relative;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(146, 64, 14, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

.hero-card {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--surface);
  border-radius: 28px;
  box-shadow:
    0 12px 48px rgba(28, 25, 23, 0.08),
    0 0 32px rgba(212, 175, 55, 0.1);
  text-align: center;
}

.hero-card h1 {
  font-size: clamp(28px, 5vw, 40px);
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.hero-card p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

.offers-section {
  padding: 64px 24px;
  position: relative;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, transparent 60%),
    var(--bg);
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(212, 175, 55, 0.02) 40px,
      rgba(212, 175, 55, 0.02) 41px
    );
  pointer-events: none;
}

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

.offers-inner h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 36px;
  color: var(--secondary);
}

.offers-inner h2 .section-heading-glow::after {
  bottom: -8px;
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.offer-card {
  background: linear-gradient(145deg, #1a2744 0%, #0f172a 100%);
  border-radius: 24px;
  padding: 28px 24px;
  max-width: 340px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.25);
  transition: transform 0.25s, box-shadow 0.25s;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.35), 0 0 20px rgba(212, 175, 55, 0.15);
}

.offer-logo {
  width: 140px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto 16px;
}

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

.offer-card h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 12px;
}

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

.offer-bonus {
  font-size: 15px;
  color: #fbbf24;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.offer-terms {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.offer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin-bottom: 18px;
}

.offer-cta {
  display: inline-block;
  padding: 12px 28px;
  background: #fbbf24;
  color: #0f172a;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: box-shadow 0.25s;
}

.offer-cta:hover {
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.5);
}

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

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

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

.info-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(212, 175, 55, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.info-section h2 {
  font-size: clamp(22px, 4vw, 30px);
  color: var(--secondary);
  margin-bottom: 18px;
}

.info-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 14px;
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
  transition: box-shadow 0.25s, transform 0.2s;
}

.info-cta:hover {
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.5);
  transform: translateY(-2px);
}

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

.decor-wrap {
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
}

.decor-img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(28, 25, 23, 0.1);
}

.layout-centered {
  text-align: center;
  max-width: 720px;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  text-align: left;
}

.bonus-list li {
  background: var(--surface);
  padding: 16px 20px;
  border-radius: 16px;
  font-size: 14px;
  list-style: none;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(28, 25, 23, 0.04);
}

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

.sidebar-rail {
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.sidebar-rail ul {
  list-style: none;
  margin-top: 12px;
}

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

.sidebar-rail li:last-child {
  border-bottom: none;
}

.info-bg-deco {
  background-size: cover;
  background-position: center;
  position: relative;
}

.info-bg-deco::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 248, 243, 0.92);
}

.info-bg-deco .info-inner {
  position: relative;
  z-index: 1;
}

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

.step-item {
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.05);
}

.step-item h3 {
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 8px;
}

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

.info-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s;
}

.info-card:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

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

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

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

.stat-num {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

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

.layout-pullquote {
  background: rgba(212, 175, 55, 0.1);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  border-radius: 0 16px 16px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--accent);
  margin: 24px 0;
}

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

.layout-feature-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 24px;
  font-size: 14px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.layout-feature-table th,
.layout-feature-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.layout-feature-table th {
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
}

.layout-feature-table tr:last-child td {
  border-bottom: none;
}

.layout-feature-table tr:nth-child(even) td {
  background: rgba(251, 248, 243, 0.6);
}

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

.checklist-items {
  list-style: none;
}

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

.checklist-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.section-breakout {
  margin-left: -40px;
  margin-right: -40px;
  padding-left: 40px;
  padding-right: 40px;
}

.pill-rounded-soft {
  border-radius: 999px;
}

.friendly-smooth-glow {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
}

@media (max-width: 900px) {
  .hero-card {
    padding: 24px 20px;
  }

  .layout-split,
  .layout-sidebar,
  .layout-steps,
  .layout-cards,
  .layout-stats,
  .layout-zigzag .zigzag-row,
  .layout-checklist {
    grid-template-columns: 1fr;
  }

  .section-breakout {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .offer-logo {
    width: 120px;
    height: 60px;
  }

  .offer-logo img {
    object-fit: contain;
    object-position: center;
  }

  .decor-img {
    max-height: 220px;
  }
}
