.hero {
  display: flex;
  min-height: 420px;
  margin: 32px 16px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}

.hero-stripe {
  width: 80px;
  flex-shrink: 0;
  background: var(--accent);
}

.hero-content {
  flex: 1;
  padding: 48px 48px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-content h1 .pitch-accent {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-metrics {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.hero-metric {
  text-align: left;
}

.hero-metric .growth-metric {
  font-size: 1.75rem;
  display: block;
}

.hero-metric span:last-child {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.offers-section {
  position: relative;
  padding: 64px 24px;
  margin-top: 48px;
}

.offers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

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

.offers-header {
  text-align: center;
  margin-bottom: 40px;
}

.offers-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.offers-header p {
  color: var(--muted);
  font-size: 0.9375rem;
}

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

.offer-card {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.offer-logo {
  width: 120px;
  height: 60px;
  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 {
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.offer-bonus {
  color: #ffd700;
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 4px;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  line-height: 1.35;
}

.offer-terms {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 2px;
}

.offer-desc {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 12px 0 16px;
  text-align: left;
}

.offer-cta {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, #e94560, #c23152);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  margin-top: auto;
  transition: opacity 0.2s;
}

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

.info-sections {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.info-block {
  margin-bottom: 64px;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
}

.info-block::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.info-block h2 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.info-block p {
  color: var(--text);
  margin-bottom: 14px;
  font-size: 0.9375rem;
}

.info-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s;
}

.info-cta:hover {
  background: rgba(212, 175, 55, 0.25);
  opacity: 1;
}

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

.info-1-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

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

.info-1-card p {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0;
}

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

.info-2-split img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.info-3-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
  list-style: none;
}

.info-3-list li {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-3-list li::before {
  content: "◆";
  color: var(--primary);
  font-size: 0.625rem;
}

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

.info-4-steps li {
  counter-increment: step;
  padding: 16px 16px 16px 56px;
  position: relative;
  margin-bottom: 12px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}

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

.info-5-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.info-5-box {
  background: var(--bg);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 10px 10px;
  padding: 20px;
}

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

.info-5-box p {
  font-size: 0.8125rem;
  margin: 0;
}

.info-6-stats {
  display: flex;
  gap: 24px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.info-6-stat {
  flex: 1;
  min-width: 140px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.info-6-stat .growth-metric {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 4px;
}

.info-6-stat span:last-child {
  font-size: 0.75rem;
  color: var(--muted);
}

.info-7-checklist {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.info-7-checklist li {
  padding: 12px 12px 12px 36px;
  position: relative;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.info-7-checklist li::before {
  content: "✓";
  position: absolute;
  left: 8px;
  color: var(--primary);
  font-weight: 700;
}

.info-8-quote {
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  margin: 20px 0;
  background: rgba(128, 0, 0, 0.2);
  font-style: italic;
  color: var(--text);
}

.info-9-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  font-size: 0.875rem;
}

.info-9-table th,
.info-9-table td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
}

.info-9-table th {
  background: var(--bg);
  color: var(--primary);
  font-weight: 600;
}

.info-9-table td {
  background: rgba(26, 0, 0, 0.5);
}

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

.info-10-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

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

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

.info-10-item h3 {
  color: var(--primary);
  font-size: 0.9375rem;
  margin-bottom: 6px;
}

.info-10-item p {
  font-size: 0.8125rem;
  margin: 0;
}

.decor-inline {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  margin: 16px 0;
  border: 1px solid var(--border);
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
}

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

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .hero {
    flex-direction: column;
    margin: 0;
    border-radius: 0;
  }

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

  .hero-content {
    padding: 32px 24px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .hero-metrics {
    justify-content: center;
    flex-wrap: wrap;
  }

  .info-1-grid,
  .info-3-list,
  .info-5-boxes {
    grid-template-columns: 1fr;
  }

  .info-2-split {
    grid-template-columns: 1fr;
  }

  .info-block {
    padding: 24px 20px;
  }

  .decor-inline {
    max-width: 100%;
    max-height: 240px;
    width: 100%;
    height: auto;
  }
}

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

  .decor-wrap {
    margin: 0 -4px;
  }

  .decor-inline {
    max-height: 200px;
  }
}

.contact-form.hidden {
  display: none;
}
