.hero {
  width: 100%;
  background: var(--primary);
  padding: 64px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(2,4,3,0.08) 0,
      rgba(2,4,3,0.08) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(2,4,3,0.08) 0,
      rgba(2,4,3,0.08) 1px,
      transparent 1px,
      transparent 40px
    );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 2px;
  background: var(--bg);
  animation: tech-scan 4s linear infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero-brand {
  font-family: var(--mono);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-brand .half-a {
  color: rgba(209,250,229,0.98);
}

.hero-brand .half-b {
  color: var(--accent);
}

.hero-sub {
  color: rgba(2,4,3,0.78);
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
}

.offers-section {
  position: relative;
  padding: 64px 16px;
  background-color: var(--surface);
  background-image:
    linear-gradient(180deg, rgba(2,4,3,0.82), rgba(4,16,10,0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.offers-title {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 8px;
}

.offers-intro {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 0.95rem;
}

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

.offer-card {
  background: linear-gradient(145deg, #1a2744 0%, #0f172a 100%);
  border: 3px outset #4a5568;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.5);
  padding: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s;
}

.offer-card:hover {
  transform: translateY(-3px);
}

.offer-logo-wrap {
  width: 140px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 14px;
  flex-shrink: 0;
}

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

.offer-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.offer-bonus-group {
  margin-bottom: 12px;
  width: 100%;
  max-width: 100%;
}

.offer-bonus {
  font-size: clamp(12px, 2.8vw, 15px);
  font-weight: 600;
  color: #fbbf24;
  display: block;
  margin-bottom: 4px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}

.offer-terms {
  font-size: 11px;
  color: #94a3b8;
  display: block;
}

.offer-desc {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 14px;
  line-height: 1.45;
}

.offer-cta {
  margin-top: auto;
  display: inline-block;
  padding: 10px 16px;
  background: linear-gradient(180deg, #fbbf24 0%, #d97706 100%);
  color: #111827;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px outset #f59e0b;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.offer-cta:hover {
  color: #111827;
  filter: brightness(1.05);
}

.info-block {
  position: relative;
  padding: 64px 16px;
  overflow: hidden;
}

.info-block h2 {
  margin-bottom: 16px;
  font-size: clamp(1.3rem, 3vw, 1.75rem);
}

.info-block p {
  margin-bottom: 12px;
  color: rgba(209,250,229,0.9);
}

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

.info-1-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.info-1-visual {
  border: 1px solid var(--border);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(34,197,94,0.15), transparent 60%),
    var(--bg);
  font-family: var(--mono);
  animation: machinery-blink 3.5s ease-in-out infinite;
}

.info-1-visual strong {
  display: block;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

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

.info-2-asym {
  display: grid;
  gap: 24px;
}

.info-2-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.info-2-list li {
  padding: 12px 14px;
  border-left: 3px solid var(--primary);
  background: rgba(34,197,94,0.06);
  font-family: var(--mono);
  font-size: 0.85rem;
}

.info-3 {
  padding: 0;
}

.info-3-band {
  display: grid;
  background: var(--surface);
}

.info-3-copy {
  padding: 64px 16px;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.info-3-visual {
  min-height: 180px;
  background-image:
    linear-gradient(90deg, rgba(2,4,3,0.55), rgba(4,16,10,0.35)),
    url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border);
}

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

.info-4-steps {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.info-4-steps article {
  padding: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.info-4-steps h3 {
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

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

.info-5-mosaic {
  display: grid;
  gap: 24px;
}

.info-5-aside {
  padding: 24px;
  border: 1px dashed var(--border);
  background: rgba(34,197,94,0.05);
}

.info-5-aside strong {
  display: block;
  font-family: var(--mono);
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

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

.info-6-rail {
  display: grid;
  gap: 28px;
  align-items: start;
}

.info-6-quote {
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--accent);
  border-left: 4px solid var(--primary);
  padding: 8px 0 8px 18px;
  font-weight: 600;
}

.info-6-media {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.info-6-media img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
}

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

.info-7-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.info-7-row span {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  border: 1px solid var(--border);
  color: var(--muted);
}

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

.info-8-split {
  display: grid;
  gap: 28px;
}

.info-8-cards {
  display: grid;
  gap: 12px;
}

.info-8-cards article {
  padding: 16px;
  background: var(--surface);
  border-top: 2px solid var(--primary);
}

.info-8-cards h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--accent);
}

.info-8-band {
  margin-top: 24px;
  min-height: 160px;
  max-width: 100%;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(2,4,3,0.35), rgba(2,4,3,0.65)),
    url("/images/decorative/decor_2.webp");
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
}

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

.info-9-editorial {
  max-width: 720px;
}

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

.info-9-tags span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--muted);
  padding: 6px 10px;
}

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

.info-10-steps {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
  counter-reset: step;
}

.info-10-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.info-10-steps li::before {
  counter-increment: step;
  content: attr(data-step);
  font-family: var(--mono);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.info-10-side {
  margin-top: 24px;
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
  border: 1px solid var(--border);
}

.info-10-side img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .info-1-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .info-2-asym {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

  .info-5-mosaic {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .info-6-rail {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .info-8-split {
    grid-template-columns: 1.1fr 0.9fr;
  }

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

@media (max-width: 767px) {
  .hero {
    padding: 32px 16px;
  }

  .hero-brand {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .info-block {
    padding: 40px 16px;
  }

  .info-3-copy {
    padding: 40px 16px;
  }

  .offer-logo-wrap {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

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

  .info-3-visual,
  .info-8-band,
  .info-6-media,
  .info-10-side,
  .decor-frame {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }

  .info-6-media img,
  .info-10-side img,
  .decor-frame img {
    max-width: 100%;
    max-height: 220px;
    width: 100%;
    height: auto;
  }

  .info-3-visual,
  .info-8-band {
    min-height: 120px;
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 400px) {
  .offers-section,
  .info-block,
  .hero {
    padding-left: 12px;
    padding-right: 12px;
  }

  .offer-card {
    padding: 16px;
    max-width: 100%;
  }

  .offer-bonus {
    font-size: 12px;
  }
}
