:root {
  --navy: #07152e;
  --navy-2: #0b1e3c;
  --blue: #356bff;
  --blue-2: #5c8dff;
  --ink: #111827;
  --muted: #617087;
  --line: #e6ebf3;
  --soft: #f6f8fc;
  --white: #fff;
  --radius: 22px;
  --container: 1320px;
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
  overscroll-behavior-x: none;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { max-width: 100%; height: auto; display: block; }
.container { width: min(calc(100% - 64px), var(--container)); margin: 0 auto; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.header-inner { min-height: 96px; display: grid; grid-template-columns: 360px minmax(0,1fr) 440px; align-items: center; column-gap: 28px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; width: 100%; justify-self: start; }
.brand-mark { flex: 0 0 auto; font-size: 22px; font-weight: 800; color: #101a2d; letter-spacing: -0.02em; line-height: 1; }
.brand-logo { white-space: nowrap; }
.brand-logo-accent { color: #356bff; }
.brand-copy { border-left: 1px solid #dfe5ee; padding-left: 12px; font-size: 14px; line-height: 1.35; color: #66738a; white-space: nowrap; }
.brand-copy strong { display: block; color: #202a39; font-size: 16px; margin-bottom: 4px; }
nav { display: flex; align-items: center; justify-content: center; gap: 32px; color: #2f3b50; font-size: 14px; font-weight: 700; justify-self: center; white-space: nowrap; min-width: 0; }
nav a { position: relative; padding: 44px 0; }
nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 34px; height: 2px; border-radius: 2px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: .2s; }
nav a:hover::after, nav a.active::after { transform: scaleX(1); }
.header-contact { display: flex; align-items: center; justify-content: flex-end; gap: 14px; justify-self: end; min-width: 0; }
.phone-stack { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.phone-stack a { font-size: 13px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.45; white-space: nowrap; }
.phone-stack a:last-child { font-weight: 700; }

.social-icons { display: flex; align-items: center; gap: 8px; }
.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f0f4fa;
  color: #1f2a3d;
  transition: background .2s, color .2s, transform .2s;
  overflow: hidden;
}
.social-icons a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.social-icons svg { width: 18px; height: 18px; }

.header-cta { background: var(--navy); color: #fff; border-radius: 13px; padding: 16px 23px; font-size: 14px; font-weight: 800; display: inline-flex; align-items: center; gap: 8px; box-shadow: 0 8px 18px rgba(7,21,46,.12); transition: transform .2s, box-shadow .2s; }
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(7,21,46,.18); }
.mobile-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }

main { padding-top: 96px; }

.hero {
  position: relative;
  background: linear-gradient(135deg, #f7f9fd 0%, #eef3ff 60%, #f9fbff 100%);
  overflow: hidden;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 42vh;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-content { max-width: 600px; text-align: left; flex-shrink: 0; }
.hero-company {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.hero-image { flex-shrink: 0; width: 70%; max-width: 650px; display: flex; justify-content: center; }
.hero-image img { width: 100%; height: auto; max-height: 60vh; object-fit: contain; }
.eyebrow { color: #5a76af; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.hero h1 { font-size: 56px; line-height: 1.05; letter-spacing: -0.03em; color: #111827; margin: 0 0 20px; font-weight: 800; }
.hero p { color: #4b5563; font-size: 18px; line-height: 1.6; margin: 0 0 30px; max-width: 560px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-start; margin-bottom: 35px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 14px 20px; border-radius: 13px; font-weight: 800; font-size: 13px; transition: .2s; text-decoration: none; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 12px 24px rgba(7,21,46,.18); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 28px rgba(7,21,46,.22); }
.btn-light { background: #fff; border: 1px solid #dfe5ef; color: #1f2a3d; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-start; }
.hero-tag { background: rgba(255,255,255,0.7); border: 1px solid #e5e7eb; color: #111827; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; }

section { padding: 82px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.kicker { font-size: 11px; color: #70809a; letter-spacing: .08em; font-weight: 800; text-transform: uppercase; margin-bottom: 9px; }
h2 { margin: 0; font-size: 35px; line-height: 1.08; letter-spacing: -0.035em; }
.section-link { font-size: 12px; font-weight: 800; color: #31415d; display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.section-link:hover { color: var(--blue); }

.catalog { background: #fff; }
.cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.services-cards { grid-template-columns: repeat(4, 1fr); }
.card { border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(180deg, #fff, #fbfcff); padding: 20px; position: relative; min-height: 244px; overflow: hidden; transition: all .3s ease; cursor: pointer; }
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(29,54,93,.08); }
.card-icon { width: 34px; height: 34px; border: 1px solid #d8e1f3; color: var(--blue); border-radius: 10px; display: grid; place-items: center; margin-bottom: 15px; background: #fbfdff; }
.card h3 { margin: 0; font-size: 17px; line-height: 1.22; max-width: 200px; }
.card p { margin: 12px 0 0; color: #65748b; font-size: 12px; line-height: 1.55; max-width: 250px; }
.card-link { position: absolute; left: 20px; bottom: 18px; font-size: 11px; color: var(--blue); font-weight: 800; display: flex; gap: 7px; align-items: center; }
.product-visual { position: absolute; right: -7px; bottom: -10px; width: 57%; height: 60%; display: flex; align-items: center; justify-content: center; }
.product-visual img { width: 100%; height: 100%; object-fit: contain; transition: transform .2s; }
.product-visual .img-xl { transform: scale(1.6); transform-origin: center; }
.product-visual .img-lg { transform: scale(1.3); transform-origin: center; }
.product-visual .print-img { transform: scale(1.6) translateY(5%); transform-origin: center bottom; }
.product-visual .powin-img { transform: scale(1.14) translateX(15%); transform-origin: center; }
.product-visual .img-sm { transform: scale(0.8); transform-origin: center; }

.variant-cards {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.variant-cards.open { display: grid; }
.variant-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #fbfcff);
  padding: 20px;
  min-height: 244px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all .3s ease;
}
.variant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(29,54,93,.08);
  border-color: var(--blue);
}
.variant-card h4 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}
.variant-card .variant-arrow {
  color: var(--blue);
  font-weight: 800;
  font-size: 16px;
}

.variant-img {
  max-width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
}
.variant-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  font-size: 12px;
  color: #65748b;
  text-align: center;
}
.variant-specs li {
  margin: 2px 0;
}
.variant-price {
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 10px;
}
.variant-other {
  font-size: 12px;
  color: #65748b;
  margin: 0 0 8px;
}

.why-us {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  margin-top: 30px;
}
.why-us-header {
  margin-bottom: 28px;
}
.why-us-header .kicker {
  color: #93a7c8;
}
.why-us-header h2 {
  color: #fff;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0;
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 28px;
}
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(92,141,255,0.18);
  color: #7fa0ff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}
.why-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: #fff;
}
.why-item p {
  margin: 0;
  color: #a9bad4;
  font-size: 12px;
  line-height: 1.5;
}

.clients {
  margin-top: 30px;
  background: #f8fafd;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 30px;
}
.clients h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2a3d;
  margin: 0 0 16px;
}
.clients-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.clients-list li {
  font-size: 13px;
  color: #4b5563;
  background: #fff;
  border: 1px solid #e6ebf3;
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
}

.brands { padding-top: 50px; }
.brand-row { display: grid; grid-template-columns: repeat(8, 1fr); gap: 24px; align-items: center; margin-top: 24px; }
.brand-name { color: #59667c; font-weight: 900; font-size: 18px; letter-spacing: -0.03em; text-align: center; }
.brand-name small { font-size: .55em; font-weight: 700; }

.cta { position: relative; overflow: hidden; background: linear-gradient(135deg, #07152e, #0c2550); color: #fff; border-radius: 24px; padding: 54px 56px; margin-top: 28px; }
.cta::before { content: ""; position: absolute; width: 600px; height: 600px; right: -150px; top: -240px; border-radius: 50%; border: 1px solid rgba(105,145,236,.16); box-shadow: 0 0 0 55px rgba(105,145,236,.03), 0 0 0 110px rgba(105,145,236,.02); }
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: center; }
.cta h2 { font-size: 36px; max-width: 600px; }
.cta p { color: #b7c5dc; line-height: 1.6; margin: 16px 0 24px; max-width: 510px; }
.cta-list { display: grid; gap: 8px; font-size: 12px; color: #d6e0f2; }
.cta-list span { display: flex; align-items: center; gap: 8px; }
.cta-visual { position: relative; min-height: 260px; display: flex; align-items: center; justify-content: center; }
.cta-img { width: 130%; max-width: none; max-height: 338px; object-fit: contain; }

.about { background: #f8fafd; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.about-copy p { color: #68768c; line-height: 1.75; font-size: 14px; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 22px; transition: transform .2s, box-shadow .2s; }
.stat:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(29,54,93,.08); }
.stat strong { display: block; color: var(--blue); font-size: 32px; letter-spacing: -0.04em; }
.stat span { color: #65748b; font-size: 11px; line-height: 1.45; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; }
.contact-card, .form-card { border: 1px solid var(--line); border-radius: 20px; padding: 26px; background: #fff; transition: box-shadow .3s; }
.contact-card { background: #f8fafd; }
.contact-card:hover, .form-card:hover { box-shadow: 0 12px 24px rgba(29,54,93,.06); }
.contact-row { display: flex; gap: 12px; margin-top: 18px; }
.contact-row .icon-box { flex: 0 0 36px; }
.contact-row strong { display: block; margin-bottom: 4px; font-size: 12px; }
.contact-row div { color: #65748b; font-size: 12px; line-height: 1.55; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; font-weight: 800; color: #4c5b71; }
.field input, .field textarea { border: 1px solid #dfe6ef; border-radius: 12px; padding: 12px 14px; outline: none; color: #162033; background: #fbfcfe; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: #93aaf0; box-shadow: 0 0 0 4px rgba(53,107,255,.08); }
.form-note { margin-top: 12px; font-size: 10px; color: #8994a6; }
.loader { border: 2px solid rgba(255,255,255,0.3); border-radius: 50%; border-top-color: white; width: 20px; height: 20px; animation: spin 0.6s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.map-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  padding: 20px;
}
.map-card--full { padding: 12px; }
.map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 460px;
  background: #eef2f8;
}
.map-frame iframe { display: block; width: 100%; height: 460px; border: 0; }

footer { background: #fbfcff; border-top: 1px solid var(--line); padding: 40px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; }
.footer-brand { max-width: 250px; }
.footer-brand p { color: #7a879a; font-size: 11px; line-height: 1.55; }
footer h4 { margin: 0 0 14px; font-size: 12px; }
footer li { list-style: none; margin: 9px 0; color: #768398; font-size: 11px; }
footer ul { padding: 0; margin: 0; }
.footer-bottom { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 16px; display: flex; justify-content: space-between; gap: 20px; font-size: 10px; color: #8b96a7; }

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  font-size: 11px;
  color: #4c5b71;
  line-height: 1.3;
  cursor: pointer;
}
.consent-label input {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  cursor: pointer;
  accent-color: var(--blue);
}
.consent-label a {
  color: var(--blue);
  text-decoration: underline;
}

@media (max-width: 1240px) {
  .header-inner { grid-template-columns: minmax(300px,1fr) auto minmax(360px,1fr); column-gap: 22px; }
  .brand-copy { font-size: 13px; }
  .brand-copy strong { font-size: 14px; }
  nav { gap: 20px; font-size: 13px; }
  .header-contact { gap: 10px; }
  .phone-stack a { font-size: 12px; }
  .header-cta { padding: 14px 18px; font-size: 13px; }
}
@media (max-width: 1080px) {
  .header-inner { grid-template-columns: minmax(240px,1fr) auto; min-height: 90px; }
  nav { display: none; }
  .header-contact .header-cta { display: none; }
  .mobile-toggle { display: block; }
  .header-contact { margin-left: auto; }
  .hero .container { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-image { width: 100%; max-width: 400px; margin: 0 auto; }
}
@media (max-width: 980px) {
  .header-inner { min-height: 92px; display: flex; }
  .brand-copy { font-size: 12px; }
  .brand-copy strong { font-size: 13px; }
  .hero-content { max-width: 100%; }
  .hero h1 { font-size: 46px; }
  .hero p { font-size: 16px; }
  .brand-row { grid-template-columns: repeat(4,1fr); }
  .cta { padding: 42px 34px; }
  .services-cards { grid-template-columns: repeat(2,1fr); }
  .why-us-grid { grid-template-columns: 1fr; }
  .why-us { padding: 30px 24px; }
  .clients-list { gap: 6px 12px; }
  .map-frame, .map-frame iframe { min-height: 380px; height: 380px; }
}
@media (max-width: 700px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .header-inner { min-height: 78px; display: flex; justify-content: space-between; align-items: center; }
  main { padding-top: 78px; }
  section { padding: 60px 0; }
  .brand { gap: 6px; }
  .brand-mark { font-size: 18px; }
  .brand-copy {
    display: block;
    font-size: 9px;
    line-height: 1.2;
    padding-left: 6px;
    white-space: normal;
  }
  .brand-copy strong { font-size: 11px; margin-bottom: 2px; }
  .header-contact { gap: 6px; flex-wrap: nowrap; }
  .phone-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    max-width: none;
    width: auto;
    margin-right: 4px;
  }
  .phone-stack a {
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.3;
  }
  .social-icons { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { padding: 8px; flex-shrink: 0; }
  .hero .container { min-height: auto; padding-top: 24px; padding-bottom: 24px; gap: 16px; }
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 15px; }
  .hero-company { font-size: 22px; }
  .hero-image { display: none; }
  .hero-tags { gap: 8px; }
  .hero-tag { font-size: 11px; padding: 5px 10px; }
  .actions .btn { width: 100%; }
  .cards-row { grid-template-columns: 1fr; gap: 14px; }
  .services-cards { grid-template-columns: 1fr; }
  .card { min-height: 220px; padding: 16px; }
  .card h3 { font-size: 16px; }
  .card p { font-size: 11px; }
  .product-visual { right: -5px; bottom: -5px; width: 50%; height: 55%; }
  .variant-cards { grid-template-columns: 1fr; }
  .variant-card { min-height: 180px; }
  .brand-row { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .brand-name { font-size: 16px; }
  .cta { padding: 28px 20px; margin-top: 20px; }
  .cta-grid { grid-template-columns: 1fr; gap: 20px; }
  .cta h2 { font-size: 26px; }
  .cta p { font-size: 14px; }
  .cta-visual { display: none; }
  .stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 16px; }
  .stat strong { font-size: 26px; }
  .stat span { font-size: 10px; }
  .contact-grid { grid-template-columns: 1fr; gap: 16px; }
  .form-grid { grid-template-columns: 1fr; gap: 10px; }
  .field input, .field textarea { padding: 10px 12px; }
  .consent-label { font-size: 10px; }
  .map-card { padding: 8px; }
  .map-card--full { padding: 8px; }
  .map-frame, .map-frame iframe { min-height: 300px; height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-brand { grid-column: 1/-1; }
  .footer-bottom { flex-direction: column; }
  .why-us { padding: 24px 18px; }
  .why-us-header h2 { font-size: 22px; }
  .why-item strong { font-size: 14px; }
  .why-item p { font-size: 11px; }
  .clients { padding: 20px 16px; }
  .clients-list li { font-size: 12px; padding: 6px 10px; white-space: normal; }
  #mobileMenu .social-mobile { display: flex; gap: 16px; margin-top: 8px; }
  #mobileMenu .social-mobile a { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: #2f3b50; }
  #mobileMenu .social-mobile svg { width: 20px; height: 20px; }
}
@media (max-width: 430px) {
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 14px; }
  .hero-company { font-size: 20px; }
  .hero-tag { font-size: 10px; }
  .actions .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .brand-row { gap: 10px; }
  .card { min-height: 200px; }
  .card h3 { font-size: 15px; }
  .variant-card { min-height: 160px; }
  .brand-copy { display: none; }
}