:root {
  color-scheme: light;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background-color: #f8fafc;
}

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

body {
  min-height: 100vh;
  background: #f8fafc;
}

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

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

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

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a[aria-current="page"] {
  border-color: #0f172a;
  font-weight: 600;
}

.hero {
  padding: 72px 0 60px;
  background: linear-gradient(120deg, #e0f2fe 0%, #f8fafc 60%);
}

.hero.compact {
  padding: 60px 0 50px;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #2563eb;
}

h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
  margin: 12px 0 18px;
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.lead {
  font-size: 1.05rem;
  color: #1e293b;
  max-width: 560px;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  background: #0f172a;
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.button.ghost {
  background: transparent;
  color: #0f172a;
  border: 1px solid #cbd5f5;
  box-shadow: none;
}

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

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #1e293b;
}

.section {
  padding: 60px 0;
}

.section.light {
  background: #ffffff;
}

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

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

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

.timeline div {
  background: #f1f5f9;
  padding: 20px;
  border-radius: 14px;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #0f172a;
  color: white;
  font-weight: 600;
  margin-bottom: 12px;
}

.list {
  display: grid;
  gap: 20px;
  margin-top: 20px;
}

.steps {
  display: grid;
  gap: 24px;
}

.step {
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

.step-number {
  background: #2563eb;
  color: white;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 12px;
  min-width: 52px;
  text-align: center;
}

.highlight {
  background: #f1f5f9;
  padding: 32px;
  border-radius: 18px;
}

.highlight ul {
  margin-top: 16px;
  padding-left: 18px;
  color: #1e293b;
}

.contact-card {
  display: grid;
  gap: 24px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  background: white;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.site-footer {
  border-top: 1px solid #e2e8f0;
  padding: 32px 0 50px;
  background: #f8fafc;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.95rem;
  color: #334155;
}

.footer-content a {
  font-weight: 600;
  color: #0f172a;
}

@media (max-width: 720px) {
  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 50px;
  }

  .step {
    grid-template-columns: 1fr;
  }
}
