main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px var(--page-padding);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -60px;
  left: 8%;
  border-radius: 50%;
  background: rgba(244, 235, 217, 0.2);
  filter: blur(60px);
  animation: breathe 7s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: -40px;
  right: 12%;
  border-radius: 50%;
  background: rgba(192, 82, 43, 0.15);
  filter: blur(50px);
  animation: float-soft 9s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  color: rgba(244, 235, 217, 0.98);
  margin-bottom: 16px;
  font-weight: 300;
}

.hero h1 em {
  color: rgba(239, 225, 197, 0.9);
  font-style: italic;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(244, 235, 217, 0.85);
  max-width: 600px;
  margin: 0 auto;
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 300;
}

.offers-section {
  position: relative;
  padding: 64px var(--page-padding);
  background-image:
    linear-gradient(rgba(244, 235, 217, 0.88), rgba(239, 225, 197, 0.92)),
    url("/images/offers_bg/offers_bg.svg");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(141, 91, 62, 0.06) 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;
  color: var(--secondary);
}

.offers-section h2 em {
  font-style: italic;
  color: var(--primary);
}

.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(44, 36, 29, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

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

.offer-card-logo {
  width: 100%;
  height: 100px;
  background: #f8f8f8;
  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;
  word-break: break-word;
  line-height: 1.4;
}

.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;
  font-family: "Segoe UI", Arial, sans-serif;
  transition: background 0.4s ease;
}

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

.info-section {
  padding: 56px var(--page-padding);
  position: relative;
}

.info-section:nth-child(odd) {
  background: rgba(239, 225, 197, 0.35);
}

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

.info-section h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.info-section h2 em {
  font-style: italic;
  color: var(--primary);
}

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

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

.layout-split img {
  border-radius: var(--soft-radius);
  box-shadow: 0 12px 40px rgba(44, 36, 29, 0.12);
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  width: 100%;
}

.layout-quote .pull-quote {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary);
  padding: 24px 32px;
  margin: 24px 0;
  background: rgba(239, 225, 197, 0.5);
  border-radius: var(--soft-radius);
  border-left: 3px solid var(--accent);
  backdrop-filter: blur(12px);
}

.layout-steps .step-block {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(239, 225, 197, 0.45);
  border-radius: var(--soft-radius);
  backdrop-filter: blur(10px);
  animation: float-soft 12s ease-in-out infinite;
}

.layout-steps .step-block:nth-child(3) {
  animation-delay: 2s;
}

.layout-steps .step-block:nth-child(4) {
  animation-delay: 4s;
}

.layout-steps h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary);
}

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

.info-card {
  padding: 24px;
  background: rgba(244, 235, 217, 0.6);
  border-radius: var(--soft-radius);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  transition: transform 0.5s ease;
}

.info-card:hover {
  transform: translateY(-3px);
}

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

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

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

.highlight-list li {
  padding: 14px 20px;
  margin-bottom: 8px;
  background: rgba(141, 91, 62, 0.1);
  border-radius: var(--soft-radius);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  position: relative;
  padding-left: 36px;
}

.highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--accent);
}

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

.stat-item {
  text-align: center;
  padding: 28px 16px;
  background: rgba(239, 225, 197, 0.55);
  border-radius: var(--soft-radius);
  backdrop-filter: blur(16px);
  animation: breathe 8s ease-in-out infinite;
}

.stat-item:nth-child(2) {
  animation-delay: 2.5s;
}

.stat-item:nth-child(3) {
  animation-delay: 5s;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.stat-item span {
  font-size: 13px;
  color: var(--muted);
  font-family: "Segoe UI", Arial, sans-serif;
}

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

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

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

.mosaic-visual {
  border-radius: var(--soft-radius);
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(44, 36, 29, 0.12);
}

.layout-timeline .timeline-item {
  position: relative;
  padding-left: 32px;
  margin-bottom: 28px;
  border-left: 2px solid rgba(141, 91, 62, 0.25);
}

.layout-timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  animation: breathe 5s ease-in-out infinite;
}

.layout-timeline h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--primary);
}

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

.layout-icon-grid li {
  padding: 20px;
  background: rgba(239, 225, 197, 0.5);
  border-radius: var(--soft-radius);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-family: "Segoe UI", Arial, sans-serif;
}

.layout-icon-grid li strong {
  display: block;
  margin-bottom: 6px;
  color: var(--secondary);
  font-family: Georgia, serif;
}

.layout-band {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  .hero {
    padding: 40px var(--page-padding);
  }

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

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

  .layout-band img {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

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

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

  .layout-split img,
  .layout-band img,
  .mosaic-visual {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 240px;
  }

  .mosaic-visual {
    min-height: 180px;
  }
}
