.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background-image:
    linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%),
    url("/images/decorative/decor_1.jpg");
  background-size: cover;
  background-position: center;
  padding: 48px var(--home-padding);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--text);
  margin-bottom: 12px;
  max-width: 640px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--primary);
  max-width: 520px;
  opacity: 0.95;
}

.offers-section {
  position: relative;
  padding: 64px var(--home-padding);
  background-image:
    linear-gradient(rgba(18, 1, 26, 0.88), rgba(18, 1, 26, 0.92)),
    url("/images/decorative/decor_2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(126, 34, 206, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

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

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 480px;
  margin: 0 auto;
}

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

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.offer-card-logo {
  width: 100%;
  height: 120px;
  background: #f8f8f8;
  padding: 16px;
  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 24px 24px;
  color: #1a1a1a;
}

.offer-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

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

.offer-card-bonus {
  font-size: 15px;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.offer-card-cta {
  display: inline-block;
  background: #006633;
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.4s ease;
  text-align: center;
}

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

.info-section {
  padding: 64px var(--home-padding);
  position: relative;
}

.info-section:nth-child(even) {
  background: rgba(31, 2, 43, 0.5);
}

.info-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
}

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

.info-section h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
}

.info-section p {
  margin-bottom: 16px;
  color: var(--text);
  max-width: 720px;
}

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 22px;
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: var(--soft-radius);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.5s ease, color 0.4s ease;
}

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

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

.layout-split-reverse {
  direction: rtl;
}

.layout-split-reverse > * {
  direction: ltr;
}

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

.layout-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--soft-radius);
  padding: 20px;
  transition: border-color 0.5s ease, transform 0.4s ease;
}

.info-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

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

.info-card p {
  font-size: 14px;
  margin-bottom: 0;
}

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

.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  background: var(--warm-beige);
  border-radius: 0 var(--soft-radius) var(--soft-radius) 0;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: var(--primary);
  font-style: italic;
}

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

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

.highlight-list li {
  padding: 14px 18px;
  margin-bottom: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--soft-radius);
  font-size: 14px;
  transition: background 0.4s ease;
}

.highlight-list li:hover {
  background: rgba(126, 34, 206, 0.15);
}

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

.stat-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
}

.stat-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--soft-radius);
  padding: 24px 32px;
  min-width: 160px;
}

.stat-item strong {
  display: block;
  font-size: 1.8rem;
  color: var(--accent);
  font-family: Georgia, serif;
}

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

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

.timeline-item {
  position: relative;
  padding-bottom: 28px;
  padding-left: 24px;
  border-left: 2px solid var(--border);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

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

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

.mosaic-visual {
  background-image: url("/images/decorative/decor_6.webp");
  background-size: cover;
  background-position: center;
  min-height: 240px;
  border-radius: var(--soft-radius);
  max-height: 320px;
}

.layout-icon-grid ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.layout-icon-grid li {
  padding: 16px;
  background: var(--wool-grey);
  border-radius: var(--soft-radius);
  font-size: 14px;
  border: 1px solid var(--border);
}

.layout-steps {
  counter-reset: step;
}

.step-block {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.step-block::before {
  counter-increment: step;
  content: counter(step);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--secondary);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

@media (max-width: 768px) {
  .hero {
    min-height: 40vh;
    text-align: center;
    align-items: flex-end;
    justify-content: center;
  }

  .hero h1,
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .layout-split-reverse {
    direction: ltr;
  }

  .layout-split img {
    max-width: 100%;
  }

  .offers-section {
    background-attachment: scroll;
  }

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

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

  .layout-split img,
  .mosaic-visual {
    max-width: 100%;
  }

  .mosaic-visual {
    max-height: 240px;
    overflow: hidden;
  }
}
