:root {
  --bg: #f6f8f5;
  --surface: #ffffff;
  --surface-soft: #eef5ef;
  --ink: #14211a;
  --muted: #5d6d63;
  --line: #d9e4db;
  --brand: #16805d;
  --brand-dark: #0b4f3b;
  --accent: #f2b84b;
  --danger: #be4b4b;
  --shadow: 0 20px 50px rgba(20, 33, 26, 0.1);
  --radius: 8px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 248, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 10px;
  background: #eaf1ee;
  box-shadow: 0 10px 24px rgba(20, 33, 26, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-title {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand-subtitle {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-switcher summary {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  min-width: 170px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(20, 33, 26, 0.14);
}

.language-menu a {
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.15;
  white-space: nowrap;
}

.language-menu a[aria-current="true"] {
  background: var(--surface-soft);
  color: var(--brand-dark);
}

.nav-links a:hover {
  color: var(--brand-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(22, 128, 93, 0.22);
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  background: #fff;
  color: var(--brand-dark);
  border-color: var(--line);
}

.hero {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(26px, 3.8vw, 38px);
  line-height: 1.12;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.22;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.25;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.map-panel {
  position: absolute;
  inset: 36px 0 0 62px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(22, 128, 93, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(22, 128, 93, 0.1) 1px, transparent 1px),
    #ffffff;
  background-size: 42px 42px;
  box-shadow: var(--shadow);
}

.map-card {
  width: min(310px, 100%);
  margin-left: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 33, 26, 0.08);
}

.status-line {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.status-line:last-child {
  border-bottom: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
}

.dot.gold {
  background: var(--accent);
}

.phone {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(270px, 52vw);
  padding: 12px;
  border: 1px solid #20392d;
  border-radius: 34px;
  background: #101a15;
  box-shadow: 0 28px 70px rgba(20, 33, 26, 0.25);
}

.phone img {
  border-radius: 24px;
}

.section {
  padding: 78px 0;
}

.section.alt {
  background: var(--surface);
}

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(20, 33, 26, 0.05);
}

.card.soft {
  background: var(--surface-soft);
}

.card p:last-child {
  margin-bottom: 0;
}

.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(22, 128, 93, 0.12);
  color: var(--brand-dark);
  font-size: 22px;
}

.feature-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.feature-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.screenshot {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 33, 26, 0.08);
  overflow: hidden;
}

.screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-dark);
  font-size: 20px;
  line-height: 1;
}

.cta {
  padding: 52px;
  border-radius: 8px;
  background: var(--brand-dark);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cta p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 34px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  row-gap: 8px;
}

.feature-hero {
  padding: 58px 0 34px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.feature-list {
  display: grid;
  gap: 22px;
}

.feature-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
  gap: 72px;
}

.feature-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 33, 26, 0.07);
}

.feature-card img {
  order: 2;
  width: 100%;
  aspect-ratio: 9 / 13.2;
  object-fit: contain;
  background: #f6f8f5;
  border-top: 1px solid var(--line);
}

.feature-card-body {
  order: 1;
  padding: 18px 20px;
  background: var(--brand);
  color: #fff;
}

.feature-card-body h3 {
  color: #fff;
}

.feature-card-body .muted {
  color: rgba(255, 255, 255, 0.86);
}

.feature-card-body p:last-child {
  margin-bottom: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.feature-row img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.note {
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  background: var(--surface-soft);
  color: var(--muted);
}

.page-hero {
  padding: 64px 0 36px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.content-narrow {
  max-width: 860px;
}

.content-narrow h2 {
  margin-top: 36px;
  font-size: 20px;
}

.content-narrow h3 {
  margin-top: 26px;
}

.content-narrow ul {
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--muted);
}

.content-narrow li {
  margin-bottom: 8px;
}

.contact-link {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.info-table {
  display: grid;
  gap: 12px;
}

.info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.info-row strong {
  color: var(--ink);
}

.quote-panel {
  padding: 30px;
  border-radius: 8px;
  background: var(--brand-dark);
  color: #fff;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.legal-sidebar a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
}

.legal-sidebar a:hover {
  background: var(--surface-soft);
  color: var(--brand-dark);
}

.legal-content {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(20, 33, 26, 0.07);
}

.legal-content h2 {
  margin-top: 34px;
  font-size: 19px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-content ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
    overflow: visible;
    padding-bottom: 0;
  }

  .language-switcher[open] {
    z-index: 70;
  }

  .language-menu {
    z-index: 90;
  }

  .hero,
  .feature-strip,
  .cta,
  .cta-panel,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-gallery {
    grid-template-columns: 1fr;
  }

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

  .feature-row img {
    max-height: 420px;
    object-fit: contain;
    background: #f6f8f5;
  }

  .feature-card img {
    max-height: 640px;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 560px) {
  .language-menu {
    position: fixed;
    top: 112px;
    right: 16px;
    left: 16px;
    min-width: 0;
    max-height: calc(100vh - 128px);
    overflow-y: auto;
  }

  .hero-visual {
    min-height: 360px;
  }

  .map-panel {
    left: 26px;
    padding: 16px;
  }

  .phone {
    width: 210px;
  }

  .section {
    padding: 54px 0;
  }

  .cta {
    padding: 28px;
  }
}
