/* ===== BASE ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f6f9ff;
  color: #111;
}

/* ===== HEADER ===== */

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: white;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== BUTTONS ===== */

.btn-main {
  background: #4f46e5;
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}

.btn-outline {
  border: 2px solid #4f46e5;
  color: #4f46e5;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  text-align: center;
}

/* ===== HERO ===== */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
}

.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-image img {
  max-width: 420px;
  border-radius: 20px;
}

/* ===== SECTIONS ===== */

.section {
  padding: 80px 60px;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 40px;
  text-align: center;
}

.alt {
  background: #eef3ff;
}

/* ===== GRID ===== */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* ===== CARDS ===== */

.card {
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* ===== PRICING ===== */

.price-card {
  background: white;
  padding: 40px 28px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.price-card.featured {
  border: 2px solid #4f46e5;
}

.price {
  font-size: 42px;
  font-weight: 800;
  margin: 18px 0;
}

.price-list {
  list-style: none;
  margin-top: 18px;
}

.price-list li {
  margin: 10px 0;
  font-size: 15px;
  opacity: 0.85;
}

/* ===================================================== */
/* ============ PRICING BUTTONS (3 COLORS) ============== */
/* ===================================================== */

.btn-plan {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: 0.25s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

/* Жёлтая */
.btn-yellow {
  background: #facc15;
  color: #111;
}

.btn-yellow:hover {
  background: #fde047;
  transform: translateY(-3px);
}

/* Сиреневая */
.btn-purple {
  background: #4f46e5;
  color: white;
}

.btn-purple:hover {
  background: #6d63ff;
  transform: translateY(-3px);
}

/* Зелёная */
.btn-green {
  background: #16a34a;
  color: white;
}

.btn-green:hover {
  background: #22c55e;
  transform: translateY(-3px);
}

/* ===== PLATFORMS ===== */

#platforms {
  text-align: center;
}

#platforms .platform-subtitle {
  color: #666;
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px auto;
}

.platform-grid {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.platform-card {
  width: 95px;
  height: 95px;
  border-radius: 20px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: 0.2s;
}

.platform-card:hover {
  transform: translateY(-4px);
}

.platform-img {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

/* ===== FAQ ===== */

.faq details {
  background: white;
  margin: 10px auto;
  padding: 15px 20px;
  border-radius: 14px;
  max-width: 700px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* ===== FOOTER ===== */

.footer {
  text-align: center;
  padding: 25px;
  background: #111;
  color: white;
  margin-top: 40px;
}

/* ========================================================= */
/* ===================== PAY PAGE ========================== */
/* ========================================================= */

.pay-box {
  max-width: 900px;
  margin: 40px auto;
  padding: 35px;
  background: #fff;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.pay-qr {
  width: 260px;
  height: 260px;
  object-fit: contain;
  margin: 20px auto;
  display: block;
}

#bank-link {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 35px;
  padding: 14px 22px;
  font-size: 15px;
  max-width: 95%;
  white-space: normal;
}

/* После оплаты */
.after-pay {
  margin-bottom: 35px;
  padding: 22px;
  border-radius: 18px;
  background: #f3f4ff;
}

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

.messenger-card {
  background: white;
  padding: 25px 20px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.pay-qr.small {
  width: 200px;
  height: 200px;
  margin: 0 auto 18px;
}

/* ===================================================== */
/* ================= MOBILE RESPONSIVE ================== */
/* ===================================================== */

@media (max-width: 900px) {

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .header {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 700px) {

  .section {
    padding: 60px 20px;
  }

  .platform-card {
    width: 80px;
    height: 80px;
  }

  .platform-img {
    width: 48px;
    height: 48px;
  }

  #bank-link {
    width: 100%;
    font-size: 14px;
    padding: 14px 10px;
  }

  .messenger-grid {
    grid-template-columns: 1fr;
  }

  .pay-qr.small {
    width: 220px;
    height: 220px;
  }
}
.plan-desc{
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  text-align: center;
  opacity: 0.95;
}
/* ===== Supported Apps Block ===== */

.apps-text{
  max-width: 800px;
  margin: 0 auto 25px auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.apps-badges{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.app-badge{
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid #22c55e;
  color: #16a34a;
  font-weight: 700;
  font-size: 14px;
  background: #f0fdf4;
  box-shadow: 0 4px 12px rgba(34,197,94,0.15);
}

.apps-note{
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 15px;
  opacity: 0.9;
}
.app-badge{
  transition: 0.2s ease;
}

.app-badge:hover{
  background:#e0f2ff;
  border-color:#38bdf8;
  color:#0284c7;
  transform: translateY(-2px);
}
/* Новый шрифт */
body {
  font-family: 'Inter', sans-serif;
}

/* Текст под заголовком */
.pricing-info {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  opacity: 0.85;
}

/* Улучшенные кнопки */
.btn-plan {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
}

/* Hover эффект */
.btn-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Дополнительное свечение */
.btn-green:hover {
  box-shadow: 0 12px 25px rgba(37,211,102,0.4);
}

.btn-purple:hover {
  box-shadow: 0 12px 25px rgba(108,99,255,0.4);
}
