.runway-hero {
  display: flex;
  min-height: 420px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.runway-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 179, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-stripe {
  width: 80px;
  flex-shrink: 0;
  background: var(--accent);
  position: relative;
  z-index: 2;
}

.hero-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 64px 48px 64px 40px;
  position: relative;
  z-index: 2;
}

.hero-main h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 18px;
  max-width: 640px;
}

.hero-main p {
  font-family: var(--runway-sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.65;
}

.offers-section {
  position: relative;
  padding: 72px 24px;
  background-image:
    linear-gradient(rgba(13, 10, 0, 0.88), rgba(26, 21, 0, 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(255, 179, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.offers-inner {
  max-width: var(--editorial-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.offers-section h2 {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 44px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--visual-gap);
  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(0, 0, 0, 0.35);
  transition: transform var(--aesthetic-ease), box-shadow var(--aesthetic-ease);
}

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

.offer-card-logo {
  width: 280px;
  height: 100px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
}

.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: 72px 24px;
  position: relative;
  overflow-x: hidden;
}

.info-section:nth-child(odd) {
  background: var(--bg);
}

.info-section:nth-child(even) {
  background: var(--surface);
}

.info-inner {
  max-width: var(--editorial-max);
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 20px;
}

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

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

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

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

.layout-fashion-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.layout-visual-quote {
  max-width: 780px;
}

.pull-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding: 16px 0 16px 24px;
  margin: 24px 0;
}

.layout-aesthetic-steps .step-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 179, 0, 0.03);
}

.step-num {
  font-family: var(--runway-sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}

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

.info-card {
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(13, 10, 0, 0.5);
}

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

.info-card p {
  font-size: 14px;
  margin-bottom: 0;
}

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

.mosaic-visual {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.layout-list-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.highlight-list li {
  font-family: var(--runway-sans);
  font-size: 14px;
  color: var(--muted);
  padding: 12px 16px;
  border-left: 2px solid var(--accent);
  margin-bottom: 8px;
  background: rgba(255, 179, 0, 0.04);
}

.layout-stat-runway {
  text-align: center;
}

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

.stat-item {
  padding: 28px 16px;
  border: 1px solid var(--border);
  background: rgba(255, 179, 0, 0.04);
}

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

.stat-item span {
  font-family: var(--runway-sans);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.decor-img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.layout-minimal-stack {
  max-width: 720px;
}

.layout-minimal-stack .decor-wrap {
  margin-top: 28px;
}

@media (max-width: 768px) {
  .runway-hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-stripe {
    width: 100%;
    height: 6px;
  }

  .hero-main {
    padding: 40px 24px;
    text-align: center;
  }

  .hero-main h1,
  .hero-main p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .layout-editorial-split,
  .layout-fashion-band,
  .layout-asymmetric-mosaic,
  .layout-list-editorial,
  .layout-runway-cards,
  .stat-row {
    grid-template-columns: 1fr;
  }

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

  .decor-img,
  .mosaic-visual {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

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

  .offer-card-logo img {
    object-fit: contain;
    object-position: center;
  }
}
