.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  border-bottom: 2px solid #84CC16;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background:
    linear-gradient(135deg, #334155 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, #334155 25%, transparent 25%) -10px 0,
    linear-gradient(315deg, #334155 25%, transparent 25%),
    linear-gradient(45deg, #334155 25%, transparent 25%);
  background-size: 20px 20px;
  background-color: #1e293b;
  transform: perspective(120px) rotateX(45deg);
  transform-origin: bottom;
  opacity: 0.5;
  pointer-events: none;
}

.hero-headline {
  background: #BEF264;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  border-right: 2px solid #84CC16;
  position: relative;
  z-index: 1;
}

.hero-headline h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  color: #020617;
  text-shadow: 3px 3px 0 rgba(132, 204, 22, 0.6);
  text-align: center;
  max-width: 480px;
}

.hero-subtitle {
  background: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  position: relative;
  z-index: 1;
}

.hero-subtitle p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: #94A3B8;
  max-width: 440px;
  line-height: 1.7;
  border-left: 3px solid #ff00ff;
  padding-left: 20px;
  box-shadow: -6px 0 0 rgba(0, 255, 255, 0.3);
}

.offers-section {
  padding: 64px 24px;
  background:
    linear-gradient(160deg, #0F172A 0%, #020617 40%, #1a0a2e 100%);
  position: relative;
}

.offers-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(190, 242, 100, 0.03) 2px,
    rgba(190, 242, 100, 0.03) 4px
  );
  pointer-events: none;
}

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

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

.offers-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #BEF264;
  text-shadow: 3px 3px 0 #ff00ff;
  margin-bottom: 12px;
}

.offers-header p {
  color: #64748B;
  font-size: 1rem;
}

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

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

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

.info-section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: #BEF264;
  margin-bottom: 20px;
}

.info-section p {
  color: #94A3B8;
  font-size: 0.98rem;
  line-height: 1.7;
}

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

.info-1-sidebar {
  background: linear-gradient(180deg, #ff00ff 0%, #00ffff 100%);
  padding: 3px;
  box-shadow: 6px 6px 0 #BEF264;
}

.info-1-sidebar-inner {
  background: #0F172A;
  padding: 28px 20px;
}

.info-1-sidebar-inner span {
  display: block;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-style: italic;
  font-size: 3rem;
  color: #BEF264;
  line-height: 1;
}

.info-1-layout p {
  padding-top: 8px;
}

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

.info-2-visual {
  flex: 0 0 180px;
  background:
    repeating-conic-gradient(#334155 0% 25%, #1e293b 0% 50%) 0 0 / 24px 24px;
  border: 2px solid #00ffff;
  box-shadow: 5px 5px 0 #ff00ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-2-visual span {
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-style: italic;
  font-size: 1.4rem;
  color: #BEF264;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.1em;
}

.info-2-content {
  flex: 1;
  border: 1px solid rgba(190, 242, 100, 0.2);
  padding: 28px 32px;
  background: #0F172A;
}

.info-3-layout {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px;
  border: 2px dashed rgba(190, 242, 100, 0.3);
  background: rgba(15, 23, 42, 0.8);
  box-shadow: 8px 8px 0 rgba(132, 204, 22, 0.25);
}

.info-3-layout h2 {
  display: inline-block;
  border-bottom: 3px solid #ff00ff;
  padding-bottom: 8px;
}

.info-4-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid rgba(190, 242, 100, 0.2);
}

.info-4-stat {
  background: #BEF264;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: inset -4px 0 0 #84CC16;
}

.info-4-stat-num {
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-style: italic;
  font-size: 3.5rem;
  color: #020617;
  line-height: 1;
}

.info-4-stat-label {
  font-size: 0.85rem;
  color: #334155;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 8px;
}

.info-4-text {
  background: #0F172A;
  padding: 36px 32px;
}

.info-5-layout {
  columns: 2;
  column-gap: 40px;
}

.info-5-layout h2 {
  column-span: all;
  margin-bottom: 24px;
}

.info-5-layout p {
  break-inside: avoid;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid #84CC16;
}

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

.info-6-card {
  background: #0F172A;
  padding: 24px 20px;
  border-top: 3px solid #00ffff;
  box-shadow: 4px 4px 0 rgba(255, 0, 255, 0.4);
  transition: transform 0.2s ease;
}

.info-6-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(255, 0, 255, 0.5);
}

.info-6-card h3 {
  font-size: 0.9rem;
  color: #BEF264;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.info-6-card p {
  font-size: 0.88rem;
}

.info-6-intro {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.info-7-layout {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(90deg, #0F172A 60%, #1a0a2e 100%);
  border: 1px solid rgba(190, 242, 100, 0.15);
}

.info-7-accent-bar {
  width: 8px;
  background: linear-gradient(180deg, #BEF264, #ff00ff, #00ffff);
  flex-shrink: 0;
}

.info-7-body {
  padding: 36px 40px;
  flex: 1;
}

.info-7-tag {
  display: inline-block;
  background: rgba(132, 204, 22, 0.2);
  color: #BEF264;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-8-layout {
  position: relative;
  padding: 48px 40px;
  background: #0F172A;
  overflow: hidden;
}

.info-8-layout::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 0, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.info-8-layout::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.info-8-layout h2,
.info-8-layout p {
  position: relative;
  z-index: 1;
}

.info-8-list {
  list-style: none;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.info-8-list li {
  color: #94A3B8;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid rgba(190, 242, 100, 0.1);
  position: relative;
  font-size: 0.95rem;
}

.info-8-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #BEF264;
  font-weight: 700;
}

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

.info-9-badge {
  width: 100px;
  height: 100px;
  border: 3px solid #BEF264;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #BEF264;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 0 20px rgba(190, 242, 100, 0.3), 4px 4px 0 #ff00ff;
  flex-shrink: 0;
}

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

.info-10-panel {
  padding: 32px 28px;
  border: 2px solid rgba(190, 242, 100, 0.2);
}

.info-10-panel-dark {
  background: #0F172A;
  box-shadow: 5px 5px 0 rgba(0, 255, 255, 0.3);
}

.info-10-panel-accent {
  background: linear-gradient(135deg, rgba(190, 242, 100, 0.15) 0%, rgba(132, 204, 22, 0.08) 100%);
  box-shadow: 5px 5px 0 rgba(255, 0, 255, 0.3);
}

.info-10-panel h2 {
  font-size: 1.3rem;
}

.info-section:nth-child(odd) {
  background: #020617;
}

.info-section:nth-child(even) {
  background: #0a0f1a;
}

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

  .hero-headline {
    border-right: none;
    border-bottom: 2px solid #84CC16;
    min-height: 180px;
  }

  .hero-subtitle {
    min-height: 160px;
  }

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

  .info-2-layout {
    flex-direction: column;
  }

  .info-2-visual {
    flex: none;
    height: 80px;
  }

  .info-2-visual span {
    writing-mode: horizontal-tb;
  }

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

  .info-5-layout {
    columns: 1;
  }

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

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

  .info-9-badge {
    margin: 0 auto;
  }

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