.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  border-bottom: 1px solid var(--border);
}

.hero-headline {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  border-right: 2px solid var(--accent);
}

.hero-headline h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  max-width: 480px;
}

.hero-subtitle {
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
}

.hero-subtitle p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 440px;
  line-height: 1.7;
}

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

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.94) 100%);
}

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

.offers-inner h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

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

.offer-card {
  background: linear-gradient(145deg, #1a2e24 0%, #243830 50%, #1a2e24 100%);
  border: 1px solid rgba(134, 163, 132, 0.3);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offer-logo {
  width: 160px;
  height: 80px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.offer-bonus {
  font-size: 1.05rem;
  font-weight: 700;
  color: #e8f5e9;
  margin-bottom: 4px;
  word-break: break-word;
  line-height: 1.35;
  max-width: 100%;
}

.offer-terms {
  font-size: 11px;
  color: rgba(232, 245, 233, 0.55);
  margin-bottom: 12px;
}

.offer-desc {
  font-size: 12px;
  color: rgba(232, 245, 233, 0.65);
  margin-bottom: 16px;
  line-height: 1.5;
}

.offer-cta {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(249, 115, 22, 0.9);
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  margin-top: auto;
  cursor: pointer;
}

.offer-cta:hover {
  background: var(--primary);
}

.info-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
  border-bottom: 1px solid var(--border);
}

.info-section h2 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
  color: var(--text);
}

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

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

.info-1-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-1-aside {
  background: var(--surface);
  padding: 24px;
  border: 1px solid var(--border);
}

.info-1-aside h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  color: var(--primary);
}

.info-1-aside ul {
  list-style: none;
}

.info-1-aside li {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.info-1-aside li:last-child {
  border-bottom: none;
}

.info-2-band {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.info-2-card {
  background: var(--surface);
  padding: 24px;
  border: 1px solid var(--border);
}

.info-2-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.info-2-img-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 8px;
  max-width: 100%;
  overflow: hidden;
}

.info-2-img-wrap img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--border);
}

.info-3-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.info-3-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: rgba(56, 189, 248, 0.06);
  border-left: 3px solid var(--accent);
}

.info-3-stat strong {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

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

.info-4-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
  list-style: none;
  counter-reset: step;
}

.info-4-steps li {
  background: var(--surface);
  padding: 20px 16px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  counter-increment: step;
}

.info-4-steps li::before {
  content: counter(step);
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

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

.info-5-pull {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
  padding: 24px;
  border-left: 4px solid var(--primary);
}

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

.info-6-tile {
  background: var(--surface);
  padding: 24px;
  border: 1px solid var(--border);
}

.info-6-tile h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.info-6-tile p {
  font-size: 13px;
  margin-bottom: 0;
}

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

.info-7-visual {
  background: var(--surface);
  padding: 24px;
  border: 1px solid var(--border);
  text-align: center;
  max-width: 100%;
  overflow: hidden;
}

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

.info-7-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 13px;
}

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

.info-7-table th {
  color: var(--text);
  font-weight: 600;
}

.info-8-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-8-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.info-8-icon {
  font-size: 2rem;
  text-align: center;
  line-height: 1;
}

.info-8-row h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

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

.info-9-block {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.info-9-block:nth-child(1) {
  grid-column: 1 / -1;
}

.info-9-block h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.info-9-img {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
  max-width: 100%;
  overflow: hidden;
}

.info-9-img img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--border);
}

.info-10-live {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-10-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-10-feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.info-10-feat strong {
  font-size: 13px;
  color: var(--primary);
  min-width: 72px;
}

.info-10-feat span {
  font-size: 14px;
  color: var(--muted);
}

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

  .hero-headline {
    border-right: none;
    border-bottom: 2px solid var(--accent);
    min-height: 200px;
  }

  .info-1-layout,
  .info-3-columns,
  .info-5-quote,
  .info-7-split,
  .info-10-live {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 500px) {
  .info-4-steps {
    grid-template-columns: 1fr;
  }

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

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

  .offer-bonus {
    font-size: 0.95rem;
  }

  .info-2-img-wrap img,
  .info-7-visual img,
  .info-9-img img {
    max-height: 220px;
  }
}
