.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

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

.hero-col-left::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 60% 40% 55% 45%;
  background: rgba(255, 255, 255, 0.12);
  top: -40px;
  right: -60px;
  animation: blobMorph 12s ease-in-out infinite;
}

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

.hero-col-right::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 45% 55% 40% 60%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(146, 64, 14, 0.05));
  bottom: -30px;
  left: -40px;
  animation: blobMorph 10s ease-in-out infinite reverse;
}

@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 55% 45%; transform: rotate(0deg); }
  50% { border-radius: 40% 60% 45% 55%; transform: rotate(8deg); }
}

.hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 200;
  color: var(--secondary);
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.offers-section {
  position: relative;
  padding: 72px 24px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.03) 0%, transparent 100%),
    radial-gradient(ellipse at 50% 100%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(146, 64, 14, 0.03) 0%, transparent 20%);
  pointer-events: none;
}

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

.offers-title {
  font-size: 28px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text);
}

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

.offer-card {
  background: linear-gradient(145deg, #1a2744 0%, #0F172A 100%);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

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

.offer-logo-wrap {
  width: 140px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.offer-logo-wrap .offer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 12px;
}

.offer-name {
  font-size: 18px;
  font-weight: 500;
  color: #F8FAFC;
  margin-bottom: 12px;
}

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

.offer-bonus {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #D4AF37;
  margin-bottom: 4px;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
  line-height: 1.35;
}

.offer-terms {
  display: block;
  font-size: 11px;
  color: rgba(248, 250, 252, 0.5);
}

.offer-desc {
  font-size: 11px;
  color: rgba(248, 250, 252, 0.55);
  line-height: 1.5;
  margin-bottom: 16px;
}

.offer-cta .btn-offer {
  background: linear-gradient(135deg, #D4AF37 0%, #B8962E 100%);
  color: #0F172A;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 24px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-cta .btn-offer:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

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

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

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

.info-section h2 {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--text);
}

.info-section p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent);
  border-radius: 24px;
  font-size: 14px;
  font-weight: 400;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: background 0.35s ease, transform 0.35s ease;
}

.info-cta-link:hover {
  background: rgba(212, 175, 55, 0.22);
  transform: translateX(4px);
  color: var(--accent);
}

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

.layout-split .decor-img {
  border-radius: 24px;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  box-shadow: 0 16px 48px rgba(28, 25, 23, 0.1);
}

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

.info-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
}

.info-card strong {
  display: block;
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 6px;
}

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

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

.layout-band .band-visual {
  flex: 0 0 200px;
  height: 200px;
  border-radius: 50% 40% 55% 45%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 40px rgba(28, 25, 23, 0.12);
}

.layout-band .band-text {
  flex: 1;
}

.layout-quote {
  margin: 24px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(146, 64, 14, 0.04));
  border-radius: 24px;
  border-left: 3px solid var(--primary);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
}

.layout-steps {
  counter-reset: step;
  list-style: none;
  margin: 20px 0;
}

.layout-steps li {
  counter-increment: step;
  padding: 16px 16px 16px 56px;
  position: relative;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  font-size: 14px;
  color: var(--muted);
}

.layout-steps li::before {
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
}

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

.icon-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 32px;
  font-size: 14px;
  color: var(--text);
}

.icon-pill .pill-icon {
  font-size: 20px;
}

.layout-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.mosaic-cell {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
}

.mosaic-cell.img-cell {
  padding: 0;
  overflow: hidden;
  max-height: 240px;
}

.mosaic-cell.img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 240px;
}

.layout-sidebar {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}

.sidebar-rail {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.1), rgba(146, 64, 14, 0.05));
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border);
}

.sidebar-rail img {
  border-radius: 16px;
  margin-bottom: 16px;
  max-width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.sidebar-rail ul {
  list-style: none;
  font-size: 13px;
  color: var(--muted);
}

.sidebar-rail li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.layout-glass-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.glass-cell {
  padding: 24px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(28, 25, 23, 0.06);
}

.glass-cell h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--text);
}

.glass-cell p {
  font-size: 14px;
  margin-bottom: 0;
}

.layout-float-img {
  float: right;
  margin: 0 0 20px 28px;
  max-width: 280px;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(28, 25, 23, 0.1);
}

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

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

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

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

.timeline-item strong {
  display: block;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}

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

.layout-stat-strip {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
  padding: 24px;
  background: var(--secondary);
  border-radius: 24px;
}

.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 12px;
}

.stat-item .stat-val {
  display: block;
  font-size: 28px;
  font-weight: 200;
  color: var(--primary);
}

.stat-item .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.organic-blob-bg {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 60% 40% 55% 45%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(146, 64, 14, 0.04));
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.fluid-transition {
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.soft-shadow {
  box-shadow: 0 8px 32px rgba(28, 25, 23, 0.08);
}

.glassy-surface {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.bionic-curve {
  border-radius: 32px 8px 32px 8px;
}

.info-section,
.offers-section,
.info-inner {
  overflow-x: hidden;
  max-width: 100%;
}

.decor-img,
.layout-float-img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .offer-logo-wrap {
    width: 120px;
    height: 60px;
  }

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

  .offer-bonus {
    font-size: 14px;
  }

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

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

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

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

  .layout-float-img {
    float: none;
    margin: 0 auto 20px;
    display: block;
    max-width: 100%;
  }

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

  .layout-band .band-visual {
    width: 100%;
    max-width: 100%;
    flex: none;
    height: 180px;
  }

  .layout-split .decor-img,
  .mosaic-cell img,
  .sidebar-rail img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
  }
}

@media (max-width: 375px) {
  .layout-split .decor-img,
  .mosaic-cell img,
  .sidebar-rail img,
  .layout-float-img,
  .decor-img {
    max-width: 100%;
    width: 100%;
    max-height: 180px;
  }

  .layout-band .band-visual {
    max-height: 160px;
  }
}
