.hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.25) 0%, transparent 70%);
  border-radius: 50% 40% 60% 45%;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: 48px 40px;
  background: var(--surface);
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(ellipse, rgba(251, 113, 133, 0.12) 0%, transparent 65%);
  border-radius: 55% 45% 50% 50%;
  pointer-events: none;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  border-radius: 4px;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 420px;
}

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

  .hero-image-wrap img {
    max-height: 180px;
    min-height: auto;
  }

  .hero-content {
    align-items: flex-start;
    text-align: left;
    padding: 32px 20px;
  }
}

.offers-section {
  padding: 64px 20px;
  position: relative;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 11, 16, 0.85) 0%, rgba(42, 17, 24, 0.9) 100%);
}

.offers-section::after {
  content: "";
  position: absolute;
  top: 40px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 65%);
  border-radius: 60% 40% 50% 50%;
  pointer-events: none;
}

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

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

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

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

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

.offer-card-logo {
  box-sizing: border-box;
  width: 228px;
  height: 108px;
  margin: 24px auto 0;
  padding: 24px;
  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;
  max-width: none;
}

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

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

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

.offer-card-bonus {
  font-size: 0.88rem;
  color: #333;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

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

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

.offer-card-cta {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, #e63946, #f97316);
  color: #fff;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  margin-top: auto;
  border: none;
  cursor: pointer;
  width: 100%;
}

.offer-card-cta:hover {
  color: #fff;
  opacity: 0.92;
}

.info-section {
  padding: 64px 20px;
  position: relative;
  overflow: hidden;
}

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

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

.info-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

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

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text);
  border-radius: 20px;
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.2s;
}

.info-cta-link:hover {
  color: var(--text);
  opacity: 0.9;
}

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

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

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

@media (max-width: 768px) {
  .layout-split,
  .layout-split.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

.decor-img {
  max-width: 500px;
  max-height: 320px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(251, 113, 133, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

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

.info-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .layout-cards {
    grid-template-columns: 1fr;
  }
}

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

.layout-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 24px;
  padding-left: 16px;
}

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

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

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

.pull-quote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--muted);
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  background: rgba(251, 113, 133, 0.08);
  border-radius: 0 16px 16px 0;
}

@media (max-width: 768px) {
  .layout-quote {
    grid-template-columns: 1fr;
  }
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.stat-box {
  text-align: center;
  padding: 20px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.stat-box .num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}

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

@media (max-width: 768px) {
  .layout-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.layout-checklist {
  list-style: none;
  margin-top: 20px;
}

.layout-checklist li {
  padding: 12px 16px 12px 40px;
  position: relative;
  background: rgba(42, 17, 24, 0.6);
  border-radius: 12px;
  margin-bottom: 10px;
  color: rgba(255, 241, 242, 0.85);
}

.layout-checklist li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--accent);
  font-weight: 700;
}

.layout-accordion .acc-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  background: var(--surface);
}

.layout-accordion .acc-head {
  padding: 16px 20px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(251, 113, 133, 0.06);
}

.layout-accordion .acc-body {
  padding: 0 20px 16px;
  font-size: 0.95rem;
  color: rgba(255, 241, 242, 0.8);
}

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

.mosaic-visual {
  position: relative;
  min-height: 240px;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.mosaic-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.2), rgba(249, 115, 22, 0.15));
}

@media (max-width: 768px) {
  .layout-mosaic {
    grid-template-columns: 1fr;
  }
}

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

.band-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50% 40% 55% 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

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

.col-block {
  padding: 24px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.col-block h3 {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .layout-columns-3 {
    grid-template-columns: 1fr;
  }

  .layout-band {
    flex-direction: column;
  }
}

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

.feature-pill {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(251, 113, 133, 0.12), rgba(249, 115, 22, 0.08));
  border-radius: 20px;
  border: 1px solid var(--border);
}

.feature-pill h3 {
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 8px;
}

.feature-pill p {
  font-size: 0.88rem;
  margin-bottom: 0;
}

.organic-blob-bg {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(250, 204, 21, 0.06) 0%, transparent 70%);
  border-radius: 60% 40% 55% 45%;
  pointer-events: none;
  z-index: 0;
}

.info-section .organic-blob-bg {
  top: 10%;
  right: -80px;
}

.info-section:nth-child(odd) .organic-blob-bg {
  left: -80px;
  right: auto;
}

@media (max-width: 768px) {
  .offer-card-logo {
    width: 200px;
    height: 96px;
    padding: 20px;
    margin-top: 20px;
  }

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

@media (max-width: 375px) {
  .hero-image-wrap {
    max-width: 100%;
    overflow: hidden;
  }

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

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

  .mosaic-visual {
    max-width: 100%;
    min-height: 180px;
  }

  .organic-blob-bg {
    width: 200px;
    height: 200px;
  }

  .offers-section::after {
    display: none;
  }
}
