.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px 0;
}

.hero-left {
  background: var(--primary);
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  border: 2px solid var(--text);
  position: relative;
}

.hero-left::after {
  content: "BREAKING";
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--text);
  color: var(--surface);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
}

.hero-left h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--surface);
  line-height: 1.15;
  text-align: left;
}

.hero-right {
  background: var(--secondary);
  min-height: 220px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  border: 2px solid var(--text);
}

.hero-right p {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #FDF2F2;
  text-align: right;
  max-width: 280px;
  line-height: 1.5;
}

.offers-section {
  padding: 64px 24px;
  position: relative;
  background-color: var(--bg);
  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(253, 242, 242, 0.88);
  pointer-events: none;
}

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

.offers-section h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-top: 3px solid var(--text);
  border-bottom: 1px solid var(--text);
  padding: 12px 0;
}

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

.offer-card {
  background: #fff;
  border: 4px solid #000;
  border-radius: 0;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 8px 8px 0 #000;
}

.offer-card-logo {
  width: 180px;
  height: 80px;
  margin: 24px auto 0;
  padding: 0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid #e5e7eb;
  border-bottom: 3px solid #000;
}

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

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

.offer-card-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

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

.offer-card-bonus {
  font-size: 1rem;
  color: #059669;
  font-weight: 700;
  word-break: break-word;
  line-height: 1.4;
}

.offer-terms {
  display: block;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 4px;
}

.offer-card-desc {
  font-size: 0.82rem;
  color: #4b5563;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.offer-cta {
  display: block;
  width: 100%;
  padding: 14px;
  background: #2563eb;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  border: 3px solid #000;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: var(--font-stack, system-ui, sans-serif);
}

.offer-cta:hover {
  background: #1d4ed8;
}

.info-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px;
  position: relative;
  border-bottom: 1px solid var(--text);
}

.info-section h2 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
}

.info-section p {
  text-align: justify;
  margin-bottom: 14px;
}

.info-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--text);
  color: var(--surface);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid var(--text);
}

.info-cta:hover {
  background: var(--primary);
  border-color: var(--primary);
}

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

.info-1-img img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border: 2px solid var(--text);
  filter: grayscale(100%) contrast(1.1);
}

.info-2 {
  background: var(--surface);
  border-left: 6px solid var(--primary);
  padding-left: 40px;
}

.info-2-list {
  list-style: square;
  padding-left: 20px;
  margin: 16px 0;
}

.info-2-list li {
  margin-bottom: 8px;
  font-family: var(--font-sans);
}

.info-3 {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.info-3-content {
  flex: 1.4;
}

.info-3-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.info-3-steps li {
  counter-increment: step;
  padding: 12px 12px 12px 48px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.info-3-steps li::before {
  content: counter(step);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--surface);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
}

.info-3-visual img {
  max-width: 280px;
  max-height: 320px;
  object-fit: cover;
  border: 2px solid var(--text);
  filter: grayscale(100%);
}

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

.info-4-card {
  border: 1px solid var(--text);
  padding: 20px;
  background: var(--surface);
}

.info-4-card h3 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--secondary);
}

.info-5-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}

.info-5-img-wrap img {
  max-width: 100%;
  max-height: 280px;
  object-fit: cover;
  border: 2px solid var(--text);
  filter: grayscale(100%) contrast(1.05);
  margin-bottom: 16px;
}

.info-5-checklist {
  list-style: none;
  padding: 0;
}

.info-5-checklist li {
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px dotted var(--border);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.info-5-checklist li::before {
  content: "■";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.6rem;
  top: 12px;
}

.info-6 {
  background: repeating-linear-gradient(
    90deg,
    var(--bg) 0px,
    var(--bg) 8px,
    rgba(69, 26, 3, 0.03) 8px,
    rgba(69, 26, 3, 0.03) 9px
  );
}

.info-6-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.info-6-stat {
  border: 2px solid var(--text);
  padding: 20px;
  text-align: center;
  background: var(--surface);
}

.info-6-stat strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.info-6-stat span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--muted);
}

.info-7 {
  display: flex;
  flex-direction: row-reverse;
  gap: 32px;
  align-items: center;
}

.info-7-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.info-7-bullet {
  border: 1px solid var(--text);
  padding: 14px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  background: var(--surface);
}

.info-8 {
  column-count: 2;
  column-gap: 40px;
  column-rule: 1px solid var(--text);
}

.info-8 h2 {
  column-span: all;
}

.info-9-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start;
}

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

.info-9-tag {
  border: 1px solid var(--text);
  padding: 6px 14px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  background: var(--surface);
}

.info-10-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
}

.info-10-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

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

.info-10-table th {
  background: var(--text);
  color: var(--surface);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.info-10-table tr:nth-child(even) {
  background: rgba(69, 26, 3, 0.04);
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-left,
  .hero-right {
    min-height: 200px;
  }

  .info-1,
  .info-3,
  .info-5-layout,
  .info-6-cols,
  .info-7,
  .info-9-wrap {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .info-8 {
    column-count: 1;
  }

  .info-3-visual img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .info-7-bullets {
    grid-template-columns: 1fr;
  }

  .offers-section {
    padding: 48px 16px;
  }

  .offer-card-logo {
    width: 160px;
    height: 72px;
  }

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

@media (max-width: 375px) {
  .hero-split,
  .info-section,
  .offers-section,
  .info-1-img,
  .info-3-visual,
  .info-5-img-wrap {
    overflow: hidden;
    max-width: 100%;
  }

  .info-1-img img,
  .info-3-visual img,
  .info-5-img-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: cover;
  }
}
