cat > /var/www/lexproprint.ru/styles.css << 'EOF'
:root {
  --bg: #070814;
  --bg-soft: #0d1020;
  --panel: #121526;
  --panel-2: #171a2d;
  --panel-3: #1d2237;
  --line: rgba(110, 145, 255, 0.14);
  --text: #eef4ff;
  --muted: #9ea9c7;
  --blue: #4da8ff;
  --blue-2: #69b7ff;
  --purple: #5110b5;
  --purple-2: #6d1cff;
  --cyan: #45cfff;
  --pink: #ff4ea3;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(81, 16, 181, 0.22), transparent 26%),
    linear-gradient(180deg, #090b17 0%, #060812 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

code {
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 8px;
  font-size: 0.95em;
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.site-bg::before {
  width: 320px;
  height: 320px;
  left: -100px;
  top: 120px;
  background: rgba(69, 207, 255, 0.18);
}

.site-bg::after {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 40px;
  background: rgba(109, 28, 255, 0.18);
}

.topbar {
  height: 14px;
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple-2) 40%, #7c2cff 100%);
  box-shadow: 0 0 22px rgba(109, 28, 255, 0.35);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(10, 12, 24, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4ccfff, #4da8ff, #7c2cff);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(77, 168, 255, 0.3);
}

.brand-copy strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu a {
  color: var(--muted);
  font-weight: 500;
}

.menu a:hover {
  color: var(--text);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  margin: 5px 0;
}

.hero {
  padding: 72px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 32px;
  align-items: center;
}

.hero-chip,
.section-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: #8fd8ff;
  background: rgba(77, 168, 255, 0.08);
  border: 1px solid rgba(77, 168, 255, 0.16);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero-text {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 18px;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #45cfff 0%, #4da8ff 40%, #7c2cff 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 10px 24px rgba(77, 168, 255, 0.18),
    0 0 22px rgba(109, 28, 255, 0.18);
}

.btn-dark {
  color: #dce8ff;
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.btn-sm {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #d6def8;
  font-size: 14px;
}

.phone-mockup {
  background: linear-gradient(180deg, #13172a 0%, #0f1324 100%);
  border: 1px solid rgba(110, 145, 255, 0.16);
  border-radius: 34px;
  padding: 14px;
  box-shadow: var(--shadow);
  max-width: 440px;
  margin-left: auto;
}

.phone-status {
  width: 120px;
  height: 22px;
  margin: 0 auto 10px;
  background: #090b15;
  border-radius: 0 0 16px 16px;
}

.phone-screen {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #0d1120 0%, #0a0d18 100%);
  border: 1px solid rgba(255,255,255,0.04);
}

.screen-header {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-top: 6px solid #4c10b8;
  background: #101321;
}

.back-circle,
.avatar-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #182033;
  color: #a7d7ff;
  border: 1px solid rgba(77, 168, 255, 0.18);
  font-weight: 700;
}

.screen-title {
  min-width: 0;
}

.app-name {
  display: block;
  color: #6dbaff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.screen-title strong {
  display: block;
  color: #64b8ff;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.screen-image {
  background: #06070c;
  min-height: 280px;
  position: relative;
}

.screen-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.screen-image-fallback {
  height: 300px;
  background:
    linear-gradient(180deg, #0b0c12 0%, #040507 100%);
  position: relative;
  overflow: hidden;
}

.car-shape {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 28%;
  bottom: 18%;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,0.18), transparent 30%),
    linear-gradient(180deg, #20242f, #090b10);
  box-shadow: inset 0 -20px 40px rgba(0,0,0,0.6);
}

.trim {
  position: absolute;
  background: linear-gradient(90deg, #7b1616, #bb3a4e, #a83131);
  border-radius: 10px;
  opacity: 0.92;
  box-shadow: 0 0 20px rgba(187, 58, 78, 0.22);
}

.trim-1 {
  left: 10%;
  right: 42%;
  top: 48%;
  height: 18px;
}

.trim-2 {
  left: 46%;
  right: 12%;
  top: 52%;
  height: 18px;
}

.trim-3 {
  left: 38%;
  width: 24%;
  bottom: 18%;
  height: 18px;
  transform: rotate(64deg);
  transform-origin: center;
}

.material-card {
  margin: 12px 14px;
  padding: 14px 16px;
  border-radius: 20px;
  background: #0d101b;
  border: 1px solid rgba(77, 168, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(77, 168, 255, 0.04);
}

.material-card span,
.material-card strong,
.material-card em {
  display: block;
}

.material-card span,
.material-card em {
  color: #69b7ff;
  font-size: 13px;
}

.material-card strong {
  color: #69b7ff;
  font-size: 17px;
  margin: 4px 0;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: #141725;
}

.tab {
  min-height: 56px;
  background: transparent;
  color: #c9d4ef;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.04);
  font-weight: 600;
}

.tab:last-child {
  border-right: 0;
}

.tab.active-blue {
  background: #1d2940;
  color: #5fb1ff;
}

.toolbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.toolbar button {
  min-height: 52px;
  background: #111420;
  color: #d8e2ff;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
  padding: 8px;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 52px;
  gap: 10px;
  padding: 14px;
}

.search-box,
.search-close {
  min-height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  background: #191d30;
  border: 1px solid rgba(112, 126, 198, 0.26);
  color: #7e89aa;
}

.search-box {
  padding: 0 18px;
}

.search-close {
  justify-content: center;
  font-size: 24px;
  color: #a5aec8;
}

.colors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0 14px 18px;
}

.color-item {
  text-align: center;
}

.color-item small {
  display: block;
  margin-top: 8px;
  color: #cfd7ef;
  font-size: 10px;
  line-height: 1.35;
}

.color {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 3px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.color.red { background: #a81208; }
.color.beige { background: #8b6f5a; }
.color.silver { background: #c0b79b; }
.color.blue { background: #437b89; }
.color.orange { background: #ff6436; }
.color.gray { background: #69635f; }
.color.lightgray { background: #a8a7a2; }
.color.indigo { background: #5d679e; }

.section {
  padding: 34px 0 0;
}

.section-panel {
  background: linear-gradient(180deg, rgba(19,21,38,0.96), rgba(14,17,29,0.98));
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-topline {
  height: 8px;
  background: linear-gradient(90deg, #5110b5 0%, #6d1cff 60%, #4da8ff 100%);
  box-shadow: 0 0 20px rgba(109, 28, 255, 0.18);
}

.section-head {
  padding: 28px 28px 10px;
  max-width: 880px;
}

.section-head h2 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.about-grid,
.feature-grid,
.workflow-grid,
.screens-grid,
.contacts-grid {
  display: grid;
  gap: 18px;
  padding: 18px 28px 28px;
}

.about-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.workflow-grid {
  grid-template-columns: repeat(3, 1fr);
}

.screens-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contacts-grid {
  grid-template-columns: repeat(2, 1fr);
}

.info-box,
.feature-box,
.workflow-step,
.screen-card,
.contact-box {
  background: linear-gradient(180deg, #191d31 0%, #141827 100%);
  border: 1px solid rgba(112, 126, 198, 0.16);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.info-box,
.feature-box,
.workflow-step,
.contact-box {
  padding: 22px;
}

.info-box strong,
.feature-box h3,
.workflow-step h3 {
  display: block;
  margin: 0 0 10px;
}

.info-box strong {
  font-size: 22px;
}

.info-box p,
.feature-box p,
.workflow-step p {
  margin: 0;
  color: var(--muted);
}

.feature-num,
.step-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(69,207,255,0.18), rgba(109,28,255,0.18));
  color: #8fd8ff;
  border: 1px solid rgba(77, 168, 255, 0.14);
}

.screen-card {
  padding: 12px;
}

.screen-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 18px;
}

.screen-placeholder {
  height: 560px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d6def8;
  font-weight: 700;
  background:
    linear-gradient(180deg, #101424 0%, #090d18 100%);
  border: 1px solid rgba(255,255,255,0.04);
}

.cta-section {
  padding: 34px 0;
}

.cta-panel {
  background: linear-gradient(90deg, rgba(69,207,255,0.12), rgba(109,28,255,0.16));
  border: 1px solid rgba(77, 168, 255, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-copy h2 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
}

.cta-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.contact-box {
  transition: 0.2s ease;
}

.contact-box:hover {
  transform: translateY(-2px);
  border-color: rgba(77, 168, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 0 24px rgba(77, 168, 255, 0.08);
}

.contact-box span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
}

.contact-box strong {
  font-size: 24px;
  line-height: 1.3;
}

.footer {
  padding: 18px 0 42px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
}

.footer-brand {
  color: var(--text);
  font-weight: 800;
  font-size: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .feature-grid,
  .workflow-grid,
  .screens-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    max-width: 100%;
    margin: 0 auto;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .burger {
    display: inline-block;
  }

  .menu {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 16px;
    background: rgba(10, 12, 24, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu.open {
    display: flex;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-text,
  .section-head p {
    font-size: 16px;
  }

  .toolbar {
    grid-template-columns: repeat(2, 1fr);
  }

  .colors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .screen-card img,
  .screen-placeholder {
    height: 420px;
  }

  .contact-box strong {
    font-size: 20px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
EOF