.hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 48px 24px;
}

.hero-inner { text-align: center; max-width: var(--max-w); }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  display: none;
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

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

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.94);
}

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

.offers-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 36px;
  color: #0F172A;
}

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

.offer-card {
  background: #1a1f2e;
  border: 1px solid #2d3748;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.offer-card-header {
  background: linear-gradient(135deg, #252b3b 0%, #1e2433 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #2d3748;
}

.offer-logo {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
  overflow: hidden;
}

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

.offer-card-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

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

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

.offer-bonus {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fbbf24;
  line-height: 1.4;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.offer-terms {
  font-size: 11px;
  color: #94a3b8;
}

.offer-desc {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
}

.offer-cta {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 12px 20px;
  background: #3b82f6;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s;
}

.offer-cta:hover { background: #2563eb; color: #fff; }

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

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

.info-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 10px;
}

.info-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  color: #0F172A;
  margin-bottom: 16px;
  line-height: 1.25;
}

.info-text {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 680px;
}

.deco-wrap {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
}

.deco-wrap img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: 4px;
}

#info-1 {
  background: var(--linen);
}

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

.info-1-layout .deco-wrap { justify-self: end; margin-top: -20px; }

#info-2 { background: var(--paper); }

.info-2-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-2-columns {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.info-2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.info-2-tag {
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(132, 204, 22, 0.12);
  color: #365314;
  border-radius: 20px;
}

#info-3 { background: var(--cream); }

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

.info-3-layout .deco-wrap { order: -1; }

.info-3-steps {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-3-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-3-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

#info-4 { background: var(--linen); }

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

.info-4-panel {
  padding: 28px;
  background: var(--paper);
  border-left: 4px solid var(--accent);
}

.info-4-panel dt {
  font-weight: 700;
  font-size: 0.85rem;
  color: #0F172A;
  margin-bottom: 4px;
}

.info-4-panel dd {
  font-size: 0.82rem;
  color: #64748B;
  margin-bottom: 16px;
}

#info-5 { background: var(--paper); }

.info-5-layout {
  max-width: 720px;
  margin-left: 12%;
}

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

.info-5-checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: #475569;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.info-5-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

#info-6 { background: var(--cream); }

.info-6-layout {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

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

.info-6-card {
  padding: 20px 16px;
  background: var(--paper);
  border-top: 2px solid var(--primary);
}

.info-6-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 6px;
}

.info-6-card p {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.5;
}

.info-6-deco { flex-shrink: 0; margin-top: 40px; }

#info-7 { background: var(--linen); }

.info-7-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.info-7-tips {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.info-7-tip {
  padding-left: 20px;
  border-left: 2px solid var(--accent);
}

.info-7-tip strong {
  display: block;
  font-size: 0.85rem;
  color: #0F172A;
  margin-bottom: 4px;
}

.info-7-tip span {
  font-size: 0.82rem;
  color: #64748B;
}

#info-8 { background: var(--paper); }

.info-8-layout {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.info-8-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 24px;
}

.info-8-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.info-8-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent);
}

.info-8-stat span {
  font-size: 0.75rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

#info-9 { background: var(--cream); }

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

.info-9-quote {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: #334155;
  padding: 24px;
  background: var(--paper);
  border-radius: 0 8px 8px 0;
  border-left: 3px solid var(--primary);
}

#info-10 { background: var(--linen); }

.info-10-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
}

.info-10-helpline {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--surface);
  color: var(--text);
  border-radius: 8px;
  width: 100%;
}

.info-10-helpline strong {
  color: var(--primary);
  font-size: 1.1rem;
}

.info-10-helpline p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 8px;
}

.info-10-deco { margin-bottom: 24px; max-width: 280px; }

@media (max-width: 768px) {
  .hero-subtitle { display: block; }
  .offer-logo {
    width: 72px;
    height: 72px;
  }
  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
  .offer-bonus {
    font-size: 0.95rem;
  }
  .info-1-layout,
  .info-2-columns,
  .info-3-layout,
  .info-4-layout,
  .info-6-layout,
  .info-7-layout,
  .info-9-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .info-3-layout .deco-wrap { order: 0; }
  .info-5-layout { margin-left: 0; }
  .info-6-cards { grid-template-columns: 1fr; }
  .info-6-deco { margin-top: 0; }
  .deco-wrap {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
  .deco-wrap img {
    width: 100%;
    max-width: 100%;
    max-height: 220px;
    object-fit: cover;
  }
}
