
:root {
  --ink: #0d172b;
  --muted: #657086;
  --line: #dfe5ef;
  --soft: #f4f7fb;
  --brand: #0f9f61;
  --brand-dark: #087548;
  --blue: #1468c4;
  --white: #ffffff;
  --dark: #08111f;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(223,229,239,.9);
}
.nav {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
}
.brand-mark { font-size: 1.45rem; }
.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  color: #465166;
  font-size: .95rem;
}
.nav-links a:hover { color: var(--ink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-weight: 750;
  box-shadow: 0 10px 25px rgba(13,23,43,.14);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(13,23,43,.20); }
.button-small { min-height: 42px; padding: 0 18px; font-size: .92rem; }
.button-light { background: white; color: var(--ink); }
.text-link { font-weight: 700; color: var(--blue); }

.hero {
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 85% 20%, rgba(20,104,196,.10), transparent 28%),
    radial-gradient(circle at 15% 15%, rgba(15,159,97,.08), transparent 25%);
}
.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.38fr;
  align-items: center;
  gap: 54px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-weight: 850;
  letter-spacing: .11em;
  font-size: .76rem;
}
h1, h2, h3 { line-height: 1.1; margin: 0; letter-spacing: -.03em; }
h1 { font-size: clamp(3rem, 6vw, 5.8rem); max-width: 720px; }
h1 span { color: var(--brand); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: 1.55rem; }
.hero-text {
  margin: 28px 0;
  font-size: 1.16rem;
  color: var(--muted);
  max-width: 650px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
  color: #5d687c;
  font-size: .9rem;
}

.browser-frame {
  border: 1px solid #d8e0eb;
  border-radius: 18px;
  overflow: hidden;
  background: white;
  box-shadow: 0 24px 60px rgba(20,35,65,.14);
}
.browser-bar {
  height: 30px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 13px;
  background: #eef2f7;
  border-bottom: 1px solid #dfe5ef;
}
.browser-bar span {
  width: 8px; height: 8px; border-radius: 50%; background: #aab4c2;
}
.browser-frame img { width: 100%; height: auto; }
.featured-shot { transform: rotate(.35deg); }

.section { padding: 96px 0; }
.section-soft { background: var(--soft); }
.section-heading { max-width: 790px; margin-bottom: 48px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; margin: 18px 0 0; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 60px;
}
.feature-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.feature-card p { color: var(--muted); margin: 14px 0 0; }
.feature-number {
  display: inline-flex;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  background: #e9f7f0;
  color: var(--brand);
  font-weight: 850;
  margin-bottom: 22px;
}

.split-showcase, .two-column, .map-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 52px;
  align-items: center;
}
.showcase-copy p, .copy-block p, .map-copy p { color: var(--muted); }
.clean-list { padding-left: 20px; color: #455166; }
.clean-list li { margin: 8px 0; }
.wide-shot { margin-top: 12px; }
.two-column { margin-top: 72px; grid-template-columns: .7fr 1.3fr; }

.section-dark {
  background: var(--dark);
  color: white;
}
.section-heading-light p:last-child { color: #aeb9ca; }
.dark-frame { border-color: #263449; box-shadow: 0 28px 70px rgba(0,0,0,.32); }

.map-grid { grid-template-columns: .62fr 1.38fr; }
.map-copy p { font-size: 1.05rem; }

.philosophy {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.philosophy-points {
  display: grid;
  gap: 18px;
  color: var(--muted);
}
.philosophy-points p { margin: 0; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.philosophy-points strong { color: var(--ink); }

.cta {
  padding: 72px 0;
  background: linear-gradient(135deg, #087548, #0f9f61);
  color: white;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta .eyebrow { color: #baf0d6; }
.cta p:not(.eyebrow) { color: #d8f5e7; }

footer { padding: 52px 0; background: #060d18; color: white; }
.footer-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; }
.footer-brand { margin-bottom: 10px; }
footer p { color: #9da9ba; }
.footer-note { font-size: .9rem; }
.copyright { margin-top: 20px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { padding-top: 64px; }
  .hero-grid, .split-showcase, .two-column, .map-grid, .philosophy, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 42px; }
  .feature-grid { grid-template-columns: 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 24px, var(--max)); }
  .nav { height: 64px; gap: 12px; }
  .brand { font-size: 1rem; }
  .button-small { padding: 0 12px; font-size: .8rem; }
  .hero { padding: 52px 0 48px; }
  .hero-text { font-size: 1rem; }
  .section { padding: 68px 0; }
  .browser-frame { border-radius: 12px; }
  .trust-row { flex-direction: column; gap: 7px; }
}
