:root {
  --bg1: #7b2eff;
  --bg2: #6a4bff;
  --accent: #ff69e6;
  --card-bg: #ffffff;
  --muted: #6b6b75;
  --radius: 18px;
  --shadow: 0 8px 30px rgba(78, 42, 121, 0.12);
  --glass: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', system-ui, Arial;
}
* { box-sizing: border-box; }
body { margin: 0; background: #f7f7fb; color: #0b0b10; -webkit-font-smoothing: antialiased; }

.hero {
  background: linear-gradient(135deg, var(--bg1), var(--bg2));
  color: white;
  padding: 48px 24px 80px;
  position: relative;
  overflow: hidden;
}
.container { max-width: 1100px; margin: 0 auto; }
.topline { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 700; letter-spacing: 0.4px; }
.requests-badge {
  background: rgba(255,255,255,0.12);
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
}
.hero-left { position: relative; }
.portrait {
  width: 320px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  padding: 12px;
}
.speech {
  position: absolute;
  left: 40px;
  top: 28px;
  background: var(--card-bg);
  color: #111;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  font-weight: 600;
  white-space: nowrap;
}
.hero-title { font-size: 30px; font-weight: 800; margin: 0 0 18px; }
.hero-features { display: flex; gap: 22px; color: rgba(255,255,255,0.95); }
.feature { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.feature b { font-weight: 700; }

.panel {
  background: var(--glass);
  margin: -40px auto 24px;
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  max-width: 1100px;
}
.panel-title { text-align: center; font-weight: 700; margin-bottom: 18px; }
.deals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.deal {
  background: var(--card-bg);
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(36,28,60,0.06);
  text-align: center;
  position: relative;
}
.brand-logo-placeholder {
  height: 42px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #777;
}
.limit { font-weight: 700; margin: 6px 0; }
.meta { color: var(--muted); font-size: 13px; }

.btn {
  display: inline-block;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 12px;
  background: linear-gradient(180deg, #a64bff, #7b2eff);
  color: white;
  font-weight: 700;
  transition: transform 220ms ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  max-width: 180px;
  margin: 14px auto 0;
}
.btn:hover { transform: translateY(-4px); }

.card-tag {
  position: absolute;
  right: 16px;
  top: -8px;
  background: linear-gradient(45deg, #7b2eff, #ff69e6);
  padding: 6px 10px;
  border-radius: 10px;
  color: white;
  font-weight: 700;
}
.counter {
  position: absolute;
  right: 22px;
  top: 18px;
  color: white;
  font-weight: 700;
}
.counter .num {
  background: rgba(255,255,255,0.12);
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
.modal {
  background: white;
  padding: 24px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(78,42,121,0.12);
  max-width: 320px;
  width: 90%;
  text-align: center;
  animation: pop 0.3s ease;
}
@keyframes pop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.modal button {
  margin-top: 16px;
  background: linear-gradient(180deg, #a64bff, #7b2eff);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  font-family: inherit;
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .portrait { width: 260px; }
  .deals { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hero { padding: 28px 18px 40px; }
  .hero-title { font-size: 22px; }
  .deals { grid-template-columns: 1fr; }
  .portrait { width: 220px; }
  .speech { left: 20px; top: 12px; font-size: 13px; }
  .panel { margin: 0 12px 18px; }
}
/* Стиль для промокода в модальном окне */
.promo-code {
  background: linear-gradient(90deg, #a64bff, #7b2eff);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  margin: 8px 0;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}