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

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  animation: soft-breathe 8s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: rgba(250, 204, 21, 0.15);
  border-radius: 50%;
  filter: blur(50px);
}

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

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 241, 242, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.offers-section {
  position: relative;
  padding: 64px 0;
  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(26, 11, 16, 0.82);
}

.offers-section .container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 1.8rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title p {
  color: var(--muted);
  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: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
}

.offer-card-logo {
  width: 180px;
  height: 80px;
  margin: 20px auto 0;
  padding: 0;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  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-card-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.offer-bonus-wrap {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.offer-card-bonus {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e63946;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
}

.offer-terms-notice {
  font-size: 0.7rem;
  color: #888;
  flex-shrink: 0;
}

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

.offer-cta {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #e63946, #f97316);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s ease;
}

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

.info-section {
  padding: 64px 0;
  position: relative;
}

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

.info-heading {
  font-size: 1.6rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 20px;
}

.info-cta-link {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text);
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 113, 133, 0.3);
}

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

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

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

.stat-box strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  font-style: italic;
}

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

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

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

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

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

.feature-card {
  padding: 24px;
  border-radius: 16px;
  background: rgba(42, 17, 24, 0.6);
  border: 1px solid var(--border);
}

.feature-card h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
  font-style: italic;
}

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

.decor-img-wrap {
  border-radius: var(--soft-radius);
  overflow: hidden;
  max-width: 100%;
}

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

.layout-table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.info-table th {
  background: rgba(251, 113, 133, 0.15);
  color: var(--accent);
  font-style: italic;
}

.info-table td {
  color: rgba(255, 241, 242, 0.85);
}

.layout-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.accordion-item {
  padding: 20px 24px;
  border-radius: 12px;
  background: rgba(42, 17, 24, 0.5);
  border-left: 4px solid var(--secondary);
}

.accordion-item h3 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 8px;
}

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

.step-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: 16px;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.2);
}

.step-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 12px;
}

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

.pull-quote {
  padding: 32px;
  border-radius: var(--soft-radius);
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.2), rgba(249, 115, 22, 0.1));
  border: 1px solid var(--border);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  position: relative;
}

.pull-quote::before {
  content: "\201C";
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
  top: 8px;
  left: 16px;
  opacity: 0.5;
}

.bullet-list {
  list-style: none;
  margin-top: 16px;
}

.bullet-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: rgba(255, 241, 242, 0.88);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.layout-icons {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.icon-pill {
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(251, 113, 133, 0.15);
  color: var(--primary);
  font-size: 0.85rem;
  font-style: italic;
}

.layout-highlight {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

.highlight-box {
  padding: 32px;
  border-radius: var(--soft-radius);
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
}

.highlight-box h3 {
  color: var(--secondary);
  font-style: italic;
  margin-bottom: 12px;
}

.info-col p {
  margin-bottom: 14px;
  color: rgba(255, 241, 242, 0.88);
}

.decor-bg-band {
  position: relative;
  min-height: 200px;
  max-width: 100%;
  border-radius: var(--soft-radius);
  background-size: cover;
  background-position: center;
  margin-top: 24px;
  overflow: hidden;
}

.decor-bg-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 11, 16, 0.9) 0%, rgba(26, 11, 16, 0.4) 100%);
}

@media (max-width: 900px) {
  .hero {
    padding: 40px 20px;
  }

  .layout-split,
  .layout-image-text,
  .layout-quote,
  .layout-highlight {
    grid-template-columns: 1fr;
  }

  .layout-stats,
  .layout-grid-3,
  .layout-steps {
    grid-template-columns: 1fr;
  }

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

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

  .decor-img-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
  }

  .decor-bg-band {
    min-height: 140px;
  }
}
