:root {
  color-scheme: light;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  color: #0f172a;
  background: #f8fbff;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(circle at top left, rgba(56, 139, 253, 0.12), transparent 24%), linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

body, button, input, textarea, select {
  font-family: inherit;
}

a {
  text-decoration: none;
}

.section-label {
  display: inline-flex;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2563eb;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-card {
  min-height: 440px;
  position: relative;
  overflow: hidden;
}

.hero-card-header {
  width: 76px;
  height: 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.18);
}

.info-block {
  min-height: 160px;
  border-radius: 28px;
  background: linear-gradient(135deg, #eef5ff, #ffffff);
}

.feature-card,
.why-card,
.testimonial-card,
.pricing-card,
.contact-card,
.legal-card {
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #ffffff;
}

.feature-card,
.why-card,
.testimonial-card,
.contact-card,
.legal-card {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
}

.feature-icon,
.why-icon,
.plan-icon,
.contact-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
  font-size: 1.2rem;
}

.feature-card h3,
.why-card h3,
.pricing-card h3,
.contact-card h3,
.legal-card h3 {
  margin-bottom: 1rem;
}

.btn-primary {
  background: #2563eb;
  border-color: #2563eb;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.badge-primary {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}

.pricing-card.active {
  border-color: #2563eb;
}

.pricing-card.active .plan-badge {
  display: inline-flex;
}

.plan-badge {
  display: none;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.faq-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
}

.faq-card button {
  font-weight: 600;
}

footer {
  background: transparent;
}

footer a {
  color: #475569;
}

footer a:hover {
  color: #2563eb;
}

@media (max-width: 768px) {
  .hero-card {
    min-height: 340px;
  }
}
