.hero-section {
  position: relative;
  padding-top: 64px;
  min-height: 420px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 380px;
}

.hero-left {
  background: var(--primary);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 120%;
  background: linear-gradient(25deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  transform: rotate(22deg);
}

.hero-left h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  position: relative;
  color: var(--text);
}

.hero-right {
  background: var(--secondary);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  align-self: end;
  min-height: 260px;
  clip-path: polygon(24px 0, 100% 0, 100% 100%, 0 100%, 0 24px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.12);
  position: relative;
}

.hero-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent),
    var(--accent) 8px,
    transparent 8px,
    transparent 16px
  );
}

.hero-right p {
  color: #e8e8e0;
  font-size: 1.05rem;
  text-align: right;
  max-width: 340px;
  line-height: 1.55;
}

.hero-stripe {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 50%, var(--secondary) 100%);
  transform: skewY(-1.5deg);
  z-index: 50;
}

.offers-section {
  padding: 64px 24px;
  position: relative;
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg) 40%, var(--surface) 100%);
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(107, 112, 92, 0.04) 40px,
    rgba(107, 112, 92, 0.04) 42px
  );
  pointer-events: none;
}

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

.offers-header {
  text-align: center;
  margin-bottom: 40px;
}

.offers-header h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
}

.offers-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 10%;
  width: 80%;
  height: 4px;
  background: var(--secondary);
  transform: skewX(-25deg);
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.offer-card {
  background: linear-gradient(145deg, #1a472a 0%, #0d2818 100%);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.25);
  max-width: 360px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.offer-card-logo {
  width: 200px;
  height: 64px;
  margin: 24px auto 0;
  background: rgba(255, 255, 255, 0.95);
  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 24px 24px;
  color: #ffffff;
}

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

.offer-bonus {
  font-size: 1.05rem;
  font-weight: 700;
  color: #c8e6c9;
  display: block;
  word-break: break-word;
  line-height: 1.35;
}

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

.offer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin-bottom: 16px;
}

.offer-cta {
  display: inline-block;
  background: #ffffff;
  color: #0d2818;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  cursor: pointer;
  border: none;
  text-align: center;
}

.offer-cta:hover {
  background: #e8f5e9;
  color: #0d2818;
}

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

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

.info-section h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 22px;
  background: var(--secondary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.info-cta-link:hover {
  color: #ffffff;
  opacity: 0.92;
}

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

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

.info-1 .info-icon-list {
  list-style: none;
  margin: 0;
}

.info-1 .info-icon-list li {
  padding: 12px 16px 12px 44px;
  margin-bottom: 8px;
  background: var(--surface);
  position: relative;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.info-1 .info-icon-list li::before {
  content: "◆";
  position: absolute;
  left: 16px;
  color: var(--primary);
  font-size: 12px;
}

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

.info-2 .info-accent-bar {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 24px;
}

.info-2 .info-bar {
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transform: skewY(-3deg);
}

.info-2 .info-visual {
  margin-top: 24px;
  max-width: 100%;
  overflow: hidden;
}

.info-2 .info-visual img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.info-3 {
  background: linear-gradient(135deg, var(--bg) 0%, var(--surface) 100%);
}

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

.info-3 .info-card {
  background: var(--bg);
  padding: 24px 20px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--primary);
}

.info-3 .info-card h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

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

.info-4 .info-zigzag {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-4 .info-zig-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.info-4 .info-zig-item:nth-child(even) {
  direction: rtl;
}

.info-4 .info-zig-item:nth-child(even) > * {
  direction: ltr;
}

.info-4 .info-zig-block {
  background: var(--surface);
  padding: 24px;
  clip-path: polygon(12px 0, 100% 0, 100% 100%, 0 100%, 0 12px);
}

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

.info-5 .info-highlight {
  background: var(--secondary);
  color: #e8e8e0;
  padding: 32px;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
  margin-bottom: 24px;
}

.info-5 .info-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-5 .info-stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 16px;
  background: var(--bg);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

.info-5 .info-stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--secondary);
}

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

.info-6 .info-steps {
  display: flex;
  gap: 0;
  margin-top: 24px;
  flex-wrap: wrap;
}

.info-6 .info-step {
  flex: 1;
  min-width: 200px;
  padding: 24px 20px;
  background: var(--surface);
  position: relative;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  margin-right: -8px;
}

.info-6 .info-step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.5;
  line-height: 1;
}

.info-7 {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

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

.info-7 .info-mosaic-img img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.08);
}

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

.info-7 .sport-tag {
  padding: 6px 14px;
  background: var(--primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
}

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

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

.info-8 .info-pullquote {
  background: var(--secondary);
  color: #e8e8e0;
  padding: 28px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  transform: rotate(-1deg);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.12);
}

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

.info-9 .info-numbered {
  counter-reset: market-counter;
  list-style: none;
  margin: 20px 0 0;
}

.info-9 .info-numbered li {
  counter-increment: market-counter;
  padding: 16px 16px 16px 56px;
  margin-bottom: 10px;
  background: var(--bg);
  position: relative;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.info-9 .info-numbered li::before {
  content: counter(market-counter);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) skewX(-8deg);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--primary);
}

.info-9 .info-visual-inline {
  margin-top: 24px;
}

.info-9 .info-visual-inline img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
}

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

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

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

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

.info-10 .info-table th {
  background: var(--secondary);
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.05em;
}

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

.info-10 .info-visual-side {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 24px;
  align-items: center;
}

.info-10 .info-visual-side img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

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

  .hero-right {
    align-self: stretch;
    min-height: auto;
  }

  .info-1 .info-split,
  .info-3 .info-card-grid,
  .info-4 .info-zig-item,
  .info-7 .info-mosaic,
  .info-8 .info-quote-layout,
  .info-10 .info-visual-side {
    grid-template-columns: 1fr;
  }

  .info-4 .info-zig-item:nth-child(even) {
    direction: ltr;
  }

  .info-6 .info-steps {
    flex-direction: column;
  }

  .info-6 .info-step {
    margin-right: 0;
    margin-bottom: 8px;
  }

  .offer-card-logo {
    width: 200px;
    height: 64px;
  }

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

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

  .info-visual,
  .info-visual-inline,
  .info-mosaic-img {
    max-width: 100%;
    overflow: hidden;
  }

  .info-2 .info-visual img,
  .info-7 .info-mosaic-img img,
  .info-9 .info-visual-inline img,
  .info-10 .info-visual-side img {
    max-width: 100%;
    max-height: 220px;
    box-shadow: none;
  }

  .offer-card-logo {
    width: 180px;
    height: 58px;
  }

  .offer-card-logo img {
    object-fit: contain;
  }
}
