:root {
  --slate-bg: #14171B;
  --slate-bg-2: #1B2026;
  --slate-bg-3: #21262D;
  --yellow: #FFC53D;
  --orange: #FF7A29;
  --teal: #1FA39A;
  --teal-bright: #2BB5AB;
  --ivory: #FFF3D6;
  --muted: #9aa0a6;
  --muted-2: #8a9096;
  --border: rgba(255, 243, 214, 0.08);
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #0c0e11;
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

h1, h2, h3, .wordmark-text {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0;
}

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(12, 14, 17, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wordmark img { width: 34px; height: 34px; display: block; }

.wordmark-text {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.01em;
  color: var(--ivory);
}

.wordmark-text .saas { color: var(--yellow); }

nav.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav.primary-nav a {
  color: #c7ccd1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

nav.primary-nav a:hover { color: var(--ivory); }

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--slate-bg);
}

.btn-primary:hover { background: #ffd35c; }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid var(--border);
}

.btn-ghost:hover { border-color: var(--muted); }

/* Hero */
.hero {
  padding-top: 96px;
  padding-bottom: 80px;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-content {
  flex: 1 1 560px;
  min-width: 0;
}

.hero-map {
  flex: 0 0 340px;
  width: 340px;
}

.hero-map svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-map-caption {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted-2);
}

/* Section dividers */
.divider {
  display: flex;
  justify-content: center;
  opacity: 0.6;
}

.divider svg { display: block; }

.hero .eyebrow {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-bright);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
}

.hero h1 .accent { color: var(--yellow); }

.hero p.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 0 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Sections */
section { padding-top: 72px; padding-bottom: 72px; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}

.section-head .eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--muted);
  font-size: 16px;
}

/* Services grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--slate-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
}

.service-card .icon-dot {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

/* Why local */
.why-local {
  background: var(--slate-bg);
  border-radius: 20px;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-local h2 {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 700;
  margin-bottom: 16px;
}

.why-local p {
  color: var(--muted);
  font-size: 16px;
}

.why-local ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-local li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  color: #d5d9dc;
}

.why-local li .bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  padding: 24px 20px;
  border-top: 2px solid var(--border);
}

.process-step .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 12px;
}

.process-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* Contact / CTA */
.contact {
  background: linear-gradient(135deg, var(--slate-bg-2), var(--slate-bg));
  border-radius: 20px;
  padding: 72px 48px;
  text-align: center;
}

.contact h2 {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 14px;
}

.contact p {
  color: var(--muted);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 32px;
}

.contact-email {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  padding-bottom: 32px;
}

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

.footer-inner .wordmark-text { font-size: 15px; }
.footer-inner .wordmark img { width: 22px; height: 22px; }

.footer-meta {
  color: var(--muted-2);
  font-size: 13px;
}

/* Mobile nav toggle */
.nav-toggle { display: none; }

@media (max-width: 780px) {
  nav.primary-nav { display: none; }
  .header-inner .btn-primary { display: none; }

  .grid-3 { grid-template-columns: 1fr; }
  .why-local { grid-template-columns: 1fr; padding: 40px 28px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .contact { padding: 48px 24px; }
  .hero { padding-top: 64px; padding-bottom: 56px; }
  .hero-grid { flex-direction: column; text-align: center; gap: 40px; }
  .hero h1 { text-align: center; }
  .hero p.lede { margin: 0 auto 36px; }
  .hero-ctas { justify-content: center; }
  .hero-map { width: 260px; flex: 0 0 auto; }
}
