.hero-section {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  min-height: 380px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px;
  position: relative;
  z-index: 2;
}

.hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.15;
  max-width: 620px;
}

.hero-sub {
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
}

.hero-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
  max-width: 350px;
  object-fit: contain;
  opacity: 0.5;
  z-index: 1;
}

.hero-crt {
  position: relative;
  padding: 28px 32px;
  background: var(--surface);
  border: 4px solid var(--secondary);
  border-radius: 28px;
  box-shadow: inset 0 0 30px rgba(13, 148, 136, 0.08), 0 8px 32px rgba(15, 23, 42, 0.1);
  max-width: 680px;
}

.hero-crt::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid rgba(212, 175, 55, 0.25);
  border-radius: 22px;
  pointer-events: none;
}

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

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
}

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

.offers-inner h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--cream);
  text-align: center;
  margin-bottom: 8px;
}

.offers-sub {
  text-align: center;
  color: rgba(245, 240, 230, 0.75);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

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

.offer-card {
  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-family: var(--font-display);
  font-size: 1.1rem;
  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;
  overflow-wrap: anywhere;
}

.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;
  font-size: 12px;
  font-weight: 600;
  padding: 12px 16px;
  background: #7E22CE;
  color: #F3E8FF;
  border: 2px solid #D8B4FE;
  border-radius: 24px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s ease;
}

.offer-cta:hover {
  background: #9333EA;
}

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

.info-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.info-section:nth-child(even) {
  background: var(--surface);
}

.info-section:nth-child(even)::before {
  background: radial-gradient(ellipse at 90% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 55%);
}

.info-section:nth-child(odd)::before {
  background: radial-gradient(ellipse at 10% 80%, rgba(13, 148, 136, 0.05) 0%, transparent 50%);
}

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

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

.info-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: var(--text);
  margin-bottom: 16px;
}

.info-section p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.97rem;
}

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

.info-crt-panel {
  background: var(--secondary);
  color: var(--cream);
  border-radius: 20px;
  padding: 24px;
  border: 3px solid var(--primary);
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.info-crt-panel p {
  color: rgba(245, 240, 230, 0.85);
}

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

.info-live-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid var(--primary);
  border-radius: 16px;
  color: var(--primary);
}

.info-2-warnings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.info-warning-card {
  padding: 20px;
  background: var(--cream);
  border-left: 5px solid var(--orange-muted);
  border-radius: 0 16px 16px 0;
}

.info-warning-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.info-warning-card p {
  font-size: 0.88rem;
  margin: 0;
}

.info-3-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.info-3-stat {
  text-align: center;
  padding: 16px 10px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 16px;
}

.info-3-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--teal);
}

.info-3-stat span {
  font-size: 0.78rem;
  color: var(--muted);
}

.info-4-timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 20px;
}

.info-4-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--teal));
  border-radius: 3px;
}

.info-4-step {
  position: relative;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 12px;
}

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

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

.info-4-step p {
  font-size: 0.88rem;
  margin: 0;
}

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

.info-5-img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid var(--primary);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.info-5-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.info-5-market {
  padding: 8px 14px;
  background: var(--secondary);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 8px;
}

.info-6-band {
  background: var(--secondary);
  color: var(--cream);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  background-image: url("/images/decorative/decor_3.jpg");
  background-size: cover;
  background-position: center;
}

.info-6-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.88);
}

.info-6-band > * {
  position: relative;
  z-index: 1;
}

.info-6-band h2 {
  color: var(--cream);
}

.info-6-band p {
  color: rgba(245, 240, 230, 0.85);
}

.info-6-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.info-6-metric {
  flex: 1;
  min-width: 140px;
  padding: 14px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  text-align: center;
}

.info-6-metric strong {
  display: block;
  font-size: 1.3rem;
  color: var(--primary);
}

.info-7-payments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.info-7-checklist {
  list-style: none;
}

.info-7-checklist li {
  padding: 12px 16px;
  margin-bottom: 8px;
  background: var(--cream);
  border-radius: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 36px;
  position: relative;
}

.info-7-checklist li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: var(--teal);
  font-weight: 700;
}

.info-7-highlight {
  padding: 24px;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(212, 175, 55, 0.08));
  border: 2px solid var(--border);
  border-radius: 20px;
}

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

.info-8-img-wrap {
  border-radius: 20px;
  overflow: hidden;
}

.info-8-img-wrap img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
}

.info-8-list {
  list-style: none;
  counter-reset: rugby;
}

.info-8-list li {
  counter-increment: rugby;
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--muted);
}

.info-8-list li::before {
  content: counter(rugby);
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--primary);
  min-width: 28px;
}

.info-9-manifesto {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 32px;
  background: var(--surface);
  border: 3px double var(--primary);
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.info-9-manifesto h2 {
  margin-bottom: 20px;
}

.info-9-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  text-align: left;
}

.info-9-principle {
  padding: 16px;
  background: var(--cream);
  border-radius: 16px;
}

.info-9-principle h3 {
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--accent);
}

.info-9-principle p {
  font-size: 0.82rem;
  margin: 0;
}

.info-10-matrix {
  overflow-x: auto;
  margin-top: 20px;
}

.info-10-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.info-10-table th,
.info-10-table td {
  padding: 12px 16px;
  border: 2px solid var(--border);
  text-align: left;
}

.info-10-table th {
  background: var(--secondary);
  color: var(--cream);
  font-weight: 600;
}

.info-10-table tr:nth-child(even) td {
  background: var(--cream);
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 32px 24px;
    text-align: center;
  }

  .hero-crt {
    max-width: 100%;
  }

  .hero-inner h1,
  .hero-sub {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-deco {
    display: none;
  }

  .info-1-layout,
  .info-5-split,
  .info-7-payments,
  .info-8-layout {
    grid-template-columns: 1fr;
  }

  .info-3-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .hero-deco,
  .info-5-img,
  .info-8-img-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
  }

  .info-8-img-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .info-6-band {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 375px) {
  .hero-section {
    overflow: hidden;
  }

  .hero-deco {
    max-width: 100%;
    width: 100%;
    position: relative;
    opacity: 0.35;
    margin-top: 16px;
  }

  .info-5-split img,
  .info-8-img-wrap img {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
  }
}
