* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: #f6f7fb;
  color: #0f172a;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7f499d, #e72552);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
}

.brand-text span {
  display: block;
  font-size: 12px;
  color: #64748b;
}

.main-nav {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: #334155;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.btn {
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
}

.btn-primary {
  background: #e72552;
  color: white;
}

.btn-outline {
  border: 1px solid #cbd5f5;
  color: #4338ca;
  background: white;
}

.btn-current {
  background: #e2e8f0;
  color: #0f172a;
  border: 1px solid #94a3b8;
  cursor: default;
}

.hero {
  padding: 80px 0 60px;
  background: linear-gradient(120deg, #fef2f2, #eef2ff);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.pill {
  display: inline-block;
  background: #e0e7ff;
  color: #3730a3;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.hero p {
  color: #475569;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.hero-stats strong {
  display: block;
  font-size: 18px;
}

.hero-stats span {
  color: #64748b;
  font-size: 12px;
}

.hero-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.hero-card ul {
  margin: 16px 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.hero-card li::before {
  content: "✔";
  margin-right: 8px;
  color: #16a34a;
}

.card-note {
  background: #f1f5f9;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: white;
}

.section-head {
  margin-bottom: 32px;
}

.section-head p {
  color: #64748b;
}

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

.card {
  background: white;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}

.biz-list {
  margin: 12px 0 16px;
  padding-left: 18px;
  color: #475569;
  display: grid;
  gap: 6px;
}

.tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #9333ea;
}

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

.price-card {
  background: white;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  position: relative;
}

.price-card.featured {
  border: 2px solid #e72552;
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: #e72552;
  color: white;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
}

.price {
  font-size: 30px;
  font-weight: 800;
  margin: 14px 0;
}

.price span {
  font-size: 14px;
  color: #64748b;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.coverage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  align-items: center;
}

.coverage-box {
  background: white;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}

.inline-form {
  display: flex;
  gap: 10px;
  margin: 14px 0;
}

.inline-form input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
}

.muted {
  color: #64748b;
  font-size: 13px;
}

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

.checklist {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.checklist li::before {
  content: "•";
  margin-right: 8px;
  color: #e72552;
}

.about-card {
  background: #eef2ff;
  padding: 24px;
  border-radius: 14px;
}

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

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-info strong {
  display: block;
  font-size: 13px;
  color: #64748b;
}

.contact-form {
  background: white;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  display: grid;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  background: #0f172a;
  color: white;
  padding: 40px 0 20px;
}

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

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}
