
:root{
  --bg: #eef2f7;
  --card: #ffffff;
  --text: #1f2a37;
  --muted: #6b7280;
  --muted2:#94a3b8;
  --line: rgba(31,42,55,.10);
  --shadow: 0 18px 50px rgba(16,24,40,.08);
  --shadow2: 0 10px 30px rgba(16,24,40,.10);
  --radius: 18px;
  --radius2: 14px;

  --primary: #2f7d62;
  --primary2:#2b6f57;
  --primaryText:#ffffff;

  --chip:#eef2f7;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 500px at 15% 10%, #f7fafc 0%, var(--bg) 55%, #eef2f7 100%);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.page{
  max-width: 1180px;
  margin: 22px auto 36px;
  background: var(--card);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.6);
}

.container{
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 26px;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31,42,55,.06);
}
.topbar__inner{
  height: 66px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 220px;
}
.brand__mark{ width: 34px; height:auto; }
.brand__type{ height: 75px; width:auto; }

.nav{
  display:flex;
  align-items:center;
  gap: 24px;
}
.nav__link{
  font-size: 14px;
  color: rgba(31,42,55,.75);
}
.nav__link:hover{ color: rgba(31,42,55,.95); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid rgba(31,42,55,.10);
  cursor:pointer;
  transition: transform .04s ease, box-shadow .2s ease, background .2s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn--small{ padding: 10px 14px; border-radius: 10px; }
.btn--wide{ width: 100%; padding: 13px 16px; border-radius: 12px; }

.btn--primary{
  background: linear-gradient(180deg, #2f7d62 0%, #2b6f57 100%);
  color: var(--primaryText);
  border-color: rgba(0,0,0,.06);
  box-shadow: 0 10px 22px rgba(47,125,98,.18);
}
.btn--primary:hover{ box-shadow: 0 14px 30px rgba(47,125,98,.22); }

.btn--ghost{
  background: #f2f5f9;
  border-color: rgba(31,42,55,.10);
  color: rgba(31,42,55,.80);
}
.btn--ghost:hover{ background: #eef2f7; }

.textlink{
  color:#2a73d6;
  font-weight: 600;
}

/* Hero */
.hero{
  position: relative;
  padding: 42px 0 30px;
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 380px at 25% 10%, rgba(255,255,255,1) 0%, rgba(238,242,247,1) 60%, rgba(238,242,247,0) 100%),
    radial-gradient(900px 420px at 70% 50%, rgba(221,234,247,.75) 0%, rgba(221,234,247,0) 70%),
    linear-gradient(180deg, rgba(255,255,255,.9), rgba(238,242,247,.3));
  pointer-events:none;
  z-index:0;
}
.hero__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items:center;
}

.hero h1{
  margin: 0 0 12px;
  font-size: 46px;
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.lead{
  margin: 0 0 18px;
  color: rgba(31,42,55,.72);
  max-width: 520px;
  font-size: 16px;
  line-height: 1.6;
}
.hero__actions{
  display:flex;
  gap: 12px;
  margin: 18px 0 12px;
}
.hero__meta{
  margin: 0;
  font-size: 12px;
  color: rgba(31,42,55,.55);
}

.appframe{
  border-radius: 14px;
  overflow:hidden;
  box-shadow: var(--shadow2);
  border: 1px solid rgba(31,42,55,.12);
  background:#0b1220;
}
.appframe img{ width:100%; height:auto; }

/* Trust */
.trust{
  padding: 22px 0 22px;
  background: linear-gradient(180deg, rgba(238,242,247,.35), rgba(255,255,255,0));
}
.section-title{
  margin: 10px 0 18px;
  text-align:center;
  font-size: 18px;
  color: rgba(31,42,55,.84);
  font-weight: 700;
}
.trust__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trustcard{
  background: #ffffff;
  border: 1px solid rgba(31,42,55,.08);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 25px rgba(16,24,40,.06);
}
.trustcard h3{
  margin: 10px 0 6px;
  font-size: 16px;
}
.trustcard p{
  margin: 0;
  color: rgba(31,42,55,.65);
  font-size: 13px;
  line-height: 1.45;
}
.trustcard__icon{
  width: 64px; height: 64px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  margin: 2px auto 0;
  border: 1px solid rgba(31,42,55,.06);
  box-shadow: 0 10px 20px rgba(16,24,40,.06);
}
.trustcard__icon img{ width: 44px; height:auto; }
.trustcard__icon--yellow{ background: radial-gradient(circle at 30% 20%, #fff6d5, #f7e9b6); }
.trustcard__icon--green{ background: radial-gradient(circle at 30% 20%, #daf3e7, #ccebdd); }
.trustcard__icon--blue{ background: radial-gradient(circle at 30% 20%, #dcedff, #cfe2ff); }

/* Services */
.services{
  padding: 14px 0 24px;
}
.services__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 26px;
  align-items:start;
}
.kicker{
  margin: 0 0 8px;
  font-weight: 700;
  color: rgba(31,42,55,.78);
}
.services h2{
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.muted{
  margin: 0 0 16px;
  color: rgba(31,42,55,.62);
  line-height: 1.55;
}
.servicecards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.servicecard{
  background: #ffffff;
  border: 1px solid rgba(31,42,55,.08);
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(16,24,40,.06);
  padding: 12px 12px 14px;
}
.servicecard__thumb{
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(31,42,55,.08);
  background: #f7fafc;
}
.servicecard h3{
  margin: 10px 0 6px;
  font-size: 16px;
  line-height: 1.15;
}
.servicecard p{
  margin: 0 0 10px;
  font-size: 12.5px;
  color: rgba(31,42,55,.62);
  line-height: 1.5;
}
.chips{ display:flex; flex-wrap:wrap; gap: 6px; }
.chip{
  background: #eef2f7;
  border: 1px solid rgba(31,42,55,.08);
  color: rgba(31,42,55,.60);
  font-size: 11px;
  border-radius: 999px;
  padding: 4px 8px;
}

/* Lead form */
.leadform{
  background: #f7fafc;
  border: 1px solid rgba(31,42,55,.10);
  border-radius: 16px;
  box-shadow: 0 16px 35px rgba(16,24,40,.08);
  padding: 16px;
}
.leadform h3{
  margin: 2px 0 12px;
  font-size: 18px;
}
.field{ display:block; margin-bottom: 10px; }
.field__label{
  display:block;
  font-size: 12px;
  color: rgba(31,42,55,.68);
  margin-bottom: 6px;
}
.input{
  width: 100%;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(31,42,55,.12);
  background: #fff;
  padding: 0 12px;
  font-size: 13px;
  outline:none;
}
.input:focus{
  border-color: rgba(42,115,214,.40);
  box-shadow: 0 0 0 4px rgba(42,115,214,.12);
}
.fineprint{
  margin: 8px 0 12px;
  font-size: 11px;
  color: rgba(31,42,55,.55);
  line-height: 1.45;
}

/* Wins + CTA */
.wins{
  padding: 10px 0 30px;
}
.wins__grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 18px;
  align-items:stretch;
}
.wins h2{
  margin: 0 0 6px;
  font-size: 26px;
}
.wincards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.wincard{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(31,42,55,.10);
  box-shadow: 0 12px 25px rgba(16,24,40,.08);
  background:#fff;
}
.cta{
  background: #ffffff;
  border: 1px solid rgba(31,42,55,.10);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(16,24,40,.08);
  padding: 18px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.cta h3{
  margin: 0 0 8px;
  font-size: 22px;
}
.cta p{ margin: 0 0 14px; }

/* Footer */
.footer{
  background: linear-gradient(180deg, #1e2a3a, #1a2432);
  color: rgba(255,255,255,.85);
  padding: 18px 0;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}
.footer__brand{ height: 75px; width:auto; }
.footer__nav{
  display:flex;
  gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}
.footer__nav a:hover{ color: rgba(255,255,255,.92); }
.footer__fine{
  font-size: 12px;
  color: rgba(255,255,255,.58);
}

/* Responsive */
@media (max-width: 980px){
  .page{ margin: 0; border-radius: 0; }
  .nav{ display:none; }
  .hero__grid{ grid-template-columns: 1fr; gap: 18px; }
  .services__grid{ grid-template-columns: 1fr; }
  .servicecards{ grid-template-columns: 1fr; }
  .trust__grid{ grid-template-columns: 1fr; }
  .wins__grid{ grid-template-columns: 1fr; }
  .wincards{ grid-template-columns: 1fr; }
  .hero h1{ font-size: 38px; }
}
