.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(28, 25, 23, 0.45) 100%);
}

.hero-card {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 100%;
  padding: 40px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.hero-card h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #e11d48;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 8px rgba(225, 29, 72, 0.6);
}

main {
  position: relative;
  z-index: 1;
}

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

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

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

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.section-title p {
  color: var(--muted);
  font-size: 0.95rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 480px;
  margin: 0 auto;
}

.offer-card {
  background: linear-gradient(145deg, #1a1f2e 0%, #0f172a 100%);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.3);
}

.offer-card-header {
  padding: 24px;
  text-align: center;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.12) 0%, transparent 100%);
}

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

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

.offer-bonus {
  color: #f5e6b8;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 4px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  display: block;
  margin-bottom: 12px;
}

.offer-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 16px;
  padding: 0 8px;
}

.offer-cta {
  display: block;
  width: calc(100% - 32px);
  margin: 0 16px 20px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #d4af37 0%, #b8962e 100%);
  color: #0f172a;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.offer-cta:hover {
  background: linear-gradient(135deg, #e0bc42 0%, #c9a430 100%);
  color: #0f172a;
}

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

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

.info-section h2 {
  font-size: 1.65rem;
  color: var(--secondary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.info-section p {
  color: var(--text);
  margin-bottom: 14px;
}

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--secondary);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.info-cta-link:hover {
  background: var(--accent);
  color: #fff;
}

.info-1 {
  background: var(--surface);
}

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

.info-1 .decor-img {
  max-width: 500px;
  max-height: 320px;
  border-radius: 12px;
  border: 2px solid var(--border);
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.1);
}

.info-2 {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(212, 175, 55, 0.04) 100%);
}

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

.info-2 .mini-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}

.info-2 .mini-card h3 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: "Courier New", Courier, monospace;
}

.info-2 .mini-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.info-3 {
  background: var(--secondary);
  color: #fff;
}

.info-3 h2 {
  color: var(--primary);
}

.info-3 p {
  color: rgba(255, 255, 255, 0.85);
}

.info-3 .band-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.info-4 {
  background: var(--surface);
}

.info-4 .timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
  position: relative;
  padding-left: 32px;
}

.info-4 .timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary);
}

.info-4 .timeline-step {
  position: relative;
  padding: 16px 0 16px 24px;
}

.info-4 .timeline-step::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 22px;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--surface);
}

.info-4 .timeline-step h3 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.info-4 .timeline-visual {
  margin-top: 24px;
  text-align: center;
}

.info-4 .timeline-visual img {
  max-width: 500px;
  max-height: 320px;
  border-radius: 12px;
  margin: 0 auto;
}

.info-5 {
  background: var(--bg);
}

.info-5 .highlight-box {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  padding: 28px 32px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.06);
}

.info-6 {
  background: var(--surface);
}

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

.info-6 .num-list {
  list-style: none;
  counter-reset: step;
}

.info-6 .num-list li {
  counter-increment: step;
  padding: 16px 0 16px 48px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.info-6 .num-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 14px;
  width: 32px;
  height: 32px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  font-size: 0.85rem;
}

.info-7 {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.03) 0%, var(--bg) 100%);
}

.info-7 .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

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

.info-7 .stat-num {
  font-family: "Courier New", Courier, monospace;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.info-7 .stat-block p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.info-8 {
  background: var(--surface);
}

.info-8 .sidebar-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
}

.info-8 .pull-quote {
  background: var(--secondary);
  color: #fff;
  padding: 28px;
  border-radius: 12px;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  border-top: 3px solid #e11d48;
}

.info-8 .pull-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--primary);
}

.info-9 {
  background: var(--bg);
  position: relative;
}

.info-9::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 40px,
    rgba(212, 175, 55, 0.03) 40px,
    rgba(212, 175, 55, 0.03) 41px
  );
  pointer-events: none;
}

.info-9 .mosaic-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.info-9 .mosaic-img img {
  max-width: 500px;
  max-height: 320px;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.12);
}

.info-10 {
  background: var(--secondary);
  color: #fff;
  padding-bottom: 72px;
}

.info-10 h2 {
  color: var(--primary);
}

.info-10 p {
  color: rgba(255, 255, 255, 0.85);
}

.info-10 .panel-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.info-10 .panel {
  background: rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.info-10 .panel p {
  font-size: 0.9rem;
  margin: 0;
}

body.analog-theme {
  font-feature-settings: "kern" 1;
}

body.analog-theme .section-title h2,
body.analog-theme .hero-card h1 {
  font-weight: 700;
  letter-spacing: 0.04em;
}

body.analog-theme .offer-card {
  background-image:
    linear-gradient(145deg, rgba(192, 192, 192, 0.05) 0%, transparent 50%),
    linear-gradient(145deg, #1a1f2e 0%, #0f172a 100%);
}

body.analog-theme .info-7 .stat-num {
  text-shadow: 0 1px 0 rgba(212, 175, 55, 0.3);
}

body.analog-theme .hero-card::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 16px;
  width: 6px;
  height: 6px;
  background: #e11d48;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(225, 29, 72, 0.8);
}

body.analog-theme .hero-card {
  position: relative;
  background-image:
    linear-gradient(135deg, rgba(192, 192, 192, 0.06) 0%, transparent 40%),
    rgba(0, 0, 0, 0.3);
}

body.analog-theme .offers-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.4;
}

@media (max-width: 768px) {
  .hero {
    min-height: 350px;
    padding: 32px 16px;
    background-attachment: scroll;
  }

  .hero-card {
    max-width: 100%;
    padding: 24px;
  }

  .offers-section {
    background-attachment: scroll;
  }

  .offer-logo-wrap {
    width: 140px;
    height: 56px;
  }

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

  .info-1 .split-layout,
  .info-6 .numbered-layout,
  .info-8 .sidebar-layout,
  .info-9 .mosaic-layout {
    grid-template-columns: 1fr;
  }

  .info-1 .split-img,
  .info-1 .decor-img,
  .info-4 .timeline-visual,
  .info-4 .timeline-visual img,
  .info-9 .mosaic-img,
  .info-9 .mosaic-img img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .info-1 .split-img {
    overflow: hidden;
  }

  .info-2 .card-grid,
  .info-7 .stat-row {
    grid-template-columns: 1fr;
  }

  .info-8 .sidebar-layout {
    display: flex;
    flex-direction: column-reverse;
  }
}
