.hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background:
    radial-gradient(circle at 30% 50%, rgba(250, 204, 21, 0.15) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(220, 38, 38, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.85rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 0 30px rgba(250, 204, 21, 0.15);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}

.offers-section {
  padding: 64px 24px;
  background: var(--surface);
  position: relative;
}

.offers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

.offers-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.offers-section h2 {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.offers-intro {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.info-section {
  padding: 56px 24px;
  border-top: 1px solid var(--border);
}

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

.info-section h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}

.info-section p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.glow-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3);
  animation: floatPulse 6s ease-in-out infinite;
}

.glow-accent {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 16px;
}

@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.chat-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}

.chat-bubble {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px 16px 16px 4px;
  padding: 20px 24px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.chat-bubble--reply {
  border-radius: 16px 16px 4px 16px;
  margin-left: 40px;
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 0 24px rgba(220, 38, 38, 0.08);
}

.chat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 600;
}

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

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.step-card:hover {
  border-color: rgba(250, 204, 21, 0.3);
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.08);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.85rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.mini-tile {
  background: linear-gradient(135deg, var(--surface) 0%, rgba(22, 3, 5, 0.6) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.mini-tile strong {
  display: block;
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.mini-tile p {
  font-size: 0.85rem;
  margin: 0;
}

.stripe-section {
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.12) 0%, rgba(249, 115, 22, 0.08) 50%, rgba(250, 204, 21, 0.06) 100%);
  text-align: center;
}

.stripe-section .info-inner {
  max-width: 720px;
}

.side-line-layout {
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 28px;
  align-items: start;
}

.side-line {
  height: 100%;
  min-height: 120px;
  background: linear-gradient(180deg, var(--primary), var(--secondary), var(--accent));
  border-radius: 2px;
}

.float-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow:
    0 0 0 1px rgba(255, 241, 242, 0.05),
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 241, 242, 0.06);
  position: relative;
}

.float-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

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

.zigzag-block:nth-child(even) {
  direction: rtl;
}

.zigzag-block:nth-child(even) > * {
  direction: ltr;
}

.zigzag-visual {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  text-align: center;
}

.zigzag-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 12px rgba(250, 204, 21, 0.4));
}

.mobile-frame {
  max-width: 280px;
  margin: 0 auto;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 28px;
  padding: 16px 12px 24px;
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.1);
}

.mobile-notch {
  width: 80px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin: 0 auto 16px;
}

.mobile-content {
  padding: 12px;
}

.mobile-content p {
  font-size: 0.88rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag-pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--accent);
  background: rgba(250, 204, 21, 0.06);
}

.info-aside p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.zigzag-caption {
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-frame-title {
  font-size: 1rem;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 48px 20px;
  }

  .layout-split,
  .steps-row,
  .mini-grid,
  .zigzag-block {
    grid-template-columns: 1fr;
  }

  .chat-bubble--reply {
    margin-left: 0;
  }

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

  .side-line {
    width: 100%;
    height: 4px;
    min-height: 4px;
  }

  .offer-card__logo-wrap {
    width: 280px;
    height: 68px;
    max-width: 100%;
  }

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