:root, html {
  color-scheme: light;
}

: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;
}


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

h1 {
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 8px;
  line-height: 1.2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.launch-notice {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--accent);
}

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


.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;
}


.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);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(18, 38, 63, 0.2);
}

.card h2 {
  margin: 0 0 12px;
  font-size: clamp(18px, 3vw, 22px);
}

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


.contact {
  margin-top: 28px;
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  color: var(--text);
  background: #f8fafc;
  transition: border-color 150ms ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--accent);
}

textarea {
  resize: vertical;
}

button.btn {
  cursor: pointer;
  font-family: inherit;
}

button.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.form-success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.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);
}

input[type="text"]:focus-visible,
input[type="email"]:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 1px;
}

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

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  overflow: visible;
  padding: 12px 16px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
