:root {
  --green-primary:#8dc63f;
  --green-dark:#60b14f;
  --green-deep:#204a5d;
  --green-soft:#b9da76;
  --lime:#d6f36a;
  --ink:#2f3f3c;
  --mist:#f4f6f3;
  --line:#d9dfd4;
  --sky:#dbe4f4;
  --sky2:#c7d4ec;
  --shadow:0 0 5px rgba(20,34,28,.10);
  --container:1200px;
  --flow-cycle:16s;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Aller SansSerif","Trebuchet MS",Arial,sans-serif;
  color:#122033;
  background:#fff;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

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

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:15px 26px;
  border-radius:14px;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.03em;
  transition:.2s ease;
  border:none;
  cursor:pointer;
}
.btn-icon{
  margin-right:8px;
  font-size:14px;
  line-height:1;
  opacity:.92;
}
.btn-primary{background:var(--green-dark);color:#fff}
.btn-primary:hover{background:#4f9d41}
.btn-light{background:#fff;color:var(--ink)}
.btn-ghost{background:#fff;border:1px solid #dde5d8;color:#21412f}
.btn-login{gap:4px}

.eyebrow{
  display:inline-flex;
  align-items:center;
  background:var(--lime);
  color:var(--ink);
  padding:8px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
}

.section{padding:50px 0}
.section.compact-top{padding-top:40px;padding-bottom:34px}
.section.mist{background:var(--mist)}
.section h2{
  margin:18px 0 0;
  font-size:clamp(22px,2.5vw,35px);
  line-height:1.08;
  font-weight:500;
  letter-spacing:-.03em;
}
.section-intro{
  max-width:880px;
  margin-top:16px;
  font-size:18px;
  line-height:1.75;
  color:#4d5e73;
}

.lead,
.section-intro,
.form-note{
  text-align:justify;
  text-justify:inter-word;
}

@media (max-width:760px){
  .lead,
  .section-intro,
  .form-note{
    text-align:left;
    text-justify:auto;
  }
}

.hero{
  position:relative;
  overflow:hidden;
  background:linear-gradient(128deg,#f4f9ef 0%,#edf6e2 44%,#d9efc8 100%);
}
.hero:before,.hero:after{content:"";position:absolute;border-radius:999px;opacity:.12}
.hero:before{width:520px;height:520px;right:-180px;top:-20px;background:#7eba4f}
.hero:after{width:460px;height:260px;left:-120px;bottom:-80px;background:#fff}

.header{
  position:relative;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px 0;
}
.logo{width:330px;max-width:46vw}
.nav{
  display:flex;
  align-items:center;
  gap:30px;
  color:#1f1f1f;
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.nav a{
  transition:color .2s ease;
}
.nav a:not(.btn):hover{
  color:var(--green-dark);
}
.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:1px solid rgba(31,63,43,.16);
  border-radius:14px;
  background:rgba(255,255,255,.86);
  box-shadow:0 10px 22px rgba(27,53,35,.10);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.menu-toggle:hover{
  background:#fff;
  transform:translateY(-1px);
  box-shadow:0 14px 26px rgba(27,53,35,.14);
}
.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  border-radius:999px;
  background:#1f3a2b;
  transition:transform .24s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.is-open span:nth-child(2){opacity:0}
.menu-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
  padding:16px 0 88px;
}
.headline{
  font-size:clamp(44px,4vw,58px);
  line-height:1.03;
  margin:0;
  font-weight:800;
  color:#173424;
  max-width:760px;
}
.headline span{color:#5b9f37}
.lead{
  margin:24px 0 0;
  max-width:640px;
  font-size:20px;
  line-height:1.65;
  color:#2e4b38;
}
.trial{
  display:inline-flex;
  margin-top:20px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:#fff;
  padding:14px 18px;
  font-size:14px;
  font-weight:700;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}

.stats{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px;margin-top:42px;max-width:720px}
.stat{
  min-height:138px;
  border-radius:30px;
  border:1px solid rgba(55,94,67,.14);
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(8px);
  padding:20px 20px 18px;
  color:#264431;
}
.stat-icon{
  width:32px;
  height:32px;
  border-radius:9px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  color:#315b43;
  border:1px solid rgba(49,91,67,.18);
  background:rgba(255,255,255,.7);
}
.stat-title{
  margin-top:12px;
  font-size:16px;
  line-height:1.25;
  font-weight:700;
  color:#21412f;
  white-space:nowrap;
}
.stat-label{margin-top:8px;font-size:14px;line-height:1.45;color:#3f5e49;max-width:220px}

.showcase{
  position:relative;
  min-height:484px;
  border-radius:38px;
  border:1px solid rgba(39,82,52,.16);
  background:rgba(255,255,255,.72);
  box-shadow:0 26px 56px rgba(0,0,0,.14);
  backdrop-filter:blur(10px);
  overflow:hidden;
}
.showcase .glow{position:absolute;border-radius:999px;filter:blur(24px)}
.glow-a{width:120px;height:120px;top:34px;left:50%;transform:translateX(-50%);background:rgba(219,228,244,.7)}
.glow-b{width:170px;height:110px;top:52px;left:50%;transform:translateX(-50%);background:rgba(199,212,236,.6)}
.glow-c{width:260px;height:44px;bottom:28px;left:50%;transform:translateX(-50%);background:rgba(106,169,61,.22)}

.app-card{position:absolute;right:18px;top:128px;width:214px;border-radius:26px;border:1px solid rgba(255,255,255,.8);background:rgba(255,255,255,.96);padding:12px;box-shadow:0 22px 40px rgba(0,0,0,.14);opacity:1;transform:none;z-index:3}
.app-shell{overflow:hidden;border-radius:20px;border:1px solid #dbe2ea;background:#f7f9fb}
.app-top{display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid #dde3ea;background:rgba(255,255,255,.84);padding:10px 12px}
.dots{display:flex;gap:6px}
.dots span{width:10px;height:10px;border-radius:50%;display:block}
.dots span:nth-child(1){background:#ff8f7a}.dots span:nth-child(2){background:#ffd36a}.dots span:nth-child(3){background:#8dc63f}
.app-top strong{font-size:10px;letter-spacing:.08em;color:#66707c;text-transform:uppercase}
.app-body{display:grid;grid-template-columns:54px 1fr;min-height:148px}
.app-side{border-right:1px solid #dde3ea;background:#eef3f7;padding:8px}
.app-side div{height:32px;border-radius:10px;margin-bottom:8px;background:#fff}
.app-side div:first-child{background:var(--green-deep)}
.app-main{padding:12px}
.app-main-head{display:flex;justify-content:space-between;align-items:flex-start}
.app-title{height:12px;width:82px;background:var(--green-deep);border-radius:999px}
.app-sub{height:10px;width:56px;background:#b9c7d4;border-radius:999px;margin-top:8px}
.app-badge{font-size:10px;font-weight:700;color:#4d7e1f;background:rgba(141,198,63,.15);padding:5px 8px;border-radius:999px;animation:onlinePulse 6.2s ease-in-out infinite}
@keyframes onlinePulse{0%,62%{transform:scale(1);opacity:.5}78%{transform:scale(1.14);opacity:1}100%{transform:scale(1);opacity:.8}}
.app-lines{margin-top:16px;display:grid;gap:8px}
.app-lines span,.panel span{display:block;border-radius:999px;background:#d9dfd4}
.app-lines span:nth-child(1){height:10px;width:38%;animation:grow1 6.2s ease-in-out infinite}
.app-lines span:nth-child(2){height:10px;width:26%;animation:grow2 6.2s ease-in-out infinite}
.app-lines span:nth-child(3){height:10px;width:18%;animation:grow3 6.2s ease-in-out infinite}
@keyframes grow1{0%,50%{width:38%;opacity:.35}62%,100%{width:92%;opacity:1}}
@keyframes grow2{0%,54%{width:26%;opacity:.3}66%,100%{width:74%;opacity:1}}
@keyframes grow3{0%,58%{width:18%;opacity:.25}70%,100%{width:58%;opacity:1}}
.app-panels{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:16px}
.panel{border-radius:14px;padding:10px;min-height:44px}
.panel.green{background:rgba(141,198,63,.18)}
.panel.blue{background:rgba(32,74,93,.08)}
.panel.green span:first-child{width:40px;height:8px;background:var(--green-primary)}
.panel.green span:last-child{width:24px;height:8px;margin-top:8px;background:var(--green-soft)}
.panel.blue span:first-child{width:32px;height:8px;background:rgba(32,74,93,.4)}
.panel.blue span:last-child{width:48px;height:8px;margin-top:8px;background:#93a3b4}

.card-pass{position:absolute;left:54px;top:252px;z-index:5;animation:cardMove var(--flow-cycle) ease-in-out infinite;transform-origin:center center}
@keyframes cardMove{
  0%{transform:translate(0,0) rotate(-10deg);opacity:.9}
  4%{transform:translate(8px,-36px) rotate(-6deg);opacity:1}
  10%{transform:translate(8px,-36px) rotate(-6deg);opacity:1}
  12.5%{transform:translate(0,0) rotate(-10deg);opacity:.85}
  100%{transform:translate(0,0) rotate(-10deg);opacity:.85}
}
.pass-card-inner{width:132px;height:84px;border-radius:18px;border:1px solid rgba(255,255,255,.75);background:linear-gradient(135deg,#fbfdff,#edf3fb);box-shadow:0 16px 30px rgba(0,0,0,.18);padding:12px}
.pass-top{display:flex;justify-content:space-between}
.pass-top span:first-child{width:40px;height:16px;border-radius:4px;background:var(--green-primary)}
.pass-top span:last-child{width:16px;height:16px;border-radius:50%;background:var(--green-deep)}
.chip{width:56px;height:28px;border-radius:7px;background:#d9b86c;margin:12px 0 0}
.pass-lines{display:flex;gap:8px;margin:12px 0 0}
.pass-lines span:first-child{width:64px;height:8px;border-radius:999px;background:#9cb4d0}
.pass-lines span:last-child{width:32px;height:8px;border-radius:999px;background:#c7d4ec}
.status-pill{position:absolute;left:28px;top:212px;transform:none;z-index:6;padding:10px 16px;border-radius:999px;background:#fff;color:var(--green-deep);font-size:14px;font-weight:700;box-shadow:0 16px 28px rgba(0,0,0,.14);animation:statusStepOne var(--flow-cycle) ease-in-out infinite}
@keyframes statusStepOne{
  0%,1%{opacity:0}
  1.5%,12.5%{opacity:1}
  13.5%,100%{opacity:0}
}
.wave{position:absolute;right:138px;top:188px;z-index:2;width:220px;height:84px;opacity:0;animation:waveShow var(--flow-cycle) ease-in-out infinite}
.wave path{stroke:#D6F36A;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;fill:none}.wave path:first-child{stroke-dasharray:12 10}
@keyframes waveShow{
  0%,25%{opacity:0}
  26%,37.5%{opacity:.95}
  38.5%,100%{opacity:0}
}
.dot{position:absolute;left:198px;z-index:4;width:14px;height:14px;border-radius:50%;animation:dotTravel var(--flow-cycle) linear infinite;opacity:0}
.dot.d1{top:210px;background:#d6f36a;box-shadow:0 0 14px rgba(214,243,106,.95);animation-delay:0s}
.dot.d2{top:224px;background:#8dc63f;box-shadow:0 0 14px rgba(141,198,63,.95);animation-delay:.22s}
.dot.d3{top:238px;background:#b9da76;box-shadow:0 0 14px rgba(185,218,118,.95);animation-delay:.44s}
@keyframes dotTravel{
  0%,25%{transform:translate(0,0);opacity:0}
  27%{opacity:1}
  31%{transform:translate(34px,-12px);opacity:1}
  35%{transform:translate(72px,10px);opacity:1}
  37.5%{transform:translate(112px,-8px);opacity:0}
  100%{transform:translate(112px,-8px);opacity:0}
}
.terminal-wrap{position:relative;z-index:4;margin-top:8px;margin-left:8px;transform:perspective(1000px) rotateY(-22deg) rotateX(10deg)}
.terminal-shadow{position:absolute;left:12px;top:10px;width:180px;height:250px;border-radius:30px;background:#173544;opacity:.45;filter:blur(1px)}
.terminal{position:relative;width:180px;height:250px;border-radius:30px;border:1px solid #294b5e;background:linear-gradient(to bottom,#315f76,#24495d,#1b394a);padding:20px 16px 0;box-shadow:0 34px 60px rgba(0,0,0,.22);display:flex;flex-direction:column;align-items:center}
.term-notch{width:64px;height:8px;border-radius:999px;background:rgba(255,255,255,.1)}
.term-screen{margin-top:20px;width:100%;border-radius:18px;background:#bde36e;padding:14px 12px;box-shadow:inset 0 1px 6px rgba(0,0,0,.08)}
.term-screen span{display:block;height:12px;border-radius:999px;background:#6b8f2d;margin-bottom:12px}
.term-screen span:nth-child(1){width:64px}.term-screen span:nth-child(2){width:96px;background:#7ca73a}.term-screen span:nth-child(3){width:56px;margin-bottom:0}
.term-lines{width:100%;display:grid;gap:12px;margin-top:20px}
.term-lines span{height:12px;border-radius:999px;background:rgba(255,255,255,.1);display:block}
.term-lines span:nth-child(2){width:82%}.term-lines span:nth-child(3){width:70%}
.term-indicator{margin-top:auto;margin-bottom:20px;width:40px;height:40px;border-radius:50%;background:rgba(141,198,63,.2);display:flex;align-items:center;justify-content:center;box-shadow:inset 0 0 0 1px rgba(255,255,255,.1)}
.term-indicator span{width:16px;height:16px;border-radius:50%;background:var(--green-primary);animation:pulse 2.2s ease-in-out infinite}
@keyframes pulse{0%{transform:scale(1);opacity:.7}50%{transform:scale(1.18);opacity:1}100%{transform:scale(1);opacity:.7}}

.panel-card{background:#fff;border:1px solid rgba(0,0,0,.05);border-radius:32px;box-shadow:var(--shadow)}
.app-preview-card{padding:20px}
.preview-shell{overflow:hidden;border-radius:26px;border:1px solid #dae0e5;background:#fff;box-shadow:0 8px 22px rgba(0,0,0,.06)}
.preview-body{display:flex;height:430px;background:#edf0f3}
.sidebar{width:220px;flex-shrink:0;background:#1f2d34;color:#fff}
.sidebar-title{padding:18px 20px;font-size:20px;font-weight:800}
.user-card{margin:0 16px;padding:14px;display:flex;gap:12px;background:rgba(255,255,255,.05);border-radius:18px}
.avatar{position:relative;width:48px;height:48px;border-radius:50%;overflow:hidden;background:linear-gradient(135deg,#90A0B2 0%,#5F7084 100%);flex-shrink:0}
.avatar:before{content:"";position:absolute;inset:auto 0 0 0;height:48%;background:#314656;border-top-left-radius:40%;border-top-right-radius:40%}
.avatar:after{content:"";position:absolute;left:50%;top:24%;width:22px;height:22px;transform:translateX(-50%);background:#E2AE89;border-radius:50%}
.avatar .hair{position:absolute;left:50%;top:14%;width:26px;height:14px;transform:translateX(-50%);background:#26323D;border-bottom-left-radius:12px;border-bottom-right-radius:12px;border-radius:999px 999px 12px 12px}
.avatar .body{position:absolute;left:50%;bottom:0;width:34px;height:18px;transform:translateX(-50%);background:#3C5266;border-top-left-radius:50%;border-top-right-radius:50%}
.avatar.small{width:32px;height:32px}.avatar.small:after{width:14px;height:14px}.avatar.small .hair{width:16px;height:9px}.avatar.small .body{width:20px;height:11px}
.user-name{font-weight:700}
.online-row{display:flex;align-items:center;gap:8px;margin-top:6px;font-size:12px;color:rgba(255,255,255,.82)}
.online-row i{width:8px;height:8px;border-radius:50%;background:var(--green-primary);display:block}
.search-box{margin:16px;padding:13px 14px;background:rgba(255,255,255,.10);border-radius:14px;color:rgba(255,255,255,.6);font-size:14px}
.side-label{padding:4px 16px 0;font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:rgba(255,255,255,.4)}
.side-menu{padding:10px 12px 0;display:grid;gap:4px}.side-menu div{padding:14px 14px;border-radius:14px;font-size:14px;color:rgba(255,255,255,.82)}.side-menu .active{background:rgba(255,255,255,.1);color:#fff}
.content-area{min-width:0;flex:1}.topbar{height:56px;background:#22323a;color:#fff;display:flex;align-items:center;justify-content:space-between;padding:0 16px}.top-icons{display:flex;align-items:center;gap:14px;font-size:14px;color:rgba(255,255,255,.9)}.mail-icon{width:20px;height:20px}.mail-icon path{stroke:white;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.top-user{display:flex;align-items:center;gap:8px}
.content-inner{padding:18px}.content-title{margin-bottom:12px;font-size:22px;font-weight:700;color:#27384d}.content-grid{display:grid;grid-template-columns:320px 1fr;gap:16px}
.preview-panel{overflow:hidden;border-radius:18px;border:1px solid #dbe1e6;background:#fff;box-shadow:0 4px 10px rgba(0,0,0,.04)}
.user-header{padding:16px;text-align:center}.user-nav{font-size:34px;color:#98a0aa}.user-nav span{color:#2754c5;font-size:20px;font-weight:600}.company-label{margin-top:8px;font-size:14px;color:#7b8590}
.day-list{padding:0 12px 12px;display:grid;gap:8px}.day-item{background:#ececec;border-radius:10px;padding:10px 12px;font-size:14px}.day-row{display:flex;justify-content:space-between;font-weight:700}.day-date{color:#2754c5}.bar{margin-top:8px;height:8px;border-radius:999px;background:#fff}.bar>span{display:block;height:100%;border-radius:999px;background:var(--green-primary)}
.months{border-bottom:1px solid #e2e7ec;padding:16px;font-size:14px;color:#526173}.month-row{display:flex;flex-wrap:wrap;align-items:center;gap:18px}.month-row .year{font-weight:700}.month-row .active{padding-bottom:5px;border-bottom:2px solid var(--green-primary);font-weight:700}
.daily-plan{border-bottom:1px solid #e2e7ec;padding:12px 16px;font-size:14px;color:#526173}.daily-plan strong{color:#2c3b50}
.records{padding:16px}.record{margin-bottom:18px;overflow:hidden;border-radius:14px;border:1px solid #dbe1e6}.record:last-child{margin-bottom:0}.record-head{background:#d9d9d9;padding:10px 12px;font-size:14px;font-weight:700;color:#4f5d6d}.record-body{display:grid;grid-template-columns:1fr 100px;gap:12px;padding:12px;font-size:14px}.chips{display:grid;gap:8px}.chip-item{display:inline-flex;align-items:center;width:max-content;border-radius:8px;padding:8px 12px;color:#fff;font-weight:700}.chip-green{background:var(--green-primary)}.chip-blue{background:#4f8dc4}.chip-red{background:#d96a4d}.total{display:flex;justify-content:center;align-items:flex-start;padding-top:36px;font-size:26px;font-weight:800;color:#1f3144}

.grid-3{display:grid;gap:24px;grid-template-columns:repeat(3,minmax(0,1fr))}.cards-top-gap{margin-top:48px}
.feature-card,.term-card{border-radius:32px;background:#fbfcfa;border:1px solid rgba(0,0,0,.05);box-shadow:var(--shadow);padding:24px}
.feature-card h3,.term-card h3{margin:0;line-height:1.35}.feature-card p,.term-card p{color:#55657a;font-size:16px;line-height:1.85}
.term-card ul{list-style:none;padding:0;margin:18px 0 0;display:grid;gap:12px}.term-card li{display:flex;gap:12px;font-size:15px;line-height:1.6;color:#32445a}.term-card li:before{content:"✔";color:var(--green-primary);font-weight:700}

.icon-wrap{margin-bottom:14px;display:flex;justify-content:flex-start;align-items:flex-start;border-radius:24px;background:transparent;min-height:auto;position:relative;overflow:visible;padding-top:2px}
.icon-illustration::before,.icon-illustration::after{display:none}.small-illus{min-height:auto}
.cards-illus,.terminal-illus,.desk-illus,.mobile-illus,.calendar-illus,.monitoring-illus,.ikos-illus,.jablotron-illus,.custom-illus,.report-illus,.online-illus,.plan-illus,.integration-illus,.support-illus,.monitor-dark-illus{background-repeat:no-repeat;background-position:left top;background-size:54px 54px;width:54px;height:54px;min-width:54px}
.small-illus.cards-illus,.small-illus.terminal-illus,.small-illus.desk-illus,.small-illus.mobile-illus,.small-illus.report-illus,.small-illus.online-illus,.small-illus.plan-illus,.small-illus.integration-illus,.small-illus.support-illus,.small-illus.monitor-dark-illus{background-size:42px 42px;width:42px;height:42px;min-width:42px}
.cards-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='16' width='20' height='14' rx='3'/%3E%3Crect x='34' y='10' width='20' height='14' rx='3'/%3E%3Crect x='34' y='30' width='20' height='14' rx='3'/%3E%3Cpath d='M30 23h4M44 24v6'/%3E%3C/g%3E%3C/svg%3E")}
.terminal-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='18' y='12' width='28' height='36' rx='4'/%3E%3Cpath d='M25 22h14M25 29h14M25 36h9'/%3E%3Cpath d='M10 30h4M50 30h4'/%3E%3C/g%3E%3C/svg%3E")}
.desk-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='20' width='26' height='18' rx='3'/%3E%3Cpath d='M21 38v8M14 46h14'/%3E%3Crect x='40' y='14' width='14' height='28' rx='2'/%3E%3Cpath d='M12 50h40'/%3E%3C/g%3E%3C/svg%3E")}
.mobile-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='22' y='10' width='20' height='40' rx='5'/%3E%3Cpath d='M28 18h8M31 43h2'/%3E%3Cpath d='M10 22v16M54 22v16'/%3E%3C/g%3E%3C/svg%3E")}
.calendar-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='14' width='44' height='36' rx='5'/%3E%3Cpath d='M18 10v8M46 10v8M10 24h44'/%3E%3Cpath d='M20 32h8M36 32h8M20 40h8M36 40h8'/%3E%3C/g%3E%3C/svg%3E")}
.monitoring-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='14' width='44' height='32' rx='4'/%3E%3Cpath d='M16 37h7l5-10 7 14 5-8h8'/%3E%3Cpath d='M24 50h16'/%3E%3C/g%3E%3C/svg%3E")}
.ikos-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='22' y='8' width='20' height='38' rx='4'/%3E%3Cpath d='M28 17h8M27 25h10M27 33h10'/%3E%3Cpath d='M10 30c4-5 8-7 12-8M54 30c-4-5-8-7-12-8'/%3E%3C/g%3E%3C/svg%3E")}
.jablotron-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='14' y='16' width='36' height='28' rx='5'/%3E%3Cpath d='M22 24h20M22 31h20M22 38h12'/%3E%3Cpath d='M8 24v12'/%3E%3C/g%3E%3C/svg%3E")}
.custom-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='22' width='26' height='18' rx='3'/%3E%3Crect x='40' y='18' width='14' height='24' rx='3'/%3E%3Cpath d='M15 31h12M45 26h4M45 33h4'/%3E%3Ccircle cx='12' cy='14' r='4'/%3E%3Cpath d='M12 18v6'/%3E%3Ccircle cx='52' cy='12' r='4'/%3E%3Cpath d='M52 16v6'/%3E%3C/g%3E%3C/svg%3E")}
.report-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='12' y='10' width='40' height='44' rx='6'/%3E%3Cpath d='M22 24h20M22 32h20M22 40h12'/%3E%3Cpath d='M40 10v12h12'/%3E%3C/g%3E%3C/svg%3E")}
.online-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='32' r='19'/%3E%3Cpath d='M14 32h36M32 13a30 30 0 0 1 0 38M32 13a30 30 0 0 0 0 38'/%3E%3Ccircle cx='49' cy='15' r='6'/%3E%3Cpath d='M49 12v3h3'/%3E%3C/g%3E%3C/svg%3E")}
.plan-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='14' width='44' height='38' rx='6'/%3E%3Cpath d='M20 10v8M44 10v8M10 25h44'/%3E%3Cpath d='M22 35l6 6 14-14'/%3E%3C/g%3E%3C/svg%3E")}
.integration-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='20' cy='20' r='7'/%3E%3Ccircle cx='44' cy='20' r='7'/%3E%3Ccircle cx='32' cy='44' r='7'/%3E%3Cpath d='M26 24h12M24 25l6 12M40 25l-6 12'/%3E%3C/g%3E%3C/svg%3E")}
.support-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%232a6a3a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='32' r='20'/%3E%3Cpath d='M22 28a10 10 0 0 1 20 0v4a5 5 0 0 1-5 5h-3v4h-4v-4h-3a5 5 0 0 1-5-5z'/%3E%3Cpath d='M28 49h8'/%3E%3C/g%3E%3C/svg%3E")}
.monitor-dark-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%232a6a3a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='12' width='48' height='32' rx='5'/%3E%3Cpath d='M14 36h8l5-8 6 10 5-6h12'/%3E%3Cpath d='M24 50h16'/%3E%3C/g%3E%3C/svg%3E")}
.term-icon-terminal,.term-icon-hw{background-repeat:no-repeat;background-position:left top;background-size:54px 54px;width:54px;height:54px;min-width:54px}
.term-icon-terminal{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='21' y='10' width='22' height='40' rx='3'/%3E%3Cpath d='M27 17h10M32 44h0'/%3E%3Cpath d='M17 20h-5a2 2 0 0 0-2 2v23a2 2 0 0 0 2 2h40a2 2 0 0 0 2-2V22a2 2 0 0 0-2-2h-5'/%3E%3C/g%3E%3C/svg%3E")}
.term-icon-hw{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='18' y='18' width='28' height='28' rx='4'/%3E%3Cpath d='M26 26h12v12H26z'/%3E%3Cpath d='M10 26h6M10 32h6M10 38h6M48 26h6M48 32h6M48 38h6M26 10v6M32 10v6M38 10v6M26 48v6M32 48v6M38 48v6'/%3E%3C/g%3E%3C/svg%3E")}

.why-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:start}
.why-visual{border-radius:32px;overflow:hidden;background:linear-gradient(135deg,#84bc50,#68ab47)}
.why-visual-inner{display:grid;gap:16px;grid-template-columns:repeat(2,minmax(0,1fr));padding:32px;color:#fff}
.mini-card{border-radius:24px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.12);padding:16px}
.mini-card .icon-wrap{min-height:auto;margin-bottom:12px}
.mini-card strong{display:block;font-size:18px;line-height:1.4}
.why-icon-group{display:inline-flex;gap:8px}
.why-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.2);
  color:#fff;
  font-size:20px;
}
.why-icon-group .why-icon{
  width:36px;
  height:36px;
  font-size:16px;
}
.why-illus{filter:none}
.why-illus.report-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%233e7245' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='12' y='10' width='40' height='44' rx='6'/%3E%3Cpath d='M22 24h20M22 32h20M22 40h12'/%3E%3Cpath d='M40 10v12h12'/%3E%3C/g%3E%3C/svg%3E")}
.why-illus.support-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%233e7245' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='32' cy='32' r='20'/%3E%3Cpath d='M22 28a10 10 0 0 1 20 0v4a5 5 0 0 1-5 5h-3v4h-4v-4h-3a5 5 0 0 1-5-5z'/%3E%3Cpath d='M28 49h8'/%3E%3C/g%3E%3C/svg%3E")}
.why-illus.monitor-dark-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%233e7245' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='12' width='48' height='32' rx='5'/%3E%3Cpath d='M14 36h8l5-8 6 10 5-6h12'/%3E%3Cpath d='M24 50h16'/%3E%3C/g%3E%3C/svg%3E")}
.why-illus.integration-illus{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%233e7245' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='20' cy='20' r='7'/%3E%3Ccircle cx='44' cy='20' r='7'/%3E%3Ccircle cx='32' cy='44' r='7'/%3E%3Cpath d='M26 24h12M24 25l6 12M40 25l-6 12'/%3E%3C/g%3E%3C/svg%3E")}

.site-footer{margin-top:40px;background:#eef5d8;color:#1d2734;position:relative;overflow:hidden}
.footer-wave{height:120px;background:#fff;clip-path:ellipse(72% 100% at 50% 0%)}
.footer-contact-wrap{display:grid;grid-template-columns:.9fr 1.1fr;gap:72px;padding:56px 0 72px}
.footer-left h2{margin:0 0 36px;font-size:clamp(22px,2.5vw,58px);line-height:1.05;font-weight:800;color:#1d2734}
.footer-contact-item{display:flex;align-items:flex-start;gap:18px;margin-bottom:22px;font-size:18px;line-height:1.7;color:#22303f}
.footer-contact-item a{text-decoration: underline; text-underline-offset:3px}
.footer-address strong{display:block;margin-bottom:4px}
.footer-icon{width:34px;height:34px;min-width:34px;display:inline-block;background-repeat:no-repeat;background-position:center;background-size:34px 34px;margin-top:3px}
.footer-icon-mail{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4.5' y='8' width='31' height='24' rx='3.5'/%3E%3Cpath d='M6 10l14 11 14-11'/%3E%3C/g%3E%3C/svg%3E")}
.footer-icon-phone{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 7c0 14 9 23 23 23l3-6-6-3-4 4c-5-2-9-6-11-11l4-4-3-6-7 3z'/%3E%3C/g%3E%3C/svg%3E")}
.footer-icon-pin{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 34s9-9.5 9-16c0-5.3-4-9-9-9s-9 3.7-9 9c0 6.5 9 16 9 16z'/%3E%3Ccircle cx='20' cy='18' r='3.2'/%3E%3C/g%3E%3C/svg%3E")}
.footer-form{display:block}
.footer-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px 22px}
.footer-form label{display:block}
.footer-form label span{display:block;margin-bottom:8px;font-size:14px;font-weight:700;color:#1d2734}
.footer-form input,.footer-form textarea{width:100%;border:1.5px solid rgba(29,39,52,.55);border-radius:16px;background:transparent;padding:14px 16px;font:inherit;color:#1d2734;outline:none}
.footer-form input:focus,.footer-form textarea:focus{border-color:var(--green-dark);box-shadow:0 0 0 3px rgba(88,177,79,.12)}
.footer-form input.is-invalid,.footer-form textarea.is-invalid{
  border-color:#d65b49;
  background:rgba(214,91,73,.06);
  box-shadow:0 0 0 3px rgba(214,91,73,.14);
}
.field-error{
  display:none;
  margin-top:6px;
  font-size:12px;
  line-height:1.4;
  color:#b43a2f;
}
.field-error.is-visible{
  display:block;
}
.footer-form label .field-error{
  margin-bottom:0;
  font-size:12px;
  font-weight:400;
  color:#b43a2f;
}
.field-error-checkbox{
  flex-basis:100%;
  margin-top:2px;
  margin-left:28px;
}
.agree.is-invalid{
  color:#9f2f23;
}
.agree.is-invalid input{
  box-shadow:0 0 0 3px rgba(214,91,73,.18);
}
.footer-form .full{display:block;margin-top:18px}
.footer-form textarea{min-height:118px;resize:vertical}
.bot-field{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  overflow:hidden !important;
}
.agree{display:flex !important;align-items:center;gap:10px;flex-wrap:wrap;margin-top:18px}
.agree span{margin:0 !important;font-weight:400 !important;font-size:14px !important}
.agree .field-error{font-size:12px !important;font-weight:400 !important}
.agree input{width:18px;height:18px;margin:0;border-radius:5px;padding:0;accent-color:var(--green-dark)}
.footer-submit{margin-top:18px;min-width:235px}
.footer-submit:disabled{opacity:.65;cursor:not-allowed}
.footer-bottom{background:#fff;border-top:1px solid rgba(0,0,0,.05)}
.footer-bottom-row{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:24px 0}
.footer-bottom-end{
  background:#1d2734;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-bottom-end-row{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  padding:12px 0 14px;
}
.footer-white-logo-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:12px;
}
.footer-white-logo{
  width: 130px;
  max-width:48vw;
  height:auto;
}
.footer-logo{width:170px}
.footer-nav{display:flex;align-items:center;gap:34px;font-size:16px;color:#22303f}
.footer-nav a{text-decoration:none}.footer-nav a:last-child{text-underline-offset:4px}
.toast{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:2000;
  max-width:min(420px,calc(100% - 32px));
  padding:14px 16px;
  border-radius:14px;
  color:#fff;
  background:linear-gradient(135deg,#2f8d3a,#60b14f);
  box-shadow:0 18px 38px rgba(16,38,22,.28);
  font-weight:700;
  opacity:0;
  transform:translateY(14px);
  pointer-events:none;
  transition:opacity .24s ease, transform .24s ease;
}
.toast.is-error{
  background:linear-gradient(135deg,#b43a2f,#d65b49);
}
.toast.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media (max-width:1100px){
  .hero-grid,.why-grid,.footer-contact-wrap{grid-template-columns:1fr}
  .grid-3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .content-grid{grid-template-columns:1fr}
  .preview-body{height:auto}
  .sidebar{display:none}
}

@media (max-width:760px){
  .header{padding:18px 0}
  .menu-toggle{display:inline-flex;position:relative;z-index:20}
  .nav{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    right:0;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px;
    border-radius:24px;
    background:rgba(255,255,255,.96);
    border:1px solid rgba(55,94,67,.14);
    box-shadow:0 24px 50px rgba(27,53,35,.18);
    backdrop-filter:blur(14px);
    opacity:0;
    visibility:hidden;
    transform:translateY(-8px) scale(.98);
    pointer-events:none;
    transition:opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .nav.is-open{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
    pointer-events:auto;
  }
  .nav a:not(.btn){
    padding:15px 14px;
    border-radius:16px;
    color:#1f3a2b;
  }
  .nav a:not(.btn):hover{background:#f4f9ef}
  .nav .btn{
    margin-top:8px;
    width:100%;
  }
  .stats,.grid-3,.why-visual-inner,.footer-form-grid{grid-template-columns:1fr}
  .showcase{min-height:446px}
  .app-card{right:10px;top:122px;transform:scale(.93);transform-origin:top right}
  .wave{right:98px;top:190px;width:180px}
  .dot.d1,.dot.d2,.dot.d3{left:176px}
  .terminal-wrap{transform:perspective(900px) rotateY(-18deg) rotateX(9deg) scale(.92)}
  .headline{font-size:44px}
  .lead{font-size:18px}
  .app-preview-card{padding:12px}
  .preview-body{display:block}
  .content-inner{padding:14px}
  .footer-left h2{font-size:42px}
  .footer-bottom-row{flex-direction:column;align-items:flex-start}
  .footer-nav{flex-wrap:wrap;gap:14px 22px}
  .footer-submit{width:100%}
}

    .reviews-section{padding:88px 0;background:#fff}
    .reviews-head{display:flex;align-items:end;justify-content:space-between;gap:20px;flex-wrap:wrap;margin-bottom:34px}
    .reviews-intro{max-width:760px}
    .reviews-controls{display:flex;gap:12px}
    .reviews-arrow{width:54px;height:54px;border:none;border-radius:50%;background:#f1f4ed;color:#1d2734;font-size:24px;font-weight:700;cursor:pointer;box-shadow:0 8px 18px rgba(0,0,0,.06);transition:.2s ease}
    .reviews-arrow:hover{background:#e6eddc;transform:translateY(-1px)}
    .reviews-slider{overflow:hidden}
    .reviews-track{display:flex;gap:24px;transition:transform .45s ease;align-items:stretch}
    .review-card{flex:0 0 calc((100% - 48px) / 3);min-width:calc((100% - 48px) / 3);background:#fbfcfa;border:1px solid rgba(0,0,0,.05);border-radius:32px;box-shadow:var(--shadow);padding:28px 26px 24px;display:flex;flex-direction:column;box-sizing:border-box}
    .review-stars{display:flex;gap:6px;margin-bottom:18px;color:var(--green-primary);font-size:20px;letter-spacing:.02em}
    .review-text{font-size:17px;line-height:1.85;color:#516175;margin:0;min-height:220px}
    .review-author{margin-top:auto;padding-top:18px;border-top:1px solid #e8ece5}
    .review-author strong{display:block;font-size:18px;color:#1d2734}
    .review-author span{display:block;margin-top:4px;font-size:14px;color:#7b8590}
    @media (max-width:1100px){.review-card{flex-basis:calc((100% - 24px) / 2);min-width:calc((100% - 24px) / 2)}.review-text{min-height:190px}}
    @media (max-width:760px){.reviews-section{padding:64px 0}.reviews-head{align-items:flex-start}.review-card{flex-basis:100%;min-width:100%}.review-text{min-height:auto}}

.integration-panel{
  margin-top:30px;
  border-radius:32px;
  background:#fbfcfa;
  border:1px solid rgba(0,0,0,.05);
  box-shadow:var(--shadow);
  padding:28px 26px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px 32px;
  align-items:center;
}
.integration-copy h3{
  margin:0;
  font-size:24px;
  line-height:1.35;
  color:#1d2734;
}
.integration-copy p{
  margin:12px 0 0;
  color:#55657a;
  font-size:16px;
  line-height:1.85;
  max-width:760px;
}
.integration-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-end;
}
.integration-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:18px;
  background:#fff;
  border:1px solid #e4eadf;
  box-shadow:0 8px 18px rgba(0,0,0,.04);
  font-size:15px;
  color:#22303f;
}
.integration-badge strong{font-size:14px}
.integration-icon{
  width:34px;
  height:34px;
  min-width:34px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(88,177,79,.12);
  color:var(--green-dark);
  font-size:13px;
  font-weight:800;
  letter-spacing:.01em;
}
.term-card-highlight{
  background:linear-gradient(180deg,#f1fbe7 0%, #e4f4d3 100%);
  border-color:rgba(88,177,79,.35);
  box-shadow:0 18px 42px rgba(88,177,79,.18);
}
.term-card-highlight h3{color:#21412f}
.term-card-highlight .icon-wrap{transform:scale(1.04)}
.review-stars{font-size:22px}
.review-author strong{font-size:17px; line-height:1.45}
.footer-left h2{margin-bottom:28px}

@media (max-width:1100px){
  .integration-panel{grid-template-columns:1fr}
  .integration-badges{justify-content:flex-start}
}
@media (max-width:760px){
  .integration-panel{padding:24px 20px}
  .integration-badge{width:100%; justify-content:flex-start}
}



.logo-mojehodiny{
  width: 280px;
  max-width:48vw;
  /*filter:brightness(0) saturate(100%);*/
}
.nav .btn{padding:13px 20px}
.trial-highlight{
  display:grid;
  gap:8px;
  margin-top:24px;
  padding:18px 20px;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  border-radius:24px;
  background:linear-gradient(132deg,#ffffff 0%,#f8fff1 100%);
  border:1px solid #dbe7d5;
  box-shadow:0 18px 34px rgba(27,53,35,.10);
  max-width:620px;
  color:#1f3a2b;
  animation:none;
}
.trial-highlight::before,
.trial-highlight::after{
  content:none;
}
.trial-highlight > *{position:relative;z-index:1}
.trial-highlight strong{
  font-size:18px;
  line-height:1.4;
  animation:none;
}
.trial-highlight span:last-child{font-size:15px;line-height:1.6;color:#46614f}
.trial-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  padding:8px 14px;
  border-radius:999px;
  background:#ff9b3d;
  color:#fff;
  font-size:16px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  box-shadow:0 8px 20px rgba(255,104,0,.24);
  animation:trialBadgePulse 1.9s ease-in-out infinite;
}
.badge-icon{
  font-size:15px;
  line-height:1;
  transform-origin:50% 80%;
  filter:none;
  animation:none;
}
@keyframes trialFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-4px)}
}
@keyframes trialSweep{
  0%,20%{transform:translateX(-120%)}
  46%,100%{transform:translateX(120%)}
}
@keyframes trialGlow{
  0%,100%{opacity:.45;transform:scale(.92)}
  50%{opacity:1;transform:scale(1.12)}
}
@keyframes trialBadgePulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.06)}
}
@keyframes trialHeadlinePulse{
  0%,100%{color:#1f3a2b}
  50%{color:#2d5a20}
}
@keyframes flameFlicker{
  0%,100%{transform:rotate(-7deg) scale(1)}
  35%{transform:rotate(6deg) scale(1.22)}
  70%{transform:rotate(-3deg) scale(1.06)}
}
@media (prefers-reduced-motion: reduce){
  .trial-highlight,
  .trial-highlight::before,
  .trial-highlight::after,
  .trial-highlight strong,
  .trial-badge,
  .badge-icon{
    animation:none !important;
  }
}
.export-card{
  position:absolute;
  right:42px;
  bottom:112px;
  z-index:4;
  width:210px;
  padding:16px 16px 14px;
  border-radius:24px;
  background:rgba(255,255,255,.96);
  border:1px solid rgba(255,255,255,.88);
  box-shadow:0 20px 34px rgba(0,0,0,.16);
  animation:exportReveal var(--flow-cycle) ease-in-out infinite;
}
.export-card-head{
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  color:#6b7885;
  text-transform:uppercase;
}
.export-lines{display:grid;gap:8px;margin-top:12px}
.export-lines span{
  display:block;
  height:10px;
  border-radius:999px;
  background:#dce3ea;
}
.export-lines span:nth-child(1){width:84%}
.export-lines span:nth-child(2){width:62%}
.export-lines span:nth-child(3){width:92%}
.export-pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(88,177,79,.12);
  color:#356b2c;
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
}
.export-pill-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-top:12px;
}
.export-pohoda-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:66px;
  min-width:66px;
  height:30px;
  border-radius:8px;
  background:#fff;
  border:1px solid #e2e9de;
  padding:4px 6px;
}
.export-pohoda-logo img{max-height:18px;width:auto}
@keyframes exportReveal{
  0%,50%{opacity:0;transform:translateY(16px) scale(.96)}
  51%,62.5%{opacity:1;transform:translateY(0) scale(1)}
  63.5%,100%{opacity:0;transform:translateY(8px) scale(.98)}
}
.status-pill-secondary{
  left:168px;
  top:120px;
  animation:statusStepTwo var(--flow-cycle) ease-in-out infinite;
}
@keyframes statusStepTwo{
  0%,25%{opacity:0}
  26%,37.5%{opacity:1}
  38.5%,100%{opacity:0}
}
.status-pill-tertiary{
  left:auto;
  right:36px;
  top:auto;
  bottom:72px;
  max-width:none;
  text-align:center;
  white-space:nowrap;
  animation:statusStepThree var(--flow-cycle) ease-in-out infinite;
}
@keyframes statusStepThree{
  0%,50%{opacity:0}
  51%,62.5%{opacity:1}
  63.5%,100%{opacity:0}
}
.status-pill-quaternary{
  left:auto;
  right:36px;
  top:auto;
  bottom:72px;
  max-width:none;
  text-align:center;
  white-space:nowrap;
  animation:statusStepFour var(--flow-cycle) ease-in-out infinite;
}
@keyframes statusStepFour{
  0%,75%{opacity:0}
  76%,87.5%{opacity:1}
  88.5%,100%{opacity:0}
}
.status-done-icon{
  margin-right:6px;
  color:#4e9f3a;
  font-size:12px;
}
.demo-card{padding:0}
.demo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:center;
}
.demo-copy{padding:34px 10px 34px 34px}
.demo-video-placeholder{padding:28px 28px 28px 0}
.demo-points{display:grid;gap:12px;margin:24px 0 28px}
.demo-point{
  padding:14px 16px;
  border-radius:18px;
  background:#f5f8f2;
  border:1px solid #e4eadf;
  color:#32445a;
  font-weight:700;
}
.video-window{
  min-height:360px;
  border-radius:30px;
  background:linear-gradient(135deg,#1e3134,#2f4c57);
  padding:22px;
  color:#fff;
  box-shadow:0 22px 42px rgba(0,0,0,.14);
  position:relative;
  overflow:hidden;
}
.video-window:before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(214,243,106,.12);
  right:-40px;
  top:-40px;
}
.video-top{display:flex;gap:8px}
.video-top span{
  width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.55);
}
.video-play{
  width:92px;
  height:92px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:78px auto 18px;
  font-size:34px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(4px);
}
.video-window strong{
  display:block;
  text-align:center;
  font-size:24px;
}
.video-window p{
  max-width:440px;
  margin:16px auto 0;
  text-align:center;
  line-height:1.8;
  color:rgba(255,255,255,.85);
}
.section-intro-tight{margin-top:8px}
.brand-logo{
  width:168px;
  height:54px;
  border-radius:16px;
  background:#fff;
  border:1px solid #e4eadf;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
  align-items:center;
}
.brand-logo span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:100%;
  font-weight:800;
  letter-spacing:.08em;
}
.brand-logo-jablotron img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:8px 14px;
}
.terminal-photo-illus,.custom-tech-illus{width:auto;height:auto}
.terminal-photo{
  width:58px;
  height:88px;
  border-radius:16px;
  background:linear-gradient(180deg,#3a677e,#1e3e51);
  position:relative;
  box-shadow:0 18px 28px rgba(0,0,0,.16);
}
.terminal-photo:before{
  content:"";
  position:absolute;
  left:9px;right:9px;top:12px;
  height:24px;
  border-radius:10px;
  background:#bde36e;
}
.terminal-photo:after{
  content:"";
  position:absolute;
  left:20px;bottom:12px;
  width:18px;height:18px;border-radius:50%;
  background:#8dc63f;
  box-shadow:0 0 0 8px rgba(141,198,63,.12);
}
.gear-icon{
  width:58px;height:58px;border-radius:18px;
  background:linear-gradient(135deg,#204a5d,#58b14f);
  position:relative;
  box-shadow:0 18px 28px rgba(0,0,0,.12);
}
.gear-icon:before,.gear-icon:after{
  content:"";
  position:absolute;
  border-radius:50%;
  border:3px solid #fff;
}
.gear-icon:before{width:22px;height:22px;left:18px;top:18px}
.gear-icon:after{width:10px;height:10px;right:8px;top:8px;opacity:.7}
.nfc-icon,
.hw-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:#fff;
  border:1px solid #dce6d7;
  box-shadow:0 12px 22px rgba(0,0,0,.10);
  background-repeat:no-repeat;
  background-position:center;
  background-size:40px 40px;
}
.nfc-icon{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%232f6138' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16h20a6 6 0 0 1 6 6v20a6 6 0 0 1-6 6H22a6 6 0 0 1-6-6V22a6 6 0 0 1 6-6z'/%3E%3Cpath d='M28 24v16M36 24v16M22 32h20'/%3E%3Cpath d='M52 22c4 4 4 16 0 20M56 18c6 6 6 24 0 28'/%3E%3C/g%3E%3C/svg%3E");
}
.hw-icon{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%232f6138' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='14' width='44' height='28' rx='4'/%3E%3Cpath d='M16 24h10M16 30h12M38 24h10M40 30h8'/%3E%3Cpath d='M22 46h20M20 50h24'/%3E%3Ccircle cx='50' cy='46' r='4'/%3E%3C/g%3E%3C/svg%3E");
}
.integration-cards .feature-card{background:#fff}
.integration-card h3{margin-top:18px}
.integration-viewport{
  margin:0 24px;
  overflow:hidden;
  min-height:92px;
}

.integration-logos{
  display:flex;
  flex-wrap:nowrap;
  gap:10px;
  min-height:92px;
  align-items:center;
  width:max-content;
  will-change:transform;
}

.integration-card{
  overflow:hidden;
}

.integration-logos.marquee-ready{
  animation:logosMarquee 22s linear infinite;
}

@keyframes logosMarquee{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}

@media (prefers-reduced-motion: reduce){
  .integration-logos{animation:none}
}
.app-logo{
  width: 98px;
  display: inline-flex;
  flex:0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-sizing: border-box;
  border-radius: 14px;
  background: #fff;
}

.app-logo img{
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.app-logo-pohoda{color:#0d8f4d}
.app-logo-pamica{color:#3f7d1d}
.app-logo-money{color:#d84848}
.app-logo-vema{color:#2e5db0}
.app-logo-k2{color:#d32f2f}
.app-logo-qi{color:#3c8d3f}
.app-logo-helios{color:#f18f01}
.app-logo-abra{color:#4b4cc2}
.app-logo-mes{color:#204a5d}
.app-logo-powerbi{color:#cc8b00}
.app-logo-ai{color:#5a2ea6}
.app-logo-mes,
.app-logo-powerbi,
.app-logo-ai{width:82px;padding:6px}
.app-logo-mes img,
.app-logo-powerbi img,
.app-logo-ai img{max-height:36px}
.app-logo-service{
  width:112px;
  padding:4px;
  background:#fff;
  border:1px solid #e6ece1;
}
.app-logo-service-wide{
  width:132px;
}
.app-logo-service img{
  width:100%;
  height:auto;
  object-fit:contain;
}
.integration-card h3{min-height:62px}
.production-icons{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:12px 0 8px;
  min-height:74px;
  align-content:flex-start;
}
.production-icon{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid #d8e6d2;
  background:#f5faef;
  color:#2f5f3c;
  font-size:12px;
  font-weight:700;
  letter-spacing:.01em;
}
.production-icon i{
  width:16px;
  height:16px;
  min-width:16px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:16px 16px;
  display:inline-block;
}
.production-icon-plan i{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%233f7a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='17' rx='2'/%3E%3Cpath d='M8 2v4M16 2v4M3 9h18M8 13l2 2 5-5'/%3E%3C/g%3E%3C/svg%3E");
}
.production-icon-org i{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%233f7a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='3' width='4' height='4' rx='1'/%3E%3Crect x='4' y='17' width='4' height='4' rx='1'/%3E%3Crect x='10' y='17' width='4' height='4' rx='1'/%3E%3Crect x='16' y='17' width='4' height='4' rx='1'/%3E%3Cpath d='M12 7v5M6 17v-3h12v3'/%3E%3C/g%3E%3C/svg%3E");
}
.production-icon-track i{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%233f7a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='12' rx='2'/%3E%3Cpath d='M7 12l3-3 2 2 3-3 2 2M10 20h4'/%3E%3C/g%3E%3C/svg%3E");
}
.production-icon-payroll i{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%233f7a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='3' width='16' height='18' rx='2'/%3E%3Cpath d='M8 8h8M8 12h8M8 16h5'/%3E%3C/g%3E%3C/svg%3E");
}
.production-icon-hr i{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%233f7a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3Ccircle cx='16' cy='8' r='3'/%3E%3Cpath d='M3 19c1-3 3-5 5-5s4 2 5 5M11 19c1-3 3-5 5-5s4 2 5 5'/%3E%3C/g%3E%3C/svg%3E");
}
.production-icon-accounting i{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%233f7a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpath d='M8 9h8M8 13h8M8 17h5'/%3E%3C/g%3E%3C/svg%3E");
}
.production-icon-erp i{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%233f7a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='6' rx='1.5'/%3E%3Crect x='3' y='14' width='8' height='6' rx='1.5'/%3E%3Crect x='13' y='14' width='8' height='6' rx='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
.production-icon-orders i{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%233f7a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 7h16v12H4zM4 7l8 6 8-6'/%3E%3C/g%3E%3C/svg%3E");
}
.production-icon-warehouse i{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%233f7a4a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 10l9-6 9 6v10H3z'/%3E%3Cpath d='M8 14h8M8 18h8'/%3E%3C/g%3E%3C/svg%3E");
}
.footer-icon-person{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cg fill='none' stroke='%2360b14f' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='20' cy='13' r='5'/%3E%3Cpath d='M10 32c1.7-5.5 6-8 10-8s8.3 2.5 10 8'/%3E%3C/g%3E%3C/svg%3E")}
.agree a{text-decoration:underline;text-underline-offset:3px}
.form-note{
  margin:14px 0 0;
  font-size:13px;
  line-height:1.6;
  color:#4d5e73;
}
.footer-bottom-row-links{
  align-items:flex-start;
}
.footer-links-block strong{
  display:block;
  margin-bottom:16px;
  font-size:18px;
}
.service-backlinks{
  display:grid;
  grid-template-columns:repeat(3,minmax(210px,1fr));
  gap:14px;
}
.service-logo-mojehodiny{
  filter:brightness(0) saturate(100%);
}
.service-link{
  display:flex;
  align-items:center;
  gap:14px;
  min-height:66px;
  padding:14px 16px;
  border-radius:18px;
  background:#fff;
  border:1px solid #dfe6d7;
  box-shadow:0 8px 16px rgba(0,0,0,.04);
}
.service-link:hover{transform:translateY(-1px)}
.service-link-placeholder{opacity:.72}
.service-logo{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:58px;
  height:38px;
  padding:0 10px;
  border-radius:12px;
  font-weight:800;
  color:#fff;
}
.service-logo-loxone{background:#58b14f}
.service-logo-mm{background:#204a5d}
.service-logo-more{background:#96a79c}
.footer-brand-right{margin-left:auto}
.footer-brand-right{
  display:flex;
  align-items:center;
  gap:18px;
}
@media (max-width:1100px){
  .demo-grid{grid-template-columns:1fr}
  .demo-copy{padding:30px 24px 0}
  .demo-video-placeholder{padding:0 24px 24px}
  .service-backlinks{grid-template-columns:1fr}
}
@media (max-width:760px){
  .logo-mojehodiny{max-width:64vw}
  .trial-highlight strong{font-size:17px}
  .stat-title{font-size:20px}
  .export-card{right:10px;bottom:116px;transform:scale(.9)}
  .status-pill{left:16px;top:198px;font-size:13px}
  .status-pill-secondary{left:98px;top:116px}
  .status-pill-tertiary,
  .status-pill-quaternary{
    right:12px;
    bottom:72px;
    left:auto;
    top:auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    min-width:0;
    max-width:132px;
    white-space:normal;
    text-align:center;
    line-height:1.2;
    font-size:9px;
    padding:4px 6px;
    border-radius:10px;
  }
  .video-window{min-height:300px}
  .service-link{min-height:auto}
  .toast{
    left:16px;
    right:16px;
    bottom:16px;
    max-width:none;
  }
}
