:root {
  color-scheme: light;
  --text: #152535;
  --muted: #5a7186;
  --accent: #0a7a96;
  --accent-bright: #2eb8d4;
  --border: rgba(13, 110, 138, 0.12);
  --radius: 20px;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: #1a3040;
  line-height: 1.45;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
}

.hero-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: url("/img/hero-bg.jpg") center / cover no-repeat;
}

.hero-bg__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-bg__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(21, 37, 53, 0.14);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg__video {
    display: none;
  }
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.card {
  width: 100%;
  max-width: 440px;
  padding: 24px 26px 20px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(15, 45, 70, 0.14);
}

.logo {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.logo span {
  color: var(--accent-bright);
}

.intro {
  margin: 0 0 18px;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--muted);
}

.section-label {
  margin: 0 0 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 14px;
  margin: 0 0 18px;
  padding: 12px 14px;
  list-style: none;
  text-align: left;
  background: #f6fafc;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.features li {
  position: relative;
  padding-left: 12px;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
}

.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-bright);
}

.phone-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 10px;
  padding: 13px 16px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(10, 122, 150, 0.3);
}

.phone-cta:hover {
  text-decoration: none;
  filter: brightness(1.05);
}

.phone-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.map-link {
  display: block;
  margin-bottom: 14px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.map-link:hover {
  color: var(--accent-bright);
}

.copy {
  margin: 0;
  font-size: 0.7rem;
  color: var(--muted);
}

a {
  color: var(--accent);
}

@media (max-width: 380px) {
  .features {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .card {
    padding: 20px 18px 18px;
  }
}
