.hero {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 340px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-stripe {
  width: 80px;
  flex-shrink: 0;
  background: var(--accent);
}

.hero-content {
  flex: 1;
  padding: var(--silence-pad) var(--silence-pad) var(--silence-pad) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: normal;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 640px;
}

.hero-content p {
  font-size: 17px;
  color: var(--text);
  opacity: 0.78;
  max-width: 560px;
}

.offers-section {
  position: relative;
  z-index: 1;
  padding: var(--discipline-gap) 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: rgba(245, 243, 255, 0.88);
}

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

.offers-section h2 {
  font-size: 26px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 2rem;
}

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

.offer-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
}

.offer-card-logo {
  width: 220px;
  height: 80px;
  margin: 20px auto 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 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: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

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

.offer-card-bonus {
  font-size: 15px;
  font-weight: 600;
  color: #059669;
  display: block;
  word-break: break-word;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

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

.offer-card-desc {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.5;
  margin-bottom: 14px;
  flex: 1;
}

.offer-card-btn {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}

.offer-card-btn:hover {
  opacity: 0.92;
}

.info-sections {
  position: relative;
  z-index: 1;
}

.info-block {
  padding: var(--discipline-gap) 24px;
  border-bottom: 1px solid var(--border);
}

.info-block:nth-child(even) {
  background: rgba(255, 255, 255, 0.5);
}

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

.info-block h2 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.info-block p {
  font-size: 15px;
  margin-bottom: 1rem;
  max-width: 72ch;
}

.info-cta {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--primary);
  border: 1px solid var(--primary);
  text-decoration: none;
  transition: background 0.2s;
}

.info-cta:hover {
  background: rgba(139, 92, 246, 0.08);
}

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

.layout-aside {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 100%;
}

.layout-aside img {
  max-width: 100%;
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
}

.layout-aside p {
  font-size: 13px;
  color: var(--muted);
}

.layout-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.layout-steps li {
  counter-increment: step;
  padding: 1rem 0 1rem 3rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.layout-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
}

.layout-quote {
  border-left: 4px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(244, 114, 182, 0.06);
  font-style: italic;
  font-size: 16px;
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 1.5rem 0;
}

.mini-card {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.mini-card h3 {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.mini-card img,
.mini-card-img {
  max-width: 100%;
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  display: block;
  margin-bottom: 0.5rem;
}

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

.layout-timeline {
  position: relative;
  padding-left: 2rem;
  margin: 1.5rem 0;
}

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

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.55rem;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}

.timeline-item h3 {
  font-size: 15px;
  font-weight: normal;
  margin-bottom: 0.35rem;
}

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

.highlight-box {
  background: rgba(96, 165, 250, 0.1);
  border: 1px solid rgba(96, 165, 250, 0.25);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.highlight-box ul {
  padding-left: 1.25rem;
  margin: 0;
}

.highlight-box li {
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.layout-media-left {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
}

.media-wrap {
  overflow: hidden;
  max-width: 500px;
}

.media-wrap img {
  max-width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin: 1.5rem 0;
  border: 1px solid var(--border);
}

.stat-cell {
  background: var(--surface);
  padding: 1.25rem;
  text-align: center;
}

.stat-cell strong {
  display: block;
  font-size: 22px;
  font-weight: normal;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.stat-cell span {
  font-size: 12px;
  color: var(--muted);
}

details.faq-item {
  border: 1px solid var(--border);
  margin-bottom: 8px;
  background: var(--surface);
}

details.faq-item summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: 15px;
  list-style: none;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
}

details.faq-item p {
  padding: 1rem 1.25rem;
  font-size: 14px;
  margin: 0;
}

.layout-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.dual-panel {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.dual-panel h3 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.bg-decor-rail {
  background-image: url('/images/decorative/decor_5.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.bg-decor-rail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 243, 255, 0.92);
}

.bg-decor-rail .info-inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .hero-stripe {
    width: 100%;
    height: 6px;
  }

  .hero-content {
    padding: 2rem 24px;
    text-align: center;
    align-items: center;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .layout-split,
  .layout-media-left,
  .layout-dual,
  .card-grid-3,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .layout-split,
  .layout-media-left,
  .card-grid-3 {
    overflow: hidden;
    max-width: 100%;
  }

  .media-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .media-wrap img {
    width: 100%;
    max-width: 100%;
  }

  .mini-card {
    overflow: hidden;
    max-width: 100%;
  }

  .mini-card img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

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

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

  .offer-card-bonus {
    font-size: 14px;
  }

  .bg-decor-rail {
    background-size: cover;
    overflow: hidden;
  }
}

@keyframes austere-pulse {
  from { opacity: 1; }
  to { opacity: 1; }
}

.monastic-focus {
  letter-spacing: 0.01em;
}

.austere-ui {
  font-weight: normal;
}

.discipline-grid {
  display: grid;
  gap: 1rem;
}

.silence-band {
  padding: 2rem 0;
}

.focus-reader {
  max-width: 72ch;
}
