:root {
  --bg: #eef3ee;
  --bg-soft: #f7faf7;
  --surface: #ffffff;
  --surface-2: #f0f6f0;
  --text: #163126;
  --muted: #597066;
  --line: #d5e2d7;
  --primary: #4b8b56;
  --primary-dark: #2c5f3a;
  --accent: #173f2d;
  --accent-soft: linear-gradient(135deg, #2d6e44 0%, #143525 100%);
  --shadow: 0 18px 60px rgba(18, 55, 34, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(75, 139, 86, 0.12), transparent 28%),
    linear-gradient(180deg, #f9fcf9 0%, var(--bg) 100%);
  color: var(--text);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(247, 250, 247, 0.78);
  border-bottom: 1px solid rgba(213, 226, 215, 0.8);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero {
  padding: 72px 0 48px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(75, 139, 86, 0.12);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; line-height: 1.08; }
h1 { 
  margin-top: 18px; 
  font-size: clamp(2.4rem, 4.3vw, 4.6rem); 
  line-height: 1.02;
  white-space: nowrap; 
}
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.45rem; }

.hero__lead,
.section-head p,
.variant-card__desc,
.cta p,
.bullet-card p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.05rem;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.stat-card,
.card,
.info-card,
.bullet-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(213, 226, 215, 0.95);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 18px;
}

.stat-card__label {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.hero__actions,
.cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #5da267 0%, #2d6e44 100%);
  box-shadow: 0 14px 30px rgba(47, 111, 68, 0.26);
}
.btn--ghost,
.btn--ghost-dark {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.8);
}
.btn--dark {
  background: #18392a;
  color: #fff;
}
.btn--light {
  background: rgba(255,255,255,0.13);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

.card-glow {
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top, rgba(122, 196, 136, 0.28), transparent 34%),
    rgba(255,255,255,0.86);
  border: 1px solid rgba(213, 226, 215, 0.95);
  box-shadow: 0 30px 70px rgba(33, 76, 48, 0.12);
}

.hero__visual {
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual img {
  max-height: 620px;
  width: auto;
  object-fit: contain;
}

.section {
  padding: 48px 0 28px;
}

.section--muted {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(233, 242, 235, 0.76) 100%);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head > * { flex: 1; }
.section-head--tight { margin-bottom: 20px; }

.variants__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.variant-card {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  overflow: hidden;
}

.variant-card--base {
  background: linear-gradient(180deg, rgba(255,255,255,0.94) 0%, rgba(239, 246, 240, 0.95) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.variant-card--accent {
  color: #f6fbf7;
  background: var(--accent-soft);
  box-shadow: 0 22px 60px rgba(21, 51, 37, 0.28);
}

.variant-card__tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.variant-card--base .variant-card__tag {
  background: rgba(75, 139, 86, 0.12);
  color: var(--primary-dark);
}

.variant-card--accent .variant-card__tag {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.price-box {
  margin: 24px 0;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(213, 226, 215, 0.95);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price-box--accent {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.12);
}

.price-box__label,
.price-box__hint {
  font-size: 0.88rem;
}

.price-box strong {
  font-size: 2rem;
  line-height: 1.1;
}

.price-box__hint,
.variant-card--accent .variant-card__desc,
.feature-list--light li {
  color: rgba(246, 251, 247, 0.82);
}

.feature-list,
.check-list,
.dash-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.feature-list li,
.check-list li,
.dash-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.6;
}

.feature-list li::before,
.check-list li::before,
.dash-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(75, 139, 86, 0.14);
}

.feature-list--light li::before {
  background: #c2e6ca;
  box-shadow: 0 0 0 6px rgba(194, 230, 202, 0.14);
}

.difference-note {
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  color: var(--muted);
}

.applications__grid,
.software__grid,
.specs__layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.info-card,
.bullet-card {
  padding: 24px;
}

.info-card h3,
.bullet-card h3 { margin-bottom: 18px; }
.bullet-card--soft { background: rgba(232, 242, 233, 0.86); }

.wide-image,
.specs__image {
  margin-top: 24px;
  overflow: hidden;
}

.wide-image img,
.software__image img,
.specs__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.software__image,
.specs__image,
.specs__table {
  overflow: hidden;
}

.specs__table table {
  width: 100%;
  border-collapse: collapse;
}

.specs__table td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.55;
}

.specs__table tr:last-child td { border-bottom: none; }
.specs__table td:last-child { font-weight: 800; width: 28%; }

.cta {
  padding: 56px 0 72px;
}

.cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: 32px;
  color: #f5faf7;
  background: linear-gradient(135deg, #234f34 0%, #122b1f 100%);
  box-shadow: 0 28px 60px rgba(18, 43, 31, 0.28);
}

.cta .eyebrow {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.cta p { color: rgba(245,250,247,0.78); }

@media (max-width: 1120px) {
  .hero__grid,
  .variants__grid,
  .applications__grid,
  .software__grid,
  .specs__layout,
  .section-head,
  .cta__box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta__box { display: grid; }
  .hero__visual { min-height: auto; }
}

@media (max-width: 780px) {
  .topbar__inner {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .nav {
    justify-content: center;
    gap: 14px;
  }

  .hero { padding-top: 42px; }
  .hero__stats { grid-template-columns: 1fr; }
  .variant-card,
  .info-card,
  .bullet-card,
  .cta__box { padding: 22px; }
  .card-glow { padding: 16px; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.9rem; }
  .price-box strong { font-size: 1.75rem; }
}


.purpose-card {
  padding: 34px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(93, 162, 103, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(244, 249, 245, 0.98) 100%);
}

.purpose-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.purpose-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(75, 139, 86, 0.12);
  color: var(--primary-dark);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.purpose-card__head h3 {
  font-size: 1.7rem;
}

.purpose-card__lead {
  margin: 0 0 26px;
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.82;
  max-width: 1080px;
}

.purpose-list {
  display: grid;
  gap: 14px;
}

.purpose-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(213, 226, 215, 0.95);
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
}

.purpose-item__marker {
  width: 18px;
  height: 18px;
  margin-top: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5da267 0%, #2d6e44 100%);
  box-shadow: 0 0 0 6px rgba(93, 162, 103, 0.12);
}

.purpose-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1rem;
}

.purpose-item strong {
  color: var(--text);
}


.software-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 28px;
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(93, 162, 103, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(243, 248, 244, 0.98) 100%);
}

.software-showcase__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.software-showcase__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  width: fit-content;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(75, 139, 86, 0.12);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.software-showcase__lead {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
  font-size: 1.03rem;
}

.software-showcase__points {
  display: grid;
  gap: 14px;
}

.software-point {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(213, 226, 215, 0.95);
  background: rgba(255,255,255,0.78);
}

.software-point__icon {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5da267 0%, #2d6e44 100%);
  box-shadow: 0 0 0 6px rgba(93, 162, 103, 0.12);
}

.software-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.software-point p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.software-showcase__media {
  display: flex;
}

.software-media-placeholder {
  position: relative;
  min-height: 620px;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(213, 226, 215, 0.95);
  background: linear-gradient(180deg, rgba(244, 249, 245, 0.95) 0%, rgba(234, 242, 236, 0.95) 100%);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.software-media-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 2px dashed rgba(75, 139, 86, 0.24);
}

.software-media-placeholder__frame {
  position: absolute;
  border-radius: 18px;
  border: 1px solid rgba(44, 95, 58, 0.12);
  background: #f6faf7;
  box-shadow: 0 12px 28px rgba(21, 51, 37, 0.08);
  overflow: hidden;
  padding: 10px;
}

.software-media-placeholder__frame--top {
  top: 38px;
  left: 40px;
  width: 32%;
  height: 24%;
}

.software-media-placeholder__frame--middle {
  top: 112px;
  right: 34px;
  width: 56%;
  height: 34%;
}

.software-media-placeholder__frame--bottom {
  left: 24%;
  bottom: 44px;
  width: 44%;
  height: 26%;
}

.software-media-placeholder__label {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(213, 226, 215, 0.95);
  color: var(--muted);
  text-align: center;
  font-weight: 600;
  line-height: 1.55;
}

.software-media-placeholder__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 12px;
  background: #edf4ee;
}
@media (max-width: 1120px) {
  .software-showcase {
    grid-template-columns: 1fr;
  }

  .software-showcase__media {
    min-height: 480px;
  }
}

@media (max-width: 780px) {
  .software-showcase {
    padding: 22px;
    gap: 20px;
  }

  .software-media-placeholder__frame--top {
    top: 26px;
    left: 22px;
    width: 38%;
  }

  .software-media-placeholder__frame--middle {
    top: 108px;
    right: 20px;
    width: 62%;
    height: 32%;
  }

  .software-media-placeholder__frame--bottom {
    left: 18%;
    width: 54%;
    bottom: 86px;
  }

  .software-media-placeholder__label {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 0.95rem;
  }
}

.specs__title {
  font-weight: 800;
  font-size: 1.2rem;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(75, 139, 86, 0.08);
  color: var(--primary-dark);
}

.specs__title--accent {
  background: linear-gradient(135deg, #2d6e44 0%, #143525 100%);
  color: #fff;
}

.cta__box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  padding: 40px;
  border-radius: 32px;
  background: linear-gradient(135deg, #1f4730 0%, #10281d 100%);
  color: #fff;
  box-shadow: 0 30px 80px rgba(16, 40, 29, 0.35);
}

.cta__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta__text {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

.cta__contacts {
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.cta__contacts strong {
  color: #fff;
}

.cta__trust {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.cta__trust li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
  color: rgba(255,255,255,0.9);
}

.cta__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ee7a1;
}

/* Форма */

.cta__form-wrapper {
  display: flex;
  align-items: center;
}

.lead-form {
  width: 100%;
  background: rgba(255,255,255,0.08);
  padding: 28px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form input {
  height: 52px;
  border-radius: 12px;
  border: none;
  padding: 0 16px;
  font-size: 0.95rem;
  outline: none;
  background: rgba(255,255,255,0.9);
}

.lead-form input:focus {
  box-shadow: 0 0 0 2px rgba(93, 162, 103, 0.4);
}

.lead-form button {
  margin-top: 6px;
  height: 54px;
  font-size: 1rem;
}

.form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* Адаптив */

@media (max-width: 900px) {
  .cta__box {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

.lead-form .cf-turnstile {
  display: flex;
  justify-content: center;
  margin-top: 4px;
  margin-bottom: 4px;
}

html, body {
  overflow-x: hidden;
}

.nav a {
  white-space: nowrap;
}

.hero__content,
.hero__visual,
.software-showcase__content,
.software-showcase__media,
.cta__content,
.cta__form-wrapper {
  min-width: 0;
}

.hero__content {
  word-break: break-word;
}

.specs__table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.specs__table table {
  min-width: 520px;
}

.lead-form,
.lead-form input,
.lead-form button,
.btn,
.smart-captcha {
  width: 100%;
}

.hero__actions .btn,
.variant-card .btn {
  width: auto;
}

.cta__domain {
  grid-column: 1 / -1;
  margin-top: 4px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  word-break: break-word;
}

@media (max-width: 900px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .topbar {
    position: static;
  }

  .topbar__inner {
    align-items: flex-start;
    gap: 12px;
    min-height: auto;
    padding: 14px 0;
  }

  .brand {
    font-size: 1rem;
  }

  .nav {
    width: 100%;
    gap: 10px 14px;
  }

  .nav a {
    font-size: 0.88rem;
  }

  .hero {
    padding: 32px 0 24px;
  }

  .hero__grid {
    gap: 22px;
  }

  .hero__visual {
    order: -1;
    padding: 12px;
  }

  .hero__visual img {
    max-height: 360px;
    width: 100%;
  }

  .section {
    padding: 34px 0 18px;
  }

  .section-head {
    gap: 14px;
    margin-bottom: 20px;
  }

  .purpose-card,
  .software-showcase,
  .variant-card,
  .specs__table,
  .cta__box {
    border-radius: 22px;
  }

  .software-media-placeholder {
    min-height: 430px;
  }

  .software-media-placeholder__frame--top {
    top: 20px;
    left: 18px;
    width: 42%;
    height: 22%;
  }

  .software-media-placeholder__frame--middle {
    top: 92px;
    right: 18px;
    width: 64%;
    height: 30%;
  }

  .software-media-placeholder__frame--bottom {
    left: 16%;
    bottom: 78px;
    width: 58%;
    height: 23%;
  }

  .cta__contacts {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .eyebrow {
    font-size: 0.72rem;
    padding: 8px 12px;
  }

  h1 {
    margin-top: 14px;
    font-size: clamp(2rem, 11vw, 2.8rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(1.55rem, 8vw, 2rem);
    line-height: 1.12;
  }

  h3 {
    font-size: 1.22rem;
    line-height: 1.2;
  }

  .hero__lead,
  .section-head p,
  .variant-card__desc,
  .cta p,
  .bullet-card p,
  .purpose-card__lead,
  .software-showcase__lead,
  .purpose-item p,
  .software-point p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .topbar__inner {
    padding: 12px 0;
  }

  .nav {
    gap: 8px 10px;
  }

  .nav a {
    font-size: 0.82rem;
  }

  .hero__stats {
    margin-top: 18px;
    gap: 10px;
  }

  .stat-card {
    padding: 14px;
  }

  .hero__actions,
  .cta__actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .hero__actions .btn,
  .cta__actions .btn,
  .variant-card .btn {
    width: 100%;
  }

  .btn {
    min-height: 48px;
    padding: 12px 16px;
    font-size: 0.95rem;
    text-align: center;
  }

  .card-glow {
    padding: 12px;
    border-radius: 22px;
  }

  .hero__visual img {
    max-height: 280px;
  }

  .variant-card,
  .info-card,
  .bullet-card,
  .purpose-card,
  .software-showcase,
  .cta__box,
  .lead-form {
    padding: 18px;
  }

  .price-box {
    margin: 18px 0;
    padding: 14px 16px;
  }

  .price-box strong {
    font-size: 1.5rem;
  }

  .difference-note {
    padding: 16px;
    font-size: 0.95rem;
  }

  .purpose-card__head {
    gap: 10px;
    margin-bottom: 16px;
  }

  .purpose-item,
  .software-point {
    grid-template-columns: 14px 1fr;
    gap: 10px;
    padding: 14px;
  }

  .purpose-item__marker,
  .software-point__icon {
    width: 14px;
    height: 14px;
    margin-top: 4px;
  }

  .software-showcase__content {
    gap: 14px;
  }

  .software-media-placeholder {
    min-height: 320px;
    border-radius: 20px;
  }

  .software-media-placeholder::before {
    inset: 10px;
    border-radius: 16px;
  }

  .software-media-placeholder__frame {
    padding: 6px;
    border-radius: 12px;
  }

  .software-media-placeholder__frame--top {
    top: 16px;
    left: 12px;
    width: 44%;
    height: 20%;
  }

  .software-media-placeholder__frame--middle {
    top: 70px;
    right: 12px;
    width: 66%;
    height: 28%;
  }

  .software-media-placeholder__frame--bottom {
    left: 12%;
    bottom: 72px;
    width: 62%;
    height: 21%;
  }

  .software-media-placeholder__label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .specs__title {
    font-size: 1.05rem;
    padding: 14px 16px;
  }

  .specs__table td {
    padding: 14px 16px;
    font-size: 0.92rem;
  }

  .lead-form {
    gap: 12px;
  }

  .lead-form input {
    height: 48px;
    font-size: 16px;
  }

  .lead-form button {
    height: 50px;
  }

  .form-note {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .smart-captcha {
    overflow-x: auto;
  }
}

.info-popover {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  vertical-align: middle;
}

.info-popover__trigger {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #5da267 0%, #2d6e44 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(45, 110, 68, 0.18);
}

.info-popover__box {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%);
  width: 520px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(213, 226, 215, 0.95);
  box-shadow: 0 18px 50px rgba(21, 51, 37, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.22s ease;
  z-index: 30;
}

.info-popover__box img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.info-popover__box::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.info-popover:hover .info-popover__box,
.info-popover:focus-within .info-popover__box {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 640px) {
  .info-popover__box {
    width: 240px;
    left: auto;
    right: 0;
    transform: none;
  }

  .info-popover__box::after {
    left: auto;
    right: 12px;
    transform: none;
  }
}

.info-popover {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  vertical-align: middle;
}

.info-popover__trigger {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #5da267 0%, #2d6e44 100%);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 8px 20px rgba(45, 110, 68, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-popover__trigger:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 26px rgba(45, 110, 68, 0.28);
}

.info-popover__trigger svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  white-space: nowrap;
}

.topbar__contacts a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s ease;
}

.topbar__contacts a:hover {
  color: var(--primary-dark);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand__mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #78c486 0%, #2d6e44 100%);
  box-shadow: 0 0 0 6px rgba(93, 162, 103, 0.14);
  flex-shrink: 0;
}

.brand__text {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand__main,
.brand__accent {
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}

.brand__main {
  background-image: linear-gradient(180deg, #284d39 0%, #163126 100%);
}

.brand__accent {
  background-image: linear-gradient(180deg, #6aae78 0%, #2d6e44 100%);
  margin-left: 1px;
}

.brand:hover .brand__main {
  background-image: linear-gradient(180deg, #2f5d44 0%, #18392a 100%);
}

.brand:hover .brand__accent {
  background-image: linear-gradient(180deg, #7cc78b 0%, #34794b 100%);
}

.brand__main {
  color: #163126;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.35),
    0 8px 18px rgba(22, 49, 38, 0.08);
}

.brand__accent {
  color: #2d6e44;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.25),
    0 8px 20px rgba(45, 110, 68, 0.14);
}

