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

.hero-left {
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
}

.hero-left h1 {
  font-family: var(--faith-serif);
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
  color: var(--bg);
  text-align: center;
}

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

.hero-right p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
  max-width: 420px;
  line-height: 1.7;
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  overflow: hidden;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.offers-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 30%, transparent 70%, var(--bg) 100%);
  z-index: 0;
}

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

.offers-inner h2 {
  font-family: var(--faith-serif);
  font-size: 2rem;
  text-align: center;
  margin: 0 0 8px;
  color: var(--text);
}

.offers-subtitle {
  text-align: center;
  color: var(--muted);
  margin: 0 0 40px;
  font-size: 0.95rem;
}

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

.offer-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.offer-card-logo {
  width: 212px;
  height: 108px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8f8f8;
  border-radius: 8px;
}

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

.offer-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.offer-bonus {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms {
  font-size: 0.7rem;
  color: #888;
  margin: 4px 0 0;
}

.offer-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  background: linear-gradient(135deg, #e63946, #d62828);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s ease;
  margin-top: auto;
}

.offer-cta:hover {
  opacity: 0.9;
}

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

.info-section:nth-child(even) {
  background: rgba(42, 17, 24, 0.5);
}

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

.info-section h2 {
  font-family: var(--faith-serif);
  font-size: 1.75rem;
  margin: 0 0 20px;
  color: var(--text);
}

.info-section p {
  color: var(--muted);
  margin: 0 0 16px;
  line-height: 1.7;
}

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}

.info-cta-link:hover {
  background: var(--primary);
  color: var(--bg);
}

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

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

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

.layout-card-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  transition: border-color 0.25s ease;
}

.layout-card-item:hover {
  border-color: var(--primary);
}

.layout-card-item h3 {
  font-family: var(--faith-serif);
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--accent);
}

.layout-card-item p {
  font-size: 0.9rem;
  margin: 0;
}

.layout-list-block {
  background: var(--surface);
  border-left: 4px solid var(--secondary);
  padding: 24px 28px;
  border-radius: 0 10px 10px 0;
  margin-top: 16px;
}

.layout-list-block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.layout-list-block li {
  margin-bottom: 8px;
}

.layout-quote {
  font-family: var(--faith-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--accent);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 24px 0;
}

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

.timeline-step {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-num {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.timeline-content h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--text);
}

.timeline-content p {
  margin: 0;
  font-size: 0.9rem;
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(251, 113, 133, 0.1);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.stat-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--primary);
  font-family: var(--faith-serif);
}

.stat-item span {
  font-size: 0.8rem;
  color: var(--muted);
}

.layout-icon-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.icon-block {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.icon-block h3 {
  color: var(--secondary);
  margin: 0 0 8px;
  font-size: 1rem;
}

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

.mosaic-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.community-cell {
  padding: 20px;
  background: linear-gradient(135deg, rgba(42, 17, 24, 0.8), rgba(26, 11, 16, 0.9));
  border: 1px solid var(--border);
  border-radius: 10px;
}

.community-cell h3 {
  font-family: var(--faith-serif);
  color: var(--accent);
  margin: 0 0 8px;
  font-size: 1rem;
}

.spiritual-accent-bar {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin-bottom: 16px;
}

.church-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.faith-highlight {
  color: var(--accent);
  font-weight: 600;
}

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

  .hero-right {
    border-left: none;
    border-top: 2px solid var(--accent);
  }

  .layout-split,
  .layout-mosaic {
    grid-template-columns: 1fr;
  }

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

  .layout-stat-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero-left h1 {
    font-size: 1.75rem;
  }

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

  .offer-card-logo {
    width: 188px;
    height: 96px;
  }

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

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

@media (max-width: 375px) {
  .layout-split img,
  .mosaic-side img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: cover;
  }

  .info-section,
  .info-inner,
  .layout-split,
  .layout-mosaic {
    overflow: hidden;
    max-width: 100%;
  }
}
