:root {
  --bg: #f9fafb;
  --fg: #101828;
  --muted: #475467;
  --line: #e4e7ec;
  --primary: #0f62fe;
  --primary-dark: #0842aa;
  --accent: #fee4cb;
  --card: #ffffff;
  --muted-bg: #f4f6fb;
  font-size: 16px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
}

a {
  color: var(--fg);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  backdrop-filter: blur(12px);
  background: rgba(249, 250, 251, 0.9);
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--fg);
}

.nav__logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--fg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.nav__links a {
  color: var(--muted);
}

.nav__links .is-active,
.nav__links a:hover {
  color: var(--fg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn--primary:hover {
  background: var(--primary-dark);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--fg);
  background: #fff;
}

main {
  padding-bottom: 4rem;
}

.hero {
  padding: 4rem 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}

.hero__stats {
  list-style: none;
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.hero__stats strong {
  font-size: 1.75rem;
  display: block;
}

.hero__panel {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(15, 98, 254, 0.08);
}

.section {
  padding: 4rem 0;
}

.section--muted {
  background: var(--muted-bg);
}

.section--cta {
  background: linear-gradient(135deg, #0f62fe, #7839ee);
  color: #fff;
}

.section__head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section__note {
  margin-top: 1.5rem;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.biz-card {
  background: var(--card);
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid var(--line);
  box-shadow: 0 12px 25px rgba(16, 24, 40, 0.05);
}

.biz-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-flex;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.rating {
  font-weight: 600;
  color: #f59e0b;
}

.tag-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.tag-list li {
  background: var(--muted-bg);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.85rem;
}

.biz-card__details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.biz-card__details dt {
  font-size: 0.85rem;
  color: var(--muted);
}

.biz-card__details dd {
  margin: 0.1rem 0 0;
  font-weight: 600;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

.list {
  padding-left: 1rem;
  margin: 0;
}

.list--check,
.list--bullet {
  list-style: none;
  padding-left: 0;
}

.list--check li,
.list--bullet li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.6rem;
}

.list--check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.list--bullet li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.panel {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  border: 1px solid var(--line);
}

.tips-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.tip,
.timeline article {
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--line);
}

.timeline--wide {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.hero--sub {
  padding: 3rem 0 2rem;
}

.narrow {
  max-width: 760px;
  text-align: center;
}

.section--cta .cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #fff;
}

.section--cta .btn {
  background: #fff;
  color: var(--primary);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font: inherit;
  background: #fff;
}

.lead-form button {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.site-footer {
  padding: 2rem 0;
  background: #0f172a;
  color: #e2e8f0;
}

.site-footer a {
  color: #e2e8f0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal {
  text-align: center;
  font-size: 0.9rem;
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .section--cta .cta {
    flex-direction: column;
    text-align: center;
  }
}
