* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2933;
  background: #f7f8fa;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e4e7eb;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 6px 10px;
  border-radius: 20px;
  background: transparent;
  transition: background 0.2s ease;
}

.main-nav a:hover {
  background: #eef2f6;
}

.hero {
  padding: 70px 0 60px;
  background: #ffffff;
}

.hero.small {
  padding: 50px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 12px 0 16px;
}

.hero-text p {
  color: #44505c;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #5f6c7b;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f2933;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.ghost {
  background: transparent;
  border: 1px solid #1f2933;
  color: #1f2933;
}

.section {
  padding: 60px 0;
}

.section.muted {
  background: #eef2f6;
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.section-head p {
  color: #55606d;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: start;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.08);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  color: #4e5a66;
}

.checklist {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.checklist li {
  padding-left: 28px;
  position: relative;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1f2933;
}

.highlight {
  margin-top: 18px;
  padding: 18px;
  border-left: 3px solid #1f2933;
  background: #f1f4f8;
  border-radius: 10px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
  color: #4e5a66;
}

input,
textarea {
  border: 1px solid #d2d7dd;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
}

.narrow {
  width: min(720px, 92%);
}

.site-footer {
  background: #ffffff;
  border-top: 1px solid #e4e7eb;
  padding: 40px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  color: #4e5a66;
}

.footer-links {
  display: grid;
  gap: 8px;
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    gap: 10px;
  }

  .hero {
    padding: 50px 0;
  }
}
