:root{
  --bg:#0b1220;
  --panel:#0c0f10;
  --ink:#e7f5ed;
  --muted:#9AA4A9;
  --line:#263036;
  --accent:#14b67d;
  --accent-dark:#0F3224;
  --chip:#122126;
  --link:#60b7ff;
  --note:#112329;
  --shadow:0 12px 40px rgba(0,0,0,.22);
  --panel-soft:#101417;
  --maxw:1160px;
}

*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--ink);
  font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;
}

body{
  min-height:100vh;
}

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

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

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:24px;
}

/* Header / nav */

header{
  position:sticky;
  top:0;
  z-index:30;
  background:linear-gradient(
    180deg,
    rgba(11,18,32,.96),
    rgba(11,18,32,.88) 85%,
    rgba(11,18,32,0)
  );
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}

.nav{
  max-width:var(--maxw);
  margin:0 auto;
  padding:14px 24px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:18px;
  color:#d9fff1;
  line-height:1;
}

.brand img{
  width:24px;
  height:24px;
  object-fit:cover;
}

.nav-links{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin-left:18px;
}

.nav-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:7px 11px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#122126;
  color:var(--ink);
  font-weight:600;
  font-size:14px;
  line-height:1.2;
  transition:background-color .15s ease,border-color .15s ease,color .15s ease,transform .15s ease;
}

.actions-tight{
  margin-top:14px;
}

.inline-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}


.nav-link:hover{
  border-color:rgba(20,182,125,.45);
  transform:translateY(-1px);
}

.nav-link.active{
  background:var(--accent-dark);
  border-color:var(--accent);
  color:#fff;
}

.nav-link.primary{
  background:var(--accent);
  color:#052016;
  border-color:transparent;
}

.lang{
  margin-left:auto;
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}

.lang button,
.lang a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:7px 11px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#122126;
  color:var(--ink);
  font-weight:600;
  font-size:14px;
  line-height:1.2;
  cursor:pointer;
  transition:background-color .15s ease,border-color .15s ease,color .15s ease,transform .15s ease;
}

.lang button:hover,
.lang a:hover{
  border-color:rgba(20,182,125,.45);
  transform:translateY(-1px);
}

.lang button.active,
.lang a.active{
  background:var(--accent-dark);
  border-color:var(--accent);
  color:#fff;
}

/* Layout */

.section{
  margin-top:18px;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

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

.card{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
}

.card.soft{
  background:var(--panel-soft);
  box-shadow:none;
}

.hero{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:22px;
  align-items:center;
  padding:28px 0 10px;
}

.hero-card{
  background:
    radial-gradient(circle at 20% 20%, rgba(20,182,125,.10), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(96,183,255,.08), transparent 22%),
    linear-gradient(180deg, rgba(12,15,16,.96), rgba(12,15,16,.99));
}

.hero-main{
  background:
    radial-gradient(circle at 20% 20%, rgba(20,182,125,.10), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(96,183,255,.08), transparent 22%),
    linear-gradient(180deg, rgba(12,15,16,.96), rgba(12,15,16,.99));
}

.hero-side{
  display:grid;
  gap:16px;
}

.preview-stack{
  display:grid;
  gap:14px;
}

.preview-box{
  padding:16px;
  border:1px solid var(--line);
  border-radius:16px;
  background:linear-gradient(180deg, rgba(20,182,125,.08), rgba(20,182,125,.03));
}

.preview-kpis{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:10px;
}

.preview-maps{
  display:flex;
  gap:14px;
  align-items:flex-end;
}

.preview-desktop{
  width:72%;
  height:250px;
  object-fit:cover;
  object-position:center;
  border-radius:10px;
  border:1px solid var(--line);
  box-shadow:0 8px 24px rgba(0,0,0,.35);
  background:#0f1416;
}

.hero-maps{
  display:flex;
  gap:14px;
  align-items:flex-end;
}

.map-desktop{
  width:70%;
  height:240px;
  object-fit:cover;
  object-position:center;
  border-radius:10px;
  border:1px solid var(--line);
  box-shadow:0 8px 24px rgba(0,0,0,.35);
  background:#0f1416;
}

.phone-frame{
  width:120px;
  height:230px;
  border-radius:24px;
  background:#0a0a0a;
  border:2px solid #1b1b1b;
  padding:6px;
  position:relative;
  transform:translateY(-10px);
  box-shadow:0 10px 30px rgba(0,0,0,.6), inset 0 0 0 2px #000;
  flex:0 0 auto;
}

.phone-frame::before{
  content:"";
  position:absolute;
  top:8px;
  left:50%;
  transform:translateX(-50%);
  width:68px;
  height:12px;
  background:#000;
  border-radius:0 0 10px 10px;
  z-index:2;
}

.phone-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top center;
  border-radius:18px;
  background:#0f1416;
}

/* Type */

.eyebrow{
  display:inline-block;
  margin-bottom:12px;
  color:#b8f6dd;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

h1{
  margin:0 0 12px 0;
  font-size:46px;
  line-height:1.04;
  letter-spacing:-0.03em;
  color:#d9fff1;
}

h2{
  margin:0 0 10px 0;
  font-size:26px;
  line-height:1.15;
  color:var(--accent);
}

h3{
  margin:0 0 8px 0;
  font-size:18px;
  line-height:1.25;
  color:#d9fff1;
}

p{
  margin:0 0 12px 0;
  line-height:1.68;
}

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

.small{
  font-size:13px;
  color:var(--muted);
}

.small-caption{
  font-size:13px;
  color:var(--muted);
  line-height:1.55;
}

/* Chips / badges */

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 11px;
  border-radius:999px;
  background:var(--chip);
  border:1px solid var(--line);
  font-size:12px;
  font-weight:600;
  color:var(--ink);
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:var(--chip);
  border:1px solid var(--line);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  color:var(--ink);
}

/* Buttons */

.hero-actions{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:46px;
  padding:11px 16px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:800;
  line-height:1.2;
  cursor:pointer;
  transition:transform .15s ease,border-color .15s ease,background-color .15s ease,color .15s ease;
}

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

.btn.primary{
  background:var(--accent);
  color:#052016;
}

.btn.secondary,
.btn.ghost{
  background:#122126;
  color:var(--ink);
  border-color:var(--line);
}

.btn.tiny{
  min-height:36px;
  padding:8px 12px;
  font-size:13px;
  font-weight:700;
}

/* Utility blocks */

.note{
  margin-top:14px;
  padding:13px 14px;
  border-radius:12px;
  border:1px solid #1d3440;
  background:var(--note);
  color:#b9d4e0;
}

.list{
  margin:8px 0 0 18px;
  padding:0;
}

.list li{
  margin:7px 0;
  line-height:1.6;
}

.usecase-card{
  display:block;
  height:100%;
  transition:transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.usecase-card:hover{
  transform:translateY(-3px);
  border-color:rgba(20,182,125,.5);
  box-shadow:0 16px 42px rgba(0,0,0,.35);
}

.feature-card{
  height:100%;
}

.img-card img{
  width:100%;
  border-radius:14px;
  border:1px solid var(--line);
  background:#091018;
}

.screenshot-strip{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
  margin-top:12px;
}

.screenshot-strip img{
  width:100%;
  height:280px;
  object-fit:cover;
  object-position:top center;
  border-radius:12px;
  border:1px solid var(--line);
  background:#0f1416;
}

.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px;
  border-radius:18px;
  border:1px solid rgba(20,182,125,.25);
  background:linear-gradient(180deg, rgba(20,182,125,.10), rgba(20,182,125,.05));
}

.cta-band h2,
.cta-band p{
  margin:0;
}

.faq-item{
  padding:14px 0;
  border-bottom:1px solid var(--line);
}

.faq-item:last-child{
  border-bottom:none;
}

.footer{
  margin:28px 0 8px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}

/* Language panels */

.lang-panel{
  display:none;
}

.lang-panel.active{
  display:block;
}

.lang-section{
  display:none;
}

.lang-section.active{
  display:block;
}

/* Pro page helpers */

.pricebox{
  padding:18px;
  border-radius:14px;
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(20,182,125,.08), rgba(20,182,125,.03));
}

.price-main{
  font-size:34px;
  line-height:1.1;
  font-weight:800;
  color:#fff;
  margin-bottom:6px;
  letter-spacing:-0.02em;
}

.price-sub{
  color:var(--muted);
  font-size:14px;
  margin-bottom:10px;
}

.price-note{
  color:#c8f6e4;
  font-size:13px;
  line-height:1.55;
}

.mini-kpis{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.compare{
  width:100%;
  border-collapse:collapse;
  margin-top:8px;
}

.compare th,
.compare td{
  border-bottom:1px solid var(--line);
  padding:12px 10px;
  text-align:left;
  vertical-align:top;
}

.compare th{
  color:#d9fff1;
  font-size:14px;
}

.compare td:nth-child(2),
.compare th:nth-child(2),
.compare td:nth-child(3),
.compare th:nth-child(3){
  text-align:center;
  width:110px;
}

.ok{
  color:#9ef0c7;
  font-weight:800;
}

.no{
  color:#88979d;
  font-weight:700;
}

.hero-main .note,
.hero-card .note{
  margin-top:16px;
}

/* Forms / config / app-style panels reused on site */

.field{
  width:100%;
  margin-top:6px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#101417;
  color:var(--ink);
  font:inherit;
}

.config-section{
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.config-section:last-child{
  border-bottom:none;
}

.config-row{
  margin-top:12px;
}

/* Responsive */

@media (max-width: 960px){
  .hero,
  .grid-2,
  .grid-3,
  .screenshot-strip{
    grid-template-columns:1fr;
  }

  h1{
    font-size:36px;
  }

  .lang{
    margin-left:0;
  }

  .preview-desktop{
    width:68%;
    height:220px;
  }

  .phone-frame{
    width:104px;
    height:204px;
  }

  .cta-band{
    flex-direction:column;
    align-items:flex-start;
  }

  .compare td:nth-child(2),
  .compare th:nth-child(2),
  .compare td:nth-child(3),
  .compare th:nth-child(3){
    width:auto;
  }
}

@media (max-width: 720px){
  .wrap{
    padding:16px;
  }

  .nav{
    padding:12px 16px;
  }

  h1{
    font-size:31px;
  }

  .preview-desktop{
    width:64%;
    height:200px;
  }

  .map-desktop{
    width:64%;
    height:200px;
  }

  .phone-frame{
    width:94px;
    height:184px;
    transform:translateY(-4px);
  }

  .screenshot-strip img{
    height:220px;
  }

  .price-main{
    font-size:30px;
  }
}