﻿:root {
  --bg: #08111f;
  --bg-soft: #0f1b2f;
  --card: rgba(255,255,255,0.05);
  --card-border: rgba(255,255,255,0.1);
  --text: #ecf3ff;
  --muted: #aebfd9;
  --primary: #2f80ff;
  --primary-2: #6aa5ff;
  --success: #1ec98f;
  --warning: #ffcc66;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 24px;
  --container: 1200px;
}

* { 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(900px 500px at 10% 0%, rgba(47,128,255,.18), transparent 60%),
    radial-gradient(700px 400px at 90% 15%, rgba(30,201,143,.10), transparent 60%),
    linear-gradient(180deg, #08111f 0%, #0b1525 100%);
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(47,128,255,.05);
  border: 1px solid rgba(106,165,255,.1);
  color: #d6e6ff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
}

h1, h2, h3, h4, p { margin: 0; }
.title-xl {
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.title-lg {
  font-size: clamp(22px, 3.5vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.title-md {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}
.lead {
  font-size: clamp(18px, 2.2vw, 21px);
  color: var(--muted);
  max-width: 760px;
}
.text {
  color: var(--muted);
  font-size: 16px;
}
.text-sm {
  color: var(--muted);
  font-size: 14px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: .25s ease;
  cursor: pointer;
}
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 32px rgba(47,128,255,.25);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}
.btn-secondary:hover { background: rgba(255,255,255,.08); }

.microtrust {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
}

.hero {
  padding: 0 0 20px;
  position: relative;
  overflow: hidden;
}
.nav-block {
  width: 100%;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0 8px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 42px;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.35));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 15px;
}
.nav-lang {
  width: 56px;
  padding: 6px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}
.nav-lang:hover { border-color: rgba(106,165,255,.3); color: #fff; }

.hero-bg {
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  border-radius: 24px 24px 20px 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8,17,31,.25), rgba(8,17,31,.65)),
    url('lpr.webp') top center/100% auto no-repeat;
}

.hero-title {
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0;
}

.hero-text-box {
  padding: 18px 22px;
  border-radius: 16px;
  background: rgba(47,128,255,.05);
  border: 1px solid rgba(106,165,255,.1);
  backdrop-filter: blur(12px);
  max-width: 100%;
}

.hero-text-box .lead {
  margin: 0;
  font-size: clamp(10px, 1vw, 12px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding-top: 32px;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-left .btn-row {
  margin-top: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hero-stats-block {
  width: 100%;
  padding: 16px 0 40px;
}

.scan-box {
  position: absolute;
  right: 12%;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 84px;
  border: 2px solid #61d8ff;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(97,216,255,.15), 0 0 40px rgba(97,216,255,.25);
  backdrop-filter: blur(4px);
}
.scan-box::before {
  content: '';
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7ae4ff, transparent);
  box-shadow: 0 0 18px rgba(122,228,255,.85);
  animation: scan 2.2s linear infinite;
}
@keyframes scan {
  0% { transform: translateY(-18px); opacity: .5; }
  50% { transform: translateY(18px); opacity: 1; }
  100% { transform: translateY(-18px); opacity: .5; }
}

.overlay-panel {
  position: absolute;
  right: 22px;
  top: 22px;
  width: min(310px, calc(100% - 44px));
  border-radius: 22px;
  padding: 18px;
  background: rgba(6, 15, 29, .72);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}
.overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.status {
  padding: 6px 10px;
  background: rgba(30,201,143,.12);
  color: #87f1c4;
  border: 1px solid rgba(30,201,143,.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.plate-list {
  display: grid;
  gap: 12px;
}
.plate-item {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
}
.plate-number {
  font-weight: 800;
  letter-spacing: .06em;
}
.plate-owner { color: var(--muted); font-size: 14px; }
.plate-meta { color: #9fd2ff; font-size: 13px; }

.bottom-log {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: 380px;
  border-radius: 22px;
  padding: 18px;
  background: rgba(6,15,29,.74);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
}
.log-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px rgba(30,201,143,.7);
  flex: 0 0 10px;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 38px;
  max-width: 820px;
}

.security-section > .container {
  padding: 48px 40px;
  border-radius: 32px;
  border: 1px solid rgba(106, 165, 255, 0.22);
  background:
    radial-gradient(800px 320px at 12% -30%, rgba(47, 128, 255, 0.2), transparent 58%),
    radial-gradient(640px 300px at 100% 70%, rgba(30, 201, 143, 0.12), transparent 52%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(6, 15, 29, 0.88));
  box-shadow: var(--shadow), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.security-section .security-header {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 38px;
  max-width: 820px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.security-section .security-header .title-lg {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.02em;
}
.security-header-text {
  font-size: clamp(16px, 2vw, 18px);
  max-width: 720px;
  margin: 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.security-section .benefit-card {
  border-left: 3px solid rgba(30, 201, 143, 0.55);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.security-section .benefit-card:hover {
  border-left-color: rgba(47, 128, 255, 0.75);
  transform: translateY(-3px);
}
.benefit-card .title-md {
  margin-bottom: 10px;
}

.grid-3, .grid-4, .grid-2 {
  display: grid;
  gap: 22px;
}
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-2 > div {
  display: flex;
  flex-direction: column;
}
.grid-2 > div > .card {
  flex: 1;
}

.grid-2-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
}
.grid-2-cards > :nth-child(1) { grid-column: 1; grid-row: 1; }
.grid-2-cards > :nth-child(2) { grid-column: 1; grid-row: 2; }
.grid-2-cards > :nth-child(3) { grid-column: 2; grid-row: 1; }
.grid-2-cards > :nth-child(4) { grid-column: 2; grid-row: 2; }

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(47,128,255,.18), rgba(30,201,143,.12));
  border: 1px solid rgba(106,165,255,.18);
  color: #dbe9ff;
}
.case-card .icon,
.segment-card .icon,
.step-card .icon,
.feature-card .icon {
  font-weight: normal;
}
.case-card .icon svg,
.segment-card .icon svg,
.step-card .icon svg,
.feature-card .icon svg {
  width: 28px;
  height: 28px;
}

.segment-card,
.feature-card,
.case-card,
.faq-item,
.pricing-card,
.step-card,
.trust-card,
.condition-card { min-height: 100%; }

.segment-card h3,
.feature-card h3,
.case-card h3,
.pricing-card h3,
.step-card h3,
.trust-card h3,
.condition-card h3 { margin-bottom: 10px; }

.pain-gain {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pain-gain .card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pair {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.pair strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.steps {
  position: relative;
}
.step-card {
  position: relative;
  overflow: hidden;
}
.step-number {
  position: absolute;
  right: 18px;
  top: 16px;
  font-size: 54px;
  font-weight: 800;
  color: rgba(255,255,255,.06);
  line-height: 1;
}

.integration-list,
.check-list,
.faq-list,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.integration-list li,
.check-list li,
.faq-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  color: var(--muted);
}
.integration-list li:last-child,
.check-list li:last-child,
.faq-list li:last-child { border-bottom: 0; }
.check {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  background: rgba(30,201,143,.14);
  border: 1px solid rgba(30,201,143,.22);
  color: #89f2c6;
  font-size: 13px;
  font-weight: 800;
  margin-top: 1px;
}

.gallery-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.gallery-track {
  display: flex;
  transition: transform .4s ease;
}
.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  min-height: 420px;
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.gallery-slide:nth-child(1) { background-image: linear-gradient(180deg, rgba(8,17,31,.15) 0%, rgba(8,17,31,.55) 70%), url('journal.webp'); }
.gallery-slide:nth-child(2) { background-image: linear-gradient(180deg, rgba(8,17,31,.15) 0%, rgba(8,17,31,.55) 70%), url('list.webp'); }
.gallery-slide:nth-child(3) { background-image: linear-gradient(180deg, rgba(8,17,31,.15) 0%, rgba(8,17,31,.55) 70%), url('event.webp'); }
.gallery-slide .shot-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 28px;
  background: rgba(5,12,24,.65);
  border-top: 1px solid rgba(255,255,255,.08);
}
.gallery-slide .shot-content h3 { margin: 0 0 8px; }
.gallery-slide .shot-content p { margin: 0; }
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 24px;
}
.gallery-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .25s;
}
.gallery-dots button:hover,
.gallery-dots button.active {
  background: var(--primary);
}

.pricing-card.featured {
  border-color: rgba(106,165,255,.35);
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(47,128,255,.09), rgba(255,255,255,.05));
}
.price-badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(47,128,255,.14);
  border: 1px solid rgba(106,165,255,.22);
  color: #cfe2ff;
  margin-bottom: 14px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 20px;
}
.stat strong {
  font-size: 30px;
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}

.final-cta {
  padding: 42px;
  border-radius: 32px;
  background:
    radial-gradient(600px 250px at 0% 0%, rgba(47,128,255,.20), transparent 70%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 28px;
  align-items: center;
}
.form-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(6,15,29,.72);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}
/* РўР°СЂРёС„Рё: СЃРµРєС†С–СЏ #tarifs */
.tariff-cta {
  margin-bottom: 0;
}
.tariff-cta-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
}
.tariff-cta-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  position: relative;
}
.tariff-cta-card:hover {
  transform: translateY(-6px);
  border-color: rgba(30,201,143,.35);
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
}
.tariff-cta-card.tariff-cta-featured {
  border-color: rgba(30,201,143,.45);
  background: linear-gradient(180deg, rgba(30,201,143,.08), rgba(255,255,255,.04));
  transform: translateY(-4px);
}
.tariff-cta-card.tariff-cta-featured:hover {
  transform: translateY(-8px);
}
.tariff-cta-badge {
  background: rgba(30,201,143,.12);
  color: #87f1c4;
  border: 1px solid rgba(30,201,143,.22);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 16px;
}
.tariff-cta-badge.tariff-cta-badge--placeholder {
  visibility: hidden;
}
.tariff-cta-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--success), #17a878);
  color: #fff;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.tariff-cta-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.tariff-cta-price-wrap {
  margin: 20px 0;
}
.tariff-cta-price {
  font-size: 34px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.tariff-cta-price span {
  font-size: 16px;
  font-weight: 600;
  color: var(--muted);
}
.tariff-cta-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.tariff-cta-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}
.tariff-cta-features li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.tariff-cta-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 800;
  flex-shrink: 0;
}
.tariff-cta-btn {
  display: block;
  text-align: center;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  transition: .25s ease;
  text-decoration: none;
}
.tariff-cta-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 28px rgba(47,128,255,.25);
}
.tariff-cta-card.tariff-cta-featured .tariff-cta-btn {
  background: linear-gradient(135deg, var(--success), #2dd4a3);
  border-color: transparent;
  color: #04120c;
}
.tariff-cta-card.tariff-cta-featured .tariff-cta-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 28px rgba(30,201,143,.3);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field.full { grid-column: 1 / -1; }
label {
  font-size: 14px;
  color: #d5e1f4;
  font-weight: 600;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}
input::placeholder, textarea::placeholder { color: #86a0c3; }
textarea { min-height: 112px; resize: vertical; }

footer {
  padding: 32px 0 46px;
  color: var(--muted);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 32px;
  padding-bottom: 28px;
}
.footer-col h4 {
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 10px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom .legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom .legal a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom .legal a:hover { color: #fff; }
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .cta-grid,
  .grid-4,
  .grid-3,
  .stats,
  .grid-2,
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .tariff-cta-grid { grid-template-columns: repeat(2, 1fr); }
  .tariff-cta-card.tariff-cta-featured { transform: translateY(0); }
  .tariff-cta-card.tariff-cta-featured:hover { transform: translateY(-6px); }
  .hero-bg { aspect-ratio: 16 / 9; }
  .nav-links { display: none; }
}

@media (max-width: 780px) {
  .section { padding: 68px 0; }
  .pain-gain,
  .cta-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .grid-2-cards,
  .benefits-grid { grid-template-columns: 1fr; }
  .grid-2-cards > :nth-child(n) { grid-column: 1; }
  .hero-grid { grid-template-columns: 1fr; }
  .stats,
  .form-grid,
  .tariff-cta-grid { grid-template-columns: 1fr; }
  .hero-bg {
    aspect-ratio: 16 / 9;
    border-radius: 18px 18px 20px 20px;
  }
  .hero-text-box { max-width: none; }
  .hero-copy { gap: 18px; }
  .final-cta { padding: 26px; }
  .security-section > .container {
    padding: 32px 22px;
    border-radius: 24px;
  }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 580px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.people-counting-page .hero-bg {
  background:
    linear-gradient(180deg, rgba(8,17,31,.18), rgba(8,17,31,.72)),
    url('cnt.webp') center center/cover no-repeat;
}

.people-counting-page .analytics-panel {
  min-height: 260px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}

.people-counting-page .metric-stack {
  display: grid;
  gap: 12px;
}

.people-counting-page .metric-pill {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
}

.people-counting-page .metric-pill strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.people-counting-page .bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(8,17,31,.45);
  border: 1px solid rgba(255,255,255,.08);
}

.people-counting-page .bar-chart span {
  flex: 1;
  min-height: 42px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--primary-2), var(--success));
  opacity: .86;
}

@media (max-width: 768px) {
  .people-counting-page .analytics-panel { grid-template-columns: 1fr; }
}

.people-counting-page .count-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.people-counting-page .count-info-head {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.people-counting-page .count-info-head .eyebrow {
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 18px;
  background: rgba(47,128,255,.08);
  border-color: rgba(106,165,255,.18);
}

.people-counting-page .count-info-head .title-lg {
  max-width: 560px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
}

.people-counting-page .count-info-card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,.065);
  border-color: rgba(255,255,255,.13);
  box-shadow: none;
}

.people-counting-page .count-info-card li {
  padding: 16px 0;
  gap: 12px;
  border-bottom-color: rgba(255,255,255,.075);
  font-size: 16px;
}

.people-counting-page .count-info-card li:first-child {
  padding-top: 0;
}

.people-counting-page .count-info-card li:last-child {
  padding-bottom: 0;
}

.people-counting-page .count-info-card strong {
  color: #dfe9fa;
}

.people-counting-page .check-question {
  background: rgba(30,201,143,.14);
  border-color: rgba(30,201,143,.24);
  color: #89f2c6;
}

@media (max-width: 768px) {
  .people-counting-page .count-info-grid {
    grid-template-columns: 1fr;
  }

  .people-counting-page .count-info-head .title-lg {
    font-size: clamp(26px, 8vw, 34px);
  }
}

.people-counting-page .count-info-head-benefits {
  padding: 26px;
  border-radius: 22px;
  background:
    radial-gradient(420px 180px at 0% 0%, rgba(30,201,143,.14), transparent 70%),
    rgba(30,201,143,.035);
  border: 1px solid rgba(30,201,143,.16);
}

.people-counting-page .count-info-head-benefits .eyebrow {
  background: rgba(30,201,143,.10);
  border-color: rgba(30,201,143,.24);
  color: #c9f8e5;
}

.people-counting-page .count-benefits-card {
  background:
    linear-gradient(135deg, rgba(30,201,143,.12), rgba(255,255,255,.045));
  border-color: rgba(30,201,143,.22);
}

.people-counting-page .count-benefits-card li {
  border-bottom-color: rgba(30,201,143,.12);
}

.people-counting-page .count-benefits-card .check {
  background: rgba(30,201,143,.22);
  border-color: rgba(30,201,143,.34);
  color: #b9ffdf;
}


.home-page {
  min-height: 100vh;
}

.home-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
}

.home-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 14px;
  border-radius: 22px;
  background: rgba(8,17,31,.48);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  z-index: 30;
}

.home-brand span {
  font-size: 19px;
}

.home-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-menu {
  position: relative;
}

.home-menu:hover {
  z-index: 40;
}

.home-menu::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

.home-menu-button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.home-menu-button:focus {
  outline: none;
}

.home-menu-button:focus-visible {
  outline: 2px solid rgba(106,165,255,.65);
  outline-offset: 2px;
}

.home-menu-button:hover,
.home-menu:hover .home-menu-button {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
}

.home-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(8,17,31,.94);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: .18s ease;
  backdrop-filter: blur(18px);
  z-index: 30;
}

.home-menu-panel-right {
  left: auto;
  right: 0;
}

.home-menu:hover .home-menu-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.home-menu-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.home-menu-panel a:hover {
  background: rgba(47,128,255,.12);
  color: #fff;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px 0 72px;
}

.home-slide,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation: homeHeroFade 12s infinite;
  transform: scale(1.02);
}

.home-slide-count {
  background-image: url('cnt.webp');
}

.home-slide-lpr {
  background-image: url('lpr.webp');
  animation-delay: 6s;
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8,17,31,.92) 0%, rgba(8,17,31,.70) 44%, rgba(8,17,31,.22) 100%),
    linear-gradient(180deg, rgba(8,17,31,.16) 0%, rgba(8,17,31,.88) 100%);
  z-index: 1;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

.home-hero-content .title-xl {
  font-size: clamp(58px, 11vw, 128px);
}

.home-hero-content .lead {
  max-width: 680px;
  color: #d3e0f5;
}

.home-solution-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 360px));
  gap: 14px;
  margin-top: 18px;
}

.home-solution-link {
  min-height: 154px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  transition: .22s ease;
}

.home-solution-link:hover {
  transform: translateY(-3px);
  background: rgba(47,128,255,.14);
  border-color: rgba(106,165,255,.28);
}

.home-solution-link span {
  color: #8fb7ff;
  font-size: 13px;
  font-weight: 800;
}

.home-solution-link strong {
  font-size: 21px;
  line-height: 1.15;
}

.home-solution-link small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

@keyframes homeHeroFade {
  0%, 44% { opacity: 1; transform: scale(1); }
  50%, 94% { opacity: 0; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 860px) {
  .home-slide-count {
    background-image: url('cnt_m.webp');
  }

  .home-slide-lpr {
    background-image: url('lpr_m.webp');
  }

  .home-header {
    position: relative;
    background: rgba(8,17,31,.96);
  }

  .home-nav,
  .home-nav-links {
    align-items: stretch;
    flex-direction: column;
  }

  .home-nav-links {
    width: 100%;
  }

  .home-menu-panel,
  .home-menu-panel-right {
    position: static;
    min-width: 0;
    margin-top: 8px;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  .home-menu:hover .home-menu-panel,
  .home-menu:focus-within .home-menu-panel {
    display: block;
  }

  .home-menu-button {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .home-hero {
    min-height: calc(100vh - 260px);
    padding-top: 72px;
  }

  .home-solution-actions {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.home-action-card {
  cursor: default;
}

.home-action-card:hover {
  transform: none;
}

.home-action-links {
  display: grid;
  gap: 8px;
}

.home-action-links a {
  display: inline-flex;
  width: fit-content;
  color: #c8d8ef;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
}

.home-action-links a:hover {
  color: #fff;
}

.home-product-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 22px 50px rgba(0,0,0,.30);
  backdrop-filter: blur(18px);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.home-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.28);
  background:
    linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
}

.home-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .74;
  pointer-events: none;
}

.home-product-card-lpr::before {
  background:
    radial-gradient(260px 180px at 16% 12%, rgba(47,128,255,.34), transparent 70%),
    radial-gradient(260px 180px at 82% 8%, rgba(106,165,255,.18), transparent 72%);
}

.home-product-card-cnt::before {
  background:
    radial-gradient(260px 180px at 18% 12%, rgba(30,201,143,.30), transparent 70%),
    radial-gradient(260px 180px at 88% 10%, rgba(255,204,102,.20), transparent 72%);
}

.home-product-card-glow {
  position: absolute;
  right: -78px;
  top: -78px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.045);
  pointer-events: none;
}

.home-product-card-top,
.home-product-card p,
.home-product-actions {
  position: relative;
  z-index: 1;
}

.home-product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.home-product-card-top strong {
  max-width: 260px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.home-product-card-top span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  flex: 0 0 68px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: #d8e6fb;
  font-size: 15px;
  font-weight: 800;
  background: rgba(255,255,255,.055);
}

.home-product-card p {
  max-width: 420px;
  color: #bdcce2;
  font-size: 15px;
  margin-top: auto;
}

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

.home-product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 13px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(8,17,31,.44);
  color: #eef5ff;
  font-size: 15px;
  font-weight: 800;
  transition: .2s ease;
}

.home-product-actions a:first-child {
  background: linear-gradient(135deg, rgba(47,128,255,.92), rgba(106,165,255,.86));
  border-color: rgba(106,165,255,.36);
}

.home-product-card-cnt .home-product-actions a:first-child {
  background: linear-gradient(135deg, rgba(30,201,143,.92), rgba(106,165,255,.72));
  border-color: rgba(30,201,143,.34);
}

.home-product-actions a:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.28);
}


.home-lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.045);
}

.home-lang-switch a {
  display: grid;
  place-items: center;
  min-width: 38px;
  height: 34px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.home-lang-switch a:hover,
.home-lang-switch a.active {
  color: #fff;
  background: rgba(47,128,255,.18);
}

@media (max-width: 860px) {
  .home-lang-switch {
    width: fit-content;
  }
}



.home-nav-toggle,
.home-burger {
  display: none;
}

.home-burger {
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  cursor: pointer;
}

.home-burger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #eef5ff;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 860px) {
  .home-nav {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .home-burger {
    display: inline-flex;
    margin-left: auto;
  }

  .home-nav-toggle:checked + .home-burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .home-nav-toggle:checked + .home-burger span:nth-child(2) {
    opacity: 0;
  }

  .home-nav-toggle:checked + .home-burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .home-nav-links {
    display: none;
    flex-basis: 100%;
    padding-top: 10px;
  }

  .home-nav-toggle:checked ~ .home-nav-links {
    display: flex;
  }
}

.footer-subtitle {
  margin-top: 18px;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}


.payment-badges img {
  width: 56px;
  height: 33px;
  display: block;
  object-fit: contain;
  border-radius: 7px;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}


.share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.share-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.13);
  color: #cfe0f7;
  transition: .2s ease;
}

.share-link:hover {
  color: #fff;
  background: rgba(47,128,255,.18);
  border-color: rgba(106,165,255,.3);
  transform: translateY(-2px);
}

.share-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
