/* === WIZARD ANALYTICS LANDING STYLE === */

/* --- Общие стили --- */
body {
  font-family: "Inter", sans-serif;
  color: #1f1f2e;
  background: #f4f5fa;
  margin: 0;
  line-height: 1.6;
}

section {
  padding: 80px 10%;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

/* --- Навбар --- */
.wa-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.wa-header h1 {
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(90deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wa-header nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

.wa-header nav a:hover {
  color: #764ba2;
}

/* --- Кнопки --- */
.btn {
  display: inline-block;
  background: linear-gradient(90deg, #667eea, #764ba2);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
}
.btn:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

/* --- HERO --- */
.wa-hero {
  background: linear-gradient(180deg, #f8f5ff 0%, #ffffff 100%);
  padding: 100px 10%;
}
.wa-hero h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #2c2c54;
}
.wa-hero p {
  font-size: 18px;
  color: #444;
  margin-bottom: 24px;
}
.wa-hero .mockup {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.wa-hero .mockup img {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 0 auto;
}

/* --- GRID и карточки --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch;
  margin-top: 40px;
}

.card {
  background: #fff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* --- WHY / HOW / FEATURES и прочее --- */
.wa-pain, .wa-features, .wa-why, .wa-how, .wa-demo, .wa-pricing, .wa-cta, .wa-faq {
  background: #f4f5fa;
}
.wa-features, .wa-why {
  background: #ffffff;
}

/* --- CTA --- */
.wa-cta {
  background: linear-gradient(90deg, #667eea, #764ba2);
  color: #fff;
  padding: 100px 10%;
}
.wa-cta h2 { color: #fff; }
.wa-cta p { color: #f8f8f8; }
.wa-cta .btn {
  background: #fff;
  color: #764ba2;
}

/* --- FOOTER --- */
.wa-footer {
  background: #f0f0f4;
  color: #666;
  padding: 40px 10%;
  font-size: 14px;
}

/* --- Адаптивность --- */
@media (max-width: 768px) {
  .wa-hero h2 { font-size: 30px; }
  section { padding: 60px 6%; }
  .grid { gap: 20px; }
  .btn { padding: 12px 20px; }
}
