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

body {
  font-family: 'Inter', sans-serif;
  color: #0b0b0b;
  background: #ffffff;
  line-height: 1.6;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  font-weight: 700;
  font-size: 22px;
}

.nav a {
  margin-left: 24px;
  font-weight: 500;
  font-size: 14px;
}

.hero {
  padding: 96px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  color: #444;
  max-width: 520px;
}

.hero-buttons {
  margin-top: 32px;
}

.btn-primary {
  background: #f38020;
  color: #fff;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: 600;
  margin-right: 12px;
}

.btn-secondary {
  padding: 14px 22px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-weight: 500;
}

.hero-visual .visual-card {
  width: 320px;
  height: 320px;
  border-radius: 12px;
  background-image: url("images/hero.png");
  background-size: cover;
  background-position: center;
}

.section {
  padding: 96px 0;
}

.section.light {
  background: #fafafa;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

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

.card {
  padding: 24px;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  background: #fff;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.card p {
  color: #555;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

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

.stats strong {
  font-size: 32px;
}

.stats span {
  color: #555;
}

.narrow {
  max-width: 640px;
}

.locations {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.locations span {
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 14px;
}

.footer {
  background: #0b0b0b;
  color: #eee;
  padding: 64px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer h4 {
  margin-bottom: 16px;
}

.footer a {
  display: block;
  font-size: 14px;
  color: #bbb;
  margin-bottom: 8px;
}