:root {
  --bg: radial-gradient(circle at 20% 20%, #f0f5ff, #eef2ff 45%, #e8ecff 75%, #ffffff 100%);
  --card: #ffffff;
  --text: #1c2431;
  --muted: #4b5563;
  --accent: #1f6feb;
  --border: #e5e7eb;
  --shadow: 0 12px 50px rgba(18, 38, 63, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.hero {
  text-align: center;
  padding: 56px 36px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.logo {
  width: 520px;
  max-width: 100%;
  display: block;
  margin: 0 auto 20px;
}

.company-title {
  font-size: 22px;
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.tagline {
  font-size: 18px;
  letter-spacing: 0.01em;
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 600;
}

h1 {
  font-size: clamp(32px, 5vw, 44px);
  margin: 0 0 16px;
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.actions.align-left {
  justify-content: flex-start;
}

.btn {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(31, 111, 235, 0.15);
}

.btn.primary {
  background: linear-gradient(135deg, #1f6feb, #2563eb);
  color: #ffffff;
}

.btn.ghost {
  background: #f8fafc;
  color: var(--text);
  border-color: var(--border);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.5;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3f6fb;
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.contact {
  margin-top: 28px;
}

.site-footer {
  max-width: 1100px;
  margin: 48px auto 32px;
  padding: 20px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  color: var(--text);
}

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

.nap-name {
  margin: 0 0 8px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.nap-address {
  margin: 0;
  font-style: normal;
  color: var(--muted);
  line-height: 1.6;
}

.nap-phone,
.nap-email {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.nap-phone:hover,
.nap-email:hover {
  text-decoration: underline;
}

.nap-meta {
  text-align: right;
  min-width: 220px;
}

.nap-service-area {
  margin: 0 0 8px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .hero {
    padding: 44px 24px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .nap-meta {
    text-align: left;
  }
}
