.tactical-hero {
  background: var(--primary);
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}

.tactical-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(239, 68, 68, 0.12) 0%, transparent 55%);
}

.tactical-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(15, 15, 15, 0.04) 8px,
    rgba(15, 15, 15, 0.04) 9px
  );
  pointer-events: none;
}

.hero-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-inner h1 {
  font-size: clamp(1.6rem, 4.5vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  border: none;
  padding: 0;
}

.hero-light {
  color: #FFFFFF;
}

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

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.offers-section {
  position: relative;
  padding: 56px 24px;
  background-color: var(--bg);
  background-image: url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
}

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

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

.offers-inner > h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
  text-align: center;
}

.offers-sub {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  justify-content: center;
}

.offer-card {
  background: #FFFFFF;
  border: 2px solid #1a1a2e;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.offer-card-logo {
  width: 280px;
  height: 100px;
  max-width: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  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;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card-name {
  font-size: 1.1rem;
  color: #1a1a2e;
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 0;
}

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

.offer-card-bonus {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #c0392b;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms-notice {
  display: block;
  font-size: 11px;
  color: #6c757d;
  margin-top: 4px;
}

.offer-card-desc {
  font-size: 12px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

.offer-card-cta {
  display: block;
  text-align: center;
  padding: 12px 16px;
  background: #1a1a2e;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
}

.offer-card-cta:hover {
  background: #c0392b;
  color: #fff;
}

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

.info-section:nth-child(even) {
  background: var(--surface);
}

.info-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  margin-bottom: 16px;
  color: var(--primary);
}

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

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

.layout-split-columns .hud-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 20px;
  position: relative;
}

.layout-split-columns .hud-panel::before {
  content: "TACTICAL";
  position: absolute;
  top: 0;
  right: 0;
  font-size: 9px;
  letter-spacing: 0.15em;
  background: var(--accent);
  color: #fff;
  padding: 2px 8px;
}

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

.tactical-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 16px;
}

.tactical-card h3 {
  font-size: 0.85rem;
  color: var(--tactical-hud-green);
  margin-bottom: 8px;
}

.tactical-card p {
  font-size: 13px;
  margin: 0;
}

.layout-image-band {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}

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

.layout-quote-block {
  max-width: 780px;
}

.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 15px;
  color: var(--primary);
  font-style: italic;
  background: rgba(239, 68, 68, 0.06);
}

.layout-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.step-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.step-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-row h3 {
  font-size: 0.9rem;
  color: var(--tactical-amber);
  margin-bottom: 6px;
}

.step-row p {
  margin: 0;
  font-size: 13px;
}

.layout-stat-band {
  text-align: center;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat-item {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 20px 12px;
}

.stat-item strong {
  display: block;
  font-size: 1.4rem;
  color: var(--tactical-hud-green);
  margin-bottom: 6px;
}

.stat-item span {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 28px;
  align-items: center;
}

.mosaic-visual {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
  justify-self: end;
}

.layout-list-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.highlight-list li {
  padding: 12px 16px;
  border-left: 2px solid var(--tactical-hud-green);
  margin-bottom: 8px;
  background: var(--bg);
  font-size: 13px;
  color: var(--muted);
}

.layout-timeline {
  position: relative;
  padding-left: 28px;
}

.layout-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 20px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--accent);
}

.timeline-item h3 {
  font-size: 0.9rem;
  color: var(--tactical-amber);
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 13px;
  margin: 0;
}

.layout-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.support-cell {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 20px 16px;
  text-align: center;
}

.support-cell h3 {
  font-size: 0.8rem;
  color: var(--tactical-hud-green);
  margin-bottom: 8px;
}

.support-cell p {
  font-size: 12px;
  margin: 0;
}

.military-topo-overlay {
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 18px, rgba(57, 255, 20, 0.03) 18px, rgba(57, 255, 20, 0.03) 19px);
  pointer-events: none;
}

@media (max-width: 768px) {
  .tactical-hero {
    padding: 32px 20px;
  }

  .layout-split-columns,
  .layout-image-band,
  .layout-mosaic,
  .layout-list-panel {
    grid-template-columns: 1fr;
  }

  .layout-card-grid,
  .stat-row,
  .layout-support-grid {
    grid-template-columns: 1fr;
  }

  .mosaic-visual,
  .decor-img {
    justify-self: center;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .offer-card-logo {
    width: 280px;
    height: 100px;
  }

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

@media (max-width: 375px) {
  .info-inner,
  .layout-image-band,
  .layout-mosaic,
  .layout-steps {
    overflow: hidden;
    max-width: 100%;
  }

  .decor-img,
  .mosaic-visual {
    max-width: 100%;
    max-height: 220px;
    width: 100%;
  }
}
