.home-hero {
  background: var(--bg);
  padding: 60px 24px 80px;
  text-align: center;
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.home-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 800px;
}

.home-hero .hero-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 540px;
  line-height: 1.7;
}

.offers-section {
  position: relative;
  padding: 80px 24px;
  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(13, 2, 8, 0.82);
}

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

.offers-section h2 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 48px;
  color: var(--white);
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.offer-card {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

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

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

.offer-card h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
}

.offer-bonus-group {
  margin-bottom: 12px;
  width: 100%;
  max-width: 100%;
}

.offer-bonus {
  font-size: 12px;
  color: #ffd700;
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  display: block;
  max-width: 100%;
}

.offer-terms {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

.offer-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin-bottom: 16px;
}

.offer-cta {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #e94560, #c73659);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: auto;
}

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

.luxury-section {
  padding: 96px 24px;
  position: relative;
}

.luxury-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.editorial-block {
  max-width: 1200px;
  margin: 0 auto;
}

.white-surface {
  background: var(--white);
  color: #1a1a1a;
  border-radius: 2px;
}

.fashion-caption {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.minimal-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.info-section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.2;
}

.info-section-title.dark {
  color: var(--white);
}

.info-section-title.light {
  color: #1a1a1a;
}

.info-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.info-text.dark-muted {
  color: var(--muted);
}

.info-text.light-muted {
  color: #555;
}

.info-cta {
  display: inline-block;
  margin-top: 24px;
  color: var(--primary);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.info-cta:hover {
  opacity: 0.7;
}

.white-surface .info-cta {
  color: #c73659;
  border-bottom-color: #c73659;
}

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

.layout-split .decor-img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}

.layout-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.layout-pullquote {
  border-left: 3px solid var(--primary);
  padding-left: 32px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--secondary);
}

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

.info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 4px;
}

.white-surface .info-card {
  background: #fafafa;
  border-color: #eee;
}

.info-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.white-surface .info-card h3 {
  color: #1a1a1a;
}

.layout-steps {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  counter-reset: step;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
}

.step-item::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 0 auto 16px;
}

.layout-sidebar {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.sidebar-list {
  list-style: none;
  padding: 24px;
  background: rgba(255, 56, 100, 0.06);
  border: 1px solid var(--border);
}

.sidebar-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.layout-band {
  position: relative;
  padding: 80px 24px;
  background-size: cover;
  background-position: center;
}

.layout-band .band-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 2, 8, 0.75);
}

.layout-band .editorial-block {
  position: relative;
  z-index: 1;
}

.layout-timeline {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid var(--border);
  margin-top: 32px;
}

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

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

.timeline-item h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}

.layout-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-serif);
  font-size: 48px;
  color: var(--primary);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

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

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

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

.layout-magazine {
  columns: 2;
  column-gap: 48px;
  margin-top: 24px;
}

.layout-magazine p {
  break-inside: avoid;
  margin-bottom: 16px;
}

.decor-constrained {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
}

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

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

  .layout-split,
  .layout-sidebar,
  .layout-zigzag,
  .layout-cards,
  .layout-steps,
  .layout-stats {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

  .layout-magazine {
    columns: 1;
  }

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

  .luxury-section {
    padding: 64px 20px;
  }
}
