.hero-bar {
  background: #031a0d;
  border-bottom: 1px solid var(--border);
  padding: 24px;
}

.hero-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-bar h1 {
  font-family: var(--font-mono);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 300;
  color: var(--text);
  flex: 1;
  line-height: 1.3;
}

.hero-bar-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  max-width: 420px;
  text-align: right;
  line-height: 1.6;
}

.offers-section {
  position: relative;
  padding: 48px 24px;
  background-color: var(--surface);
  background-image:
    linear-gradient(rgba(5, 46, 22, 0.82), rgba(6, 78, 59, 0.88)),
    url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
}

.offers-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(134, 239, 172, 0.08), transparent 60%);
  pointer-events: none;
}

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

.offers-inner h2 {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 8px;
  color: var(--accent);
}

.offers-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 28px;
}

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

.offer-card {
  background: linear-gradient(145deg, #1a1510 0%, #141414 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(249, 115, 22, 0.15);
}

.offer-card-logo-wrap {
  background: #FFFFFF;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-card-logo {
  width: 280px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.offer-card-name {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-weight: 400;
}

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

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

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

.offer-desc {
  font-size: 12px;
  color: rgba(163, 163, 163, 0.75);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.offer-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  color: #141414;
  border: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.offer-cta:hover {
  opacity: 0.92;
  transform: scale(1.02);
}

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

.info-section:nth-child(even) {
  background: rgba(6, 78, 59, 0.35);
}

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

.info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
}

.info-section h2 {
  font-family: var(--font-mono);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 20px;
}

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

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  transition: background 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-cta:hover {
  background: rgba(34, 197, 94, 0.2);
  color: var(--text);
  transform: scale(1.02);
}

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

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

.info-pill {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 300;
  color: var(--accent);
}

.info-1-visual {
  border-radius: var(--ios-like-radius);
  overflow: hidden;
  max-width: 500px;
  max-height: 320px;
}

.info-1-visual img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}

.info-2-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
  border-left: 2px solid var(--primary);
  padding-left: 24px;
}

.info-2-step {
  position: relative;
  padding-bottom: 20px;
}

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

.info-2-step strong {
  color: var(--accent);
  font-weight: 400;
  display: block;
  margin-bottom: 4px;
}

.info-2-aside {
  margin-top: 24px;
  max-width: 500px;
}

.info-2-aside img {
  border-radius: var(--ios-like-radius);
  max-height: 320px;
  object-fit: cover;
}

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

.info-3-box {
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  text-align: center;
}

.info-3-box span {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.info-3-box small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

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

.info-4-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--ios-like-radius);
}

.info-4-card h3 {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 8px;
}

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

.info-4-visual {
  margin-top: 24px;
  max-width: 500px;
  border-radius: var(--ios-like-radius);
  overflow: hidden;
}

.info-4-visual img {
  max-height: 320px;
  object-fit: cover;
}

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

.info-5-icon-item {
  text-align: center;
  padding: 16px 8px;
  background: rgba(20, 83, 45, 0.5);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.info-5-icon-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  margin: 0 auto 8px;
}

.info-5-icon-item span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
}

.info-6-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.info-6-mosaic img {
  border-radius: var(--ios-like-radius);
  max-height: 320px;
  object-fit: cover;
}

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

.info-7-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.info-7-col {
  padding: 24px;
  border-radius: var(--ios-like-radius);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.info-7-col:first-child {
  background: rgba(34, 197, 94, 0.08);
}

.info-7-col:last-child {
  background: rgba(134, 239, 172, 0.06);
}

.info-7-col h3 {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 400;
}

.info-7-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-7-col li {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.info-7-col li:last-child {
  border-bottom: none;
}

.info-8-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 20px;
}

.info-8-stat {
  flex: 1;
  min-width: 140px;
  padding: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.info-8-stat-val {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 4px;
}

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

.info-9-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.info-9-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.info-9-check::before {
  content: "✓";
  color: var(--primary);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.info-9-check span {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
}

.info-10-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-10-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--ios-like-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-10-row--with-image {
  grid-template-columns: 200px 1fr;
}

.info-10-row img {
  border-radius: 12px;
  max-height: 160px;
  object-fit: cover;
}

.info-10-row h3 {
  font-size: 15px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 8px;
}

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

@media (max-width: 900px) {
  .hero-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-bar-sub {
    text-align: center;
    max-width: 100%;
  }

  .hero-bar {
    padding: 16px;
  }

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

  .info-3-calc {
    grid-template-columns: 1fr;
  }

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

  .info-6-mosaic {
    grid-template-columns: 1fr;
  }

  .info-7-compare {
    grid-template-columns: 1fr;
  }

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

  .info-10-row {
    grid-template-columns: 1fr;
  }

  .info-10-row--with-image {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .offers-grid {
    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;
  }
}

@media (max-width: 375px) {
  .info-1-visual,
  .info-2-aside,
  .info-4-visual,
  .info-6-mosaic > img,
  .info-10-row {
    max-width: 100%;
    overflow: hidden;
  }

  .info-1-visual img,
  .info-2-aside img,
  .info-4-visual img,
  .info-6-mosaic > img,
  .info-10-row img {
    width: 100%;
    max-width: 100%;
    max-height: 220px;
    object-fit: cover;
  }
}
