* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: #f8fafc;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: #334155;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  margin: 0 0 0.35em;
  color: #0f172a;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
}

.tagline {
  color: #64748b;
  font-size: 0.9rem;
}

nav {
  display: flex;
  gap: 16px;
  align-items: center;
}

nav a {
  padding: 8px 10px;
  border-radius: 8px;
  color: #0f172a;
}

nav a.active {
  background: #e2e8f0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  border: 1px solid #1d4ed8;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.button:hover {
  background: #1d4ed8;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
  transform: translateY(-1px);
}

.button.ghost {
  background: #fff;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}

.button.full {
  width: 100%;
}

.hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #e0e7ff, #f8fafc);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  align-items: center;
}

.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  font-size: 0.85rem;
  margin: 0 0 8px;
}

.lede {
  margin: 0 0 16px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.stats strong {
  display: block;
  font-size: 1.2rem;
}

.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.highlight {
  border-color: #cbd5e1;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
}

.checklist li {
  padding: 6px 0;
  position: relative;
  padding-left: 22px;
}

.checklist li::before {
  content: "•";
  color: #2563eb;
  position: absolute;
  left: 0;
}

.section {
  padding: 60px 0;
}

.accent {
  background: #eef2ff;
}

.section-header {
  text-align: center;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.center {
  text-align: center;
  margin-top: 12px;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  align-items: center;
}

.form label {
  display: block;
  font-weight: 600;
  margin: 10px 0 6px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  background: #fff;
  font-size: 1rem;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid #93c5fd;
  border-color: #93c5fd;
}

.form textarea {
  resize: vertical;
}

.form-hint {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 0.9rem;
}

.service ul {
  margin: 0;
  padding-left: 16px;
  color: #475569;
}

.bullet li {
  margin: 6px 0;
}

.steps {
  margin: 8px 0 18px;
  color: #334155;
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-footer h4 {
  color: #fff;
}

.site-footer a {
  color: #e2e8f0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin: 8px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 20px;
  font-size: 0.95rem;
}

.muted {
  color: #cbd5e1;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

