:root {
  --blue: #0757ff;
  --blue-dark: #003bd7;
  --blue-ink: #061334;
  --cyan: #37cfff;
  --green: #18bf62;
  --text: #050817;
  --muted: #4a536b;
  --line: #d9e5ff;
  --card: #ffffff;
  --shadow: 0 26px 70px rgba(7, 52, 160, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 96% 7%, rgba(35, 142, 255, 0.28), transparent 260px),
    radial-gradient(circle at 39% 54%, rgba(7, 87, 255, 0.16), transparent 220px),
    linear-gradient(180deg, #fff 0%, #fff 70%, #f7faff 100%);
  font-family: "Inter", Arial, sans-serif;
}

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

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.topbar {
  position: relative;
  z-index: 10;
  width: min(100% - 64px, 1760px);
  height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 440px 1fr 220px;
  align-items: center;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-f {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.75rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  background: linear-gradient(140deg, var(--cyan), var(--blue) 55%, #5c35ff);
  clip-path: polygon(0 0, 100% 0, 78% 25%, 30% 25%, 30% 43%, 70% 43%, 51% 65%, 30% 65%, 30% 100%, 0 100%);
}

.brand-text strong,
.brand-text small {
  display: block;
  letter-spacing: 0.23em;
}

.brand-text strong {
  font-size: 2.5rem;
  line-height: 0.86;
  font-weight: 900;
}

.brand-text small {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-caption {
  padding-left: 18px;
  border-left: 1px solid #dce4f5;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.15;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  font-weight: 800;
}

.nav a {
  position: relative;
  padding: 34px 0 30px;
}

.nav a.active,
.nav a:hover {
  color: var(--blue);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  bottom: 16px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.top-cta,
.btn,
.strip-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.top-cta {
  justify-self: end;
  min-height: 56px;
  padding: 0 28px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 18px 34px rgba(7, 87, 255, 0.26);
}

.top-cta svg,
.strip-cta svg {
  font-size: 1.25rem;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 7px auto;
  background: var(--text);
}

.page-shell {
  width: min(100% - 54px, 1760px);
  margin: 0 auto 24px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 660px minmax(0, 1fr);
  min-height: 640px;
  gap: 18px;
}

.copy-col {
  position: relative;
  z-index: 3;
  padding-top: 52px;
}

.badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 34px;
  padding: 8px 14px;
  color: var(--blue);
  background: #e9f1ff;
  border-radius: 999px;
  font-weight: 900;
}

.badge svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  fill: currentColor;
  stroke: none;
}

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

h1 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(3.65rem, 4.25vw, 5.5rem);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 900;
}

h1 span {
  position: relative;
  display: inline-block;
  color: var(--blue);
  font-family: "Pacifico", cursive;
  font-weight: 400;
  line-height: 0.86;
}

h1 span::after {
  content: "";
  position: absolute;
  left: 4px;
  right: -6px;
  bottom: -8px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue);
}

.lead {
  max-width: 620px;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 1.23rem;
  line-height: 1.55;
}

.lead-strong {
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 1.16rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.btn {
  min-height: 62px;
  padding: 0 30px;
  font-size: 1rem;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 18px 38px rgba(7, 87, 255, 0.25);
}

.btn.primary span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #fff;
  border-radius: 50%;
}

.btn.video {
  min-width: 168px;
  color: var(--blue);
  background: #fff;
  border: 1px solid #9fbbff;
}

.btn.video span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.78rem;
}

.btn.video svg {
  fill: currentColor;
  stroke: none;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(96px, 1fr));
  gap: 18px;
  margin-top: 56px;
}

.trust-row article {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 46px;
}

.trust-row svg {
  width: 31px;
  height: 31px;
  color: var(--blue);
  flex: 0 0 auto;
}

.trust-row b,
.trust-row span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.08;
}

.trust-row span {
  color: var(--blue);
  font-weight: 800;
}

.visual-col {
  position: relative;
  min-height: 640px;
}

.dot-field {
  position: absolute;
  left: -90px;
  top: 190px;
  width: 150px;
  height: 150px;
  opacity: 0.55;
  background-image: radial-gradient(var(--blue) 2px, transparent 2px);
  background-size: 17px 17px;
}

.blue-ring {
  position: absolute;
  left: -130px;
  bottom: 10px;
  width: 270px;
  height: 270px;
  border: 26px solid rgba(7, 128, 255, 0.14);
  border-radius: 50%;
}

.plant {
  position: absolute;
  right: 0;
  top: 170px;
  width: 88px;
  height: 220px;
  opacity: 0.74;
}

.plant::after {
  content: "";
  position: absolute;
  left: 52px;
  top: 24px;
  width: 6px;
  height: 180px;
  border-radius: 999px;
  background: linear-gradient(#77c94c, #257d42);
}

.plant i {
  position: absolute;
  width: 68px;
  height: 36px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #96dc42, #2d9a46);
  transform-origin: left center;
}

.plant i:nth-child(1) { left: 50px; top: 40px; transform: rotate(-22deg); }
.plant i:nth-child(2) { left: 8px; top: 76px; transform: scaleX(-1) rotate(-24deg); }
.plant i:nth-child(3) { left: 44px; top: 114px; transform: rotate(-12deg); }
.plant i:nth-child(4) { left: 8px; top: 148px; transform: scaleX(-1) rotate(-16deg); }

.laptop {
  position: absolute;
  top: 22px;
  right: 46px;
  width: min(940px, calc(100vw - 650px));
  filter: drop-shadow(0 30px 38px rgba(9, 18, 40, 0.23));
}

.laptop-screen {
  height: 610px;
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  border: 14px solid #0d0f15;
  border-radius: 22px;
  background: #fff;
}

.laptop-base {
  width: 92%;
  height: 30px;
  margin: 0 auto;
  border-radius: 0 0 42px 42px;
  background: linear-gradient(180deg, #3a3d44, #111318);
  box-shadow: inset 0 7px 12px rgba(255, 255, 255, 0.08);
}

.app-sidebar {
  padding: 28px 18px;
  color: #fff;
  background: linear-gradient(180deg, #081638, #020817);
}

.mini-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  font-size: 1.28rem;
}

.mini-logo span {
  width: 23px;
  height: 23px;
  display: inline-block;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 75% 28%, 35% 28%, 35% 45%, 72% 45%, 52% 66%, 35% 66%, 35% 100%, 0 100%);
}

.mini-logo small {
  font-size: 0.6rem;
}

.app-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin: 3px 0;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 700;
}

.app-sidebar a.selected {
  background: var(--blue);
}

.app-sidebar svg {
  width: 15px;
  height: 15px;
}

.app-main {
  min-width: 0;
  padding: 18px 20px;
  background: #f8fbff;
}

.app-header {
  display: grid;
  grid-template-columns: 1fr auto 132px;
  align-items: center;
  gap: 14px;
  height: 38px;
  margin-bottom: 18px;
}

.search {
  height: 36px;
  padding: 10px 14px;
  border: 1px solid #dce6f8;
  border-radius: 8px;
  color: #7e8ba7;
  background: #fff;
  font-size: 0.76rem;
}

.app-icons {
  display: flex;
  gap: 10px;
}

.app-icons span {
  width: 18px;
  height: 18px;
  border: 2px solid #174087;
  border-radius: 50%;
}

.user {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 8px;
  align-items: center;
  color: #16305f;
}

.user i {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #20c6aa, #0e6099);
}

.user b {
  font-size: 0.72rem;
}

.user small {
  color: #4c5e80;
  font-size: 0.65rem;
}

.app-main h2 {
  margin-bottom: 14px;
  font-size: 1.55rem;
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.kpis article,
.card {
  position: relative;
  border: 1px solid #dfe8f9;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(26, 55, 104, 0.05);
}

.kpis article {
  min-height: 90px;
  padding: 15px 48px 13px 14px;
}

.kpis small,
.kpis strong,
.kpis em {
  display: block;
}

.kpis small {
  margin-bottom: 8px;
  color: #445574;
  font-size: 0.7rem;
  font-weight: 800;
}

.kpis strong {
  color: #0d1731;
  font-size: 1.16rem;
}

.kpis em {
  margin-top: 4px;
  color: #00a85a;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
}

.kpis i {
  position: absolute;
  right: 12px;
  top: 31px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eaf1ff;
  border-radius: 50%;
}

.dash-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 14px;
}

.card {
  min-height: 132px;
  padding: 14px;
}

.card h3 {
  margin-bottom: 10px;
  color: #102758;
  font-size: 0.86rem;
}

.chart-bg {
  position: relative;
  height: 88px;
  border-bottom: 1px solid #d5def0;
  background: repeating-linear-gradient(to bottom, transparent 0 20px, #edf3fb 21px);
}

.line {
  position: absolute;
  left: 7%;
  right: 4%;
  top: 7%;
  height: 75%;
  clip-path: polygon(0 88%, 15% 65%, 30% 62%, 47% 22%, 64% 46%, 81% 24%, 100% 4%, 100% 12%, 81% 32%, 64% 54%, 47% 30%, 30% 70%, 15% 73%, 0 96%);
  background: var(--blue);
}

.chart-bg span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--blue);
}

.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-top: 6px;
  color: #697899;
  font-size: 0.65rem;
}

.category-body {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 10px;
}

.donut {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 0 42%, #00aeb3 42% 61%, #22a85f 61% 75%, #ff9c24 75% 88%, #c51d56 88% 100%);
}

.donut::after {
  content: "";
  display: block;
  width: 44px;
  height: 44px;
  margin: 25px;
  border-radius: 50%;
  background: #fff;
}

.category-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #22304d;
  font-size: 0.69rem;
  font-weight: 700;
}

.category-card li {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 8px 0;
}

.category-card li span {
  margin-left: auto;
}

.category-card b {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.category-card li:nth-child(2) b { background: #00aeb3; }
.category-card li:nth-child(3) b { background: #22a85f; }
.category-card li:nth-child(4) b { background: #ff9c24; }
.category-card li:nth-child(5) b { background: #c51d56; }

.card a {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  text-align: right;
}

.products-card p,
.cash-card p {
  display: grid;
  grid-template-columns: 1fr 48px 88px;
  gap: 8px;
  margin: 8px 0;
  color: #15213d;
  font-size: 0.71rem;
}

.products-card strong,
.cash-card strong {
  text-align: right;
}

.cash-card p {
  grid-template-columns: 1fr 68px 88px;
}

.cash-card b {
  padding: 3px 8px;
  color: #008a50;
  background: #d9f8e9;
  border-radius: 999px;
  text-align: center;
}

.cash-card b.closed {
  color: #d43c43;
  background: #ffe1e5;
}

.phone {
  position: absolute;
  right: 0;
  bottom: 16px;
  z-index: 4;
  width: 214px;
  min-height: 410px;
  padding: 38px 15px 16px;
  border: 10px solid #101217;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #f7faff);
  box-shadow: 0 24px 50px rgba(6, 17, 38, 0.25);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 75px;
  height: 17px;
  transform: translateX(-50%);
  border-radius: 0 0 14px 14px;
  background: #101217;
}

.phone h3 {
  margin-bottom: 12px;
  font-size: 0.78rem;
}

.phone-search {
  margin-bottom: 12px;
  padding: 9px;
  border: 1px solid #dfe8f8;
  border-radius: 7px;
  color: #7d89a4;
  font-size: 0.68rem;
}

.phone p {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 7px;
  margin: 9px 0;
  color: #18233d;
  font-size: 0.65rem;
}

.phone em {
  font-style: normal;
  color: #66728e;
}

.phone-totals {
  display: grid;
  gap: 7px;
  margin: 20px 0 14px;
  font-size: 0.72rem;
}

.phone-totals span,
.phone-totals strong {
  display: flex;
  justify-content: space-between;
}

.phone-totals strong {
  align-items: center;
  font-size: 0.88rem;
}

.phone-totals strong b {
  font-size: 1.2rem;
}

.phone button {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.printer {
  position: absolute;
  right: 226px;
  bottom: 42px;
  z-index: 3;
  width: 162px;
  height: 130px;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, #111318 0 40%, #2c2f37 40% 58%, transparent 58%);
  box-shadow: 0 18px 44px rgba(8, 18, 42, 0.25);
}

.printer div {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 62px;
  height: 8px;
  border-radius: 999px;
  background: #030407;
}

.printer paper {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 68px;
  min-height: 84px;
  display: grid;
  gap: 4px;
  padding: 10px;
  color: #111;
  background: #fff;
  font-size: 0.58rem;
  text-align: center;
}

.printer strong {
  font-size: 0.66rem;
}

.sectors {
  position: relative;
  z-index: 5;
  max-width: 930px;
  margin: -8px 0 0;
  text-align: center;
}

.sectors h2 {
  margin-bottom: 22px;
  font-size: clamp(1.8rem, 2.25vw, 2.35rem);
  font-weight: 900;
}

.sectors h2 span,
.feature-panel h2 span {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sector-grid article {
  min-height: 212px;
  padding: 18px 16px;
  border: 1px solid #bdd1ff;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(245, 250, 255, 0.96), #fff);
}

.sector-grid article:nth-child(2) { border-color: #bcecdf; }
.sector-grid article:nth-child(3) { border-color: #ffd9b8; }
.sector-grid article:nth-child(4) { border-color: #d8c2ff; }

.sector-illustration {
  position: relative;
  width: 120px;
  height: 86px;
  margin: 0 auto 12px;
}

.clinic span,
.shop span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 55px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #65d6ff, #0b64d8);
  box-shadow: inset 0 -16px rgba(255, 255, 255, 0.2);
}

.clinic span::before {
  content: "+";
  position: absolute;
  left: 50%;
  top: -22px;
  width: 42px;
  height: 42px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(180deg, #46df8a, #14a95c);
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 8px 16px rgba(20, 169, 92, 0.25);
}

.clinic i,
.shop i {
  position: absolute;
  left: 28px;
  bottom: 12px;
  width: 18px;
  height: 28px;
  background: #062b77;
  border-radius: 3px 3px 0 0;
}

.clinic b,
.shop b {
  position: absolute;
  right: 28px;
  bottom: 14px;
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  background: #a7ecff;
}

.shop span {
  background: linear-gradient(180deg, #ffefe2 0 28%, #14a6de 28% 100%);
}

.shop span::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -20px;
  height: 28px;
  border-radius: 8px 8px 4px 4px;
  background: repeating-linear-gradient(90deg, #ff6734 0 22px, #ffd8bd 22px 44px);
}

.shop span::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: 0;
  width: 28px;
  height: 20px;
  border-radius: 3px;
  background: #ff7a2f;
}

.tools span {
  position: absolute;
  left: 21px;
  top: 6px;
  width: 22px;
  height: 80px;
  border-radius: 12px;
  background: linear-gradient(180deg, #e52424 0 42%, #ffb03d 42% 100%);
  transform: rotate(-42deg);
}

.tools i {
  position: absolute;
  right: 25px;
  top: 10px;
  width: 26px;
  height: 74px;
  border-radius: 12px 12px 4px 4px;
  background: #2f5b8f;
  transform: rotate(38deg);
}

.tools i::before {
  content: "";
  position: absolute;
  left: -13px;
  top: -10px;
  width: 45px;
  height: 24px;
  border-radius: 20px 20px 4px 4px;
  background: #5e7da1;
}

.cart {
  display: grid;
  place-items: center;
}

.cart svg {
  width: 92px;
  height: 72px;
  color: #ff6f39;
  stroke-width: 1.7;
  filter: drop-shadow(0 10px 12px rgba(111, 77, 255, 0.18));
}

.sector-grid h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.sector-grid p {
  margin-bottom: 0;
  color: #142039;
  line-height: 1.35;
}

.feature-wrap {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: flex-end;
  margin-top: -260px;
  pointer-events: none;
}

.feature-panel {
  width: min(780px, 100%);
  padding: 30px 36px;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 218, 255, 0.58), transparent 28%),
    linear-gradient(135deg, #064ff0 0%, #062a8a 48%, #061843 100%);
  box-shadow: 0 28px 60px rgba(0, 49, 160, 0.25);
  pointer-events: auto;
}

.feature-panel h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 1.55rem;
}

.feature-panel h2 > svg {
  width: 32px;
  height: 32px;
  padding: 6px;
  color: #fff;
  background: linear-gradient(135deg, #69f1a2, #18bf62);
  border-radius: 50%;
}

.feature-panel h2 span {
  color: #fff;
  text-decoration-color: #fff;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 32px;
}

.feature-grid article {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-grid i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #073372;
  background: linear-gradient(135deg, #7bf7ad, #18bf62);
  border-radius: 8px;
}

.feature-grid h3 {
  margin-bottom: 3px;
  font-size: 1rem;
}

.feature-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.control-badge {
  position: absolute;
  right: 18px;
  top: -13px;
  width: 230px;
  min-height: 92px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  padding: 16px 22px;
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, #20c85e, #0daa59);
  box-shadow: 0 18px 42px rgba(12, 180, 82, 0.33);
}

.control-badge i {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #0fa956;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.18);
}

.control-badge strong {
  font-size: 1.65rem;
  line-height: 1;
}

.control-badge span {
  line-height: 1.08;
}

.bottom-strip {
  position: relative;
  z-index: 7;
  min-height: 130px;
  display: grid;
  grid-template-columns: 1.65fr repeat(4, 1fr) 1.7fr;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 20px 28px;
  color: #fff;
  border-radius: 20px;
  background: linear-gradient(110deg, #0054ff 0%, #063ced 48%, #802cff 100%);
}

.strip-title,
.bottom-strip article {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.strip-title > svg {
  width: 56px;
  height: 56px;
}

.strip-title h2 {
  margin-bottom: 4px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.strip-title p,
.bottom-strip article span {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.bottom-strip article {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 10px;
  align-content: center;
}

.bottom-strip article svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  color: #8effbd;
}

.bottom-strip article strong {
  font-size: 1.24rem;
  line-height: 1.05;
}

.bottom-strip article span {
  font-size: 0.82rem;
}

.strip-cta {
  min-height: 100px;
  padding: 18px 28px;
  color: #101522;
  background: #fff;
  border-radius: 15px;
}

.strip-cta h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.strip-cta a {
  width: 100%;
  min-height: 42px;
  color: #fff;
  background: var(--blue);
}

@media (max-width: 1460px) {
  .topbar {
    grid-template-columns: 360px 1fr 190px;
    gap: 16px;
  }

  .brand-text strong {
    font-size: 2rem;
  }

  .brand-text small {
    font-size: 0.86rem;
  }

  .nav {
    gap: 26px;
  }

  .hero {
    grid-template-columns: 545px minmax(0, 1fr);
  }

  .laptop {
    width: min(820px, calc(100vw - 540px));
    right: 28px;
  }

  .laptop-screen {
    height: 560px;
    grid-template-columns: 168px 1fr;
  }

  .app-sidebar a {
    font-size: 0.7rem;
  }

  .kpis strong {
    font-size: 0.94rem;
  }

  .phone {
    width: 190px;
  }

  .printer {
    right: 198px;
  }

  .sectors {
    max-width: 740px;
  }

  .feature-panel {
    width: min(700px, 100%);
  }
}

@media (max-width: 1180px) {
  .topbar {
    grid-template-columns: 1fr auto;
    width: min(100% - 28px, 900px);
  }

  .nav,
  .top-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .nav.is-open {
    position: absolute;
    top: 82px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.is-open a {
    padding: 14px 16px;
  }

  .page-shell {
    width: min(100% - 28px, 900px);
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .visual-col {
    min-height: 520px;
  }

  .laptop {
    position: relative;
    top: 0;
    right: auto;
    width: 100%;
  }

  .phone {
    right: -4px;
  }

  .printer {
    right: 190px;
  }

  .sectors {
    max-width: none;
    margin-top: 30px;
  }

  .feature-wrap {
    margin-top: 30px;
    justify-content: center;
  }

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

  .strip-title,
  .bottom-strip article {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .brand-f {
    width: 50px;
    height: 50px;
    font-size: 2.1rem;
  }

  .brand-text strong {
    font-size: 1.55rem;
  }

  .brand-text small {
    font-size: 0.68rem;
  }

  .brand-caption {
    display: none;
  }

  .copy-col {
    padding-top: 28px;
  }

  h1 {
    font-size: clamp(2.75rem, 12vw, 4.2rem);
  }

  .lead {
    font-size: 1.03rem;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 34px;
  }

  .trust-row article {
    align-items: flex-start;
  }

  .visual-col {
    min-height: auto;
  }

  .dot-field,
  .blue-ring,
  .plant,
  .phone,
  .printer {
    display: none;
  }

  .laptop-screen {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    border-width: 9px;
    border-radius: 18px;
  }

  .app-sidebar {
    display: none;
  }

  .app-main {
    padding: 14px 12px;
  }

  .app-header {
    grid-template-columns: 1fr auto;
  }

  .app-icons,
  .user {
    display: none;
  }

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

  .kpis article {
    min-height: 78px;
    padding: 12px;
  }

  .kpis i,
  .dash-grid {
    display: none;
  }

  .sector-grid,
  .feature-grid,
  .bottom-strip {
    grid-template-columns: 1fr;
  }

  .sector-grid article {
    min-height: auto;
  }

  .feature-panel {
    width: 100%;
    max-width: 100%;
    padding: 26px 20px;
  }

  .feature-wrap {
    display: block;
  }

  .feature-panel h2 {
    align-items: flex-start;
    font-size: 1.32rem;
  }

  .control-badge {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin-top: 14px;
  }

  .bottom-strip {
    padding: 20px;
  }
}

@media (max-width: 430px) {
  .topbar {
    height: 78px;
  }

  .badge {
    font-size: 0.84rem;
  }

  h1 {
    font-size: 2.65rem;
  }

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