* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}

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

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-call-btn,
.btn {
  display: inline-block;
  background: #111827;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.dark-btn {
  background: #374151;
}

.hero,
.page-header,
.features,
.services,
.testimonials,
.contact-section,
.map-section,
.cta {
  padding: 64px 0;
}

.hero {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  color: #4b5563;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #312e81;
  font-size: 0.95rem;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 20px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.06);
}

.services-list {
  margin: 0;
  padding-left: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}

.contact-form {
  display: block;
}

.contact-form label {
  display: block;
  font-weight: 700;
  margin: 14px 0 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font: inherit;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .three-col,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    align-items: flex-start;
  }
}
