:root {
  color-scheme: light;
  --bg: #f7faf8;
  --surface: #ffffff;
  --ink: #13231f;
  --muted: #5d6d68;
  --line: #dce5e0;
  --seed: #1b7a5a;
  --seed-dark: #0f4f3a;
  --blue: #0553fa;
  --pink: #f91880;
  --soft: #e8f4ee;
  --shadow: 0 24px 80px rgba(18, 35, 31, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(232, 244, 238, 0.7), rgba(247, 250, 248, 0) 420px),
    var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: rgba(248, 250, 248, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 18px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--seed), var(--blue));
  color: #ffffff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.nav a,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  margin: 0 auto;
  max-width: 1160px;
  min-height: calc(100vh - 72px);
  padding: 96px 40px 72px;
  place-items: center;
}

.hero-copy {
  width: 100%;
}

.eyebrow {
  color: var(--seed);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(56px, 9vw, 112px);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 10px;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.8;
  max-width: 700px;
}

.lead strong {
  color: var(--blue);
}

.hero-meta {
  color: var(--seed-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-meta span {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
  padding: 7px 10px;
}

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

.button {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  font-weight: 800;
  min-height: 48px;
  padding: 0 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--seed);
  border-color: var(--seed);
  color: #ffffff;
}

.button.secondary {
  background: var(--surface);
  color: var(--ink);
}

.hero-visual {
  display: grid;
  gap: 18px;
  justify-items: end;
  width: 100%;
}

.phone-frame {
  background: #111d1a;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  padding: 14px;
  width: min(100%, 390px);
}

.phone-status {
  align-items: center;
  display: flex;
  height: 28px;
  justify-content: space-between;
  padding: 0 6px 10px;
}

.phone-status span:first-child {
  background: rgba(255, 255, 255, 0.32);
  height: 6px;
  width: 54px;
}

.phone-status span:last-child {
  background: rgba(255, 255, 255, 0.32);
  height: 6px;
  width: 28px;
}

.map-scene {
  aspect-ratio: 0.78;
  background:
    radial-gradient(circle at 28% 28%, rgba(249, 24, 128, 0.18), transparent 26%),
    radial-gradient(circle at 70% 64%, rgba(5, 83, 250, 0.2), transparent 28%),
    linear-gradient(135deg, #e9f2ef, #f9fbfa);
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.grid-lines {
  background-image:
    linear-gradient(rgba(19, 35, 31, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 35, 31, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  inset: 0;
  position: absolute;
  transform: rotate(-8deg) scale(1.2);
}

.pin {
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(5, 83, 250, 0.28);
  height: 16px;
  position: absolute;
  width: 16px;
}

.pin::after {
  border: 1px solid currentColor;
  content: "";
  inset: -12px;
  opacity: 0.28;
  position: absolute;
}

.pin-a {
  color: var(--blue);
  left: 26%;
  top: 24%;
}

.pin-b {
  background: var(--pink);
  color: var(--pink);
  right: 22%;
  top: 47%;
}

.pin-c {
  color: var(--blue);
  left: 46%;
  bottom: 22%;
}

.note-card {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 229, 224, 0.9);
  bottom: 28px;
  box-shadow: 0 16px 48px rgba(18, 35, 31, 0.14);
  display: flex;
  gap: 14px;
  left: 24px;
  padding: 14px;
  position: absolute;
  right: 24px;
}

.note-card img {
  height: 46px;
  width: 46px;
}

.note-card strong,
.note-card p {
  margin: 0;
}

.note-card p {
  color: var(--muted);
  font-size: 14px;
}

.product-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 24px;
  width: min(100%, 390px);
}

.panel-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section {
  margin: 0 auto;
  max-width: 1160px;
  padding: 80px 40px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1160px;
}

.trust-strip div {
  background: rgba(255, 255, 255, 0.52);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 4px;
  padding: 24px 28px;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--ink);
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  margin-bottom: 32px;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px;
}

.card:first-child {
  border-top: 4px solid var(--seed);
}

.card:nth-child(2) {
  border-top: 4px solid var(--blue);
}

.card:nth-child(3) {
  border-top: 4px solid var(--pink);
}

.card p,
.product-section p,
.document p,
.document li {
  color: var(--muted);
}

.product-section {
  align-items: start;
  background: var(--soft);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  max-width: none;
  padding-left: max(40px, calc((100vw - 1080px) / 2));
  padding-right: max(40px, calc((100vw - 1080px) / 2));
}

.feature-list {
  background: var(--surface);
  border: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 24px;
}

.feature-list li {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.feature-list li:last-child {
  border-bottom: 0;
}

.info-list {
  background: var(--surface);
  border: 1px solid var(--line);
  margin: 0;
}

.info-list div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 180px minmax(0, 1fr);
  padding: 20px 24px;
}

.info-list div:last-child {
  border-bottom: 0;
}

.info-list dt {
  color: var(--muted);
  font-weight: 700;
}

.info-list dd {
  margin: 0;
}

.contact-section {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
}

.mail-card {
  background: var(--ink);
  color: #ffffff;
  display: grid;
  gap: 6px;
  padding: 28px;
  text-decoration: none;
}

.mail-card span {
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}

.document {
  margin: 0 auto;
  max-width: 820px;
  padding: 80px 40px;
}

.document h1 {
  font-size: clamp(38px, 6vw, 64px);
}

.document h2 {
  border-top: 1px solid var(--line);
  font-size: 24px;
  margin-top: 36px;
  padding-top: 28px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding: 28px 40px;
}

.site-footer div {
  display: flex;
  gap: 16px;
}

@media (max-width: 840px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 22px;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 22px 44px;
  }

  .section,
  .document {
    padding: 56px 22px;
  }

  .grid,
  .product-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-items: start;
  }

  .map-scene {
    min-height: 360px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-left: 22px;
    margin-right: 22px;
  }

  .trust-strip div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .product-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer {
    padding: 24px 22px;
  }
}
