* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #111827;
  background: #f3f4f6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  max-width: 1100px;
  padding: 0 1.5rem;
  margin: 0 auto;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(243,244,246,0.9);
  border-bottom: 1px solid #e5e7eb;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}
.logo {
  font-weight: 700;
  letter-spacing: 0.05em;
}
.logo span {
  color: #2563eb;
}
.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}
.nav-links a {
  opacity: 0.8;
}
.nav-links a:hover {
  opacity: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(37,99,235,0.35);
}
.btn-outline {
  border: 1px solid #2563eb;
  color: #2563eb;
  background: transparent;
}
.btn-outline:hover {
  background: #2563eb;
  color: #ffffff;
}
.hero {
  padding: 3rem 0 3.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}
.kicker {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #2563eb;
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}
.hero h1 span {
  color: #2563eb;
}
.hero-sub {
  font-size: 0.98rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.badge {
  background: #e5e7eb;
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  color: #4b5563;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}
.hero-note {
  font-size: 0.8rem;
  color: #6b7280;
}
.hero-card {
  background: #111827;
  color: #f9fafb;
  border-radius: 1.5rem;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 20px 35px rgba(15,23,42,0.45);
}
.hero-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}
.hero-card-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(249,250,251,0.12);
}
.hero-card-row:last-child {
  border-bottom: none;
}
.tag {
  font-size: 0.75rem;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(249,250,251,0.2);
}
.section {
  padding: 2.5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: 1.8rem;
}
.section-header h2 {
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.section-header p {
  font-size: 0.95rem;
  color: #6b7280;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.step {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.2rem 1.15rem;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
  border: 1px solid #e5e7eb;
}
.step-num {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.step h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.step p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.4rem;
}
.muted {
  font-size: 0.8rem;
  color: #9ca3af;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.price-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.25rem 1.2rem;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
  border: 1px solid #e5e7eb;
}
.price-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.price-range {
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #2563eb;
}
.price-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.6rem;
}
.price-list {
  font-size: 0.85rem;
  color: #4b5563;
  list-style: none;
}
.price-list li {
  padding-left: 0.9rem;
  position: relative;
  margin-bottom: 0.3rem;
}
.price-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #9ca3af;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.faq-item {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1rem 1rem;
  border: 1px solid #e5e7eb;
}
.faq-item h3 {
  font-size: 0.98rem;
  margin-bottom: 0.25rem;
}
.faq-item p {
  font-size: 0.9rem;
  color: #4b5563;
}
.contact {
  background: #111827;
  color: #f9fafb;
  border-radius: 1.5rem;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 20px 35px rgba(15,23,42,0.5);
}
.contact h2 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.contact p {
  font-size: 0.92rem;
  color: #e5e7eb;
  margin-bottom: 0.7rem;
}
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.92rem;
}
.contact-row a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
footer {
  padding: 1.5rem 0 2rem;
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: center;
}
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .steps,
  .pricing-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  header {
    position: static;
  }
}
@media (max-width: 600px) {
  .nav-links {
    display: none;
  }
  .hero {
    padding-top: 2rem;
  }
  .hero-card {
    margin-top: 0.3rem;
  }
}
