

/* Start:/local/templates/tpropm/template_styles.css?178126364817878*/
/*@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');
*/
/* ── Design Tokens ── */
:root {
  --bg:      oklch(99% 0.002 240);
  --surface: oklch(100% 0 0);
  --fg:      oklch(18% 0.012 250);
  --muted:   oklch(54% 0.012 250);
  --border:  oklch(92% 0.005 250);
  --accent:  #b03c2a; /*oklch(58% 0.18 255);*/

  --font-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  /**/
  --font-body:-apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
  /**/
  --font-mono:    'SF Mono', 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --gutter: clamp(16px, 4vw, 24px);
  --max-width: 1280px;
  --header-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.5rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.25rem); }

.lh-1{
  line-height: 1.3 !important;
}

.mb-4{
  margin-bottom: 4rem;
 }

.display-large {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.spec-mono {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: normal;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Grid Utilities ── */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr)); gap: var(--gutter); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: var(--gutter); }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); gap: var(--gutter); }

/* ── Header / Nav ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: oklch(from var(--surface) l c h / 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.logo img{
  height: 32px;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}
.header-actions-mobile{
  display: none;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
}
.header-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
  transition: color 0.2s;
}
.header-phone:hover { color: var(--accent); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { filter: brightness(1.1); }
.btn-outline {
  background: var(--bg);
  color: var(--fg);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--fg); background: oklch(from var(--fg) l c h / 0.04); }
.btn-large { padding: 1rem 2rem; font-size: 1rem; }

/* ── Section ── */
.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--muted); max-width: 560px; font-size: 1.0625rem; line-height: 1.7; }

/* ── Hero ── */
.hero-b{
  display:flex;min-height:100vh;position:relative;overflow:hidden;
  background:oklch(100% 0 0)
}
.hero-b .col-text{
  flex:1;display:flex;flex-direction:column;justify-content:center;
  padding:4rem clamp(16px,4vw,48px);max-width:560px;position:relative;z-index:2
}
.hero-b .badge{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-b h1{
  font-family:-apple-system,BlinkMacSystemFont,'SF Pro Display',system-ui,sans-serif;
  font-size:clamp(2.25rem,5vw,4rem);
  font-weight:700;letter-spacing:-.03em;line-height:1.05;
  color:oklch(18% 0.012 250);margin-bottom:1.5rem
}
.hero-b p{font-size:1.0625rem;line-height:1.7;color:oklch(54% 0.012 250);margin-bottom:2.5rem;max-width:440px}
.hero-b .actions{display:flex;gap:1rem;flex-wrap:wrap}

.hero-b .btn-primary:hover{opacity:.85}
.hero-b .btn-outline{
  padding:.875rem 2rem;background:transparent;color:oklch(18% 0.012 250);
  border:1px solid oklch(92% 0.005 250);border-radius:4px;font-family:inherit;font-weight:600;font-size:1rem;
  cursor:pointer;transition:all .2s;text-decoration:none
}
.hero-b .btn-outline:hover{border-color:oklch(54% 0.012 250)}
.hero-b .col-visual{
  flex:1;display:grid;grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr;
  gap:2px;background:oklch(92% 0.005 250);position:relative
}
.hero-b .mosaic-item{
  overflow:hidden;background:oklch(96% 0.003 250);position:relative
}
.hero-b .mosaic-item img{width:100%;height:100%;object-fit:cover;display:block}
.hero-b .mosaic-item:first-child{grid-row:1/3}
.hero-b .mosaic-label{
  position:absolute;bottom:1rem;left:1rem;
  font-family:'SF Mono','JetBrains Mono',ui-monospace,monospace;
  font-size:.6875rem;letter-spacing:.05em;text-transform:uppercase;
  color:oklch(100% 0 0);background:oklch(18% 0.012 250 / .7);
  padding:.25rem .75rem;
}


@media(max-width:900px){
  .hero-b{flex-direction:column}
  .hero-b .col-text{max-width:100%;padding:3rem clamp(16px,4vw,48px)}
  .hero-b .col-visual{min-height:50vh}
  .hero-b .mosaic-item:first-child{grid-row:auto}
  .hero-b .mosaic-item:nth-child(4){display:none}
  .hero-b .col-visual{grid-template-columns:1fr 1fr;grid-template-rows:1fr 1fr}
}

/* ── Card ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--muted); }
.card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--border);
  overflow: hidden;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p { color: var(--muted); font-size: 0.9375rem; line-height: 1.6; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ── Product Card ── */
.product-card .card-image { aspect-ratio: 4 / 3; }
.product-card .card-price {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
  margin-top: 0.75rem;
}
.product-card .card-specs {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* ── Stats / Numbers ── */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr)); gap: 2rem; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
}
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  background: var(--surface);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--gutter);
}
.footer-col h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col p,
.footer-col a { font-size: 0.875rem; color: var(--muted); line-height: 2; display: block; }
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ── Page Header ── */
.page-header {
  padding: 4rem 0 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.page-header h1 { margin-bottom: 0.75rem; }
.page-header p { color: var(--muted); max-width: 560px; }

/* ── Promo Card ── */
.promo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.promo-card-image {
  aspect-ratio: 4 / 3;
  background: var(--border);
  overflow: hidden;
}
.promo-card-image img { width: 100%; height: 100%; object-fit: cover; }
.promo-card-body { padding: 2rem; display: flex; flex-direction: column; justify-content: center; }
.promo-card-body .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background: oklch(from var(--accent) l c h / 0.12);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  width: fit-content;
}
.promo-card-body h3 { margin-bottom: 0.75rem; }
.promo-card-body p { color: var(--muted); font-size: 0.9375rem; line-height: 1.6; margin-bottom: 1.5rem; }
.promo-card-body .promo-expiry {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ── Production Timeline ── */
.timeline { position: relative; padding: 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 16px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
}
.timeline-item h3 { margin-bottom: 0.5rem; }
.timeline-item p { color: var(--muted); font-size: 0.9375rem; line-height: 1.6; max-width: 520px; }

/* ── Contact / Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--fg);
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--fg);
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--accent); }
.form-control::placeholder { color: var(--muted); }
textarea.form-control { min-height: 140px; resize: vertical; }
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-info-item .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 600;
  min-width: 80px;
}
.contact-info-item .value { font-size: 0.9375rem; }
.contact-map {
  width: 100%;
  height: 240px;
  background: var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.875rem;
}

/* ── Filter Bar ── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.filter-btn {
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--muted); color: var(--fg); }
.filter-btn.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ── Catalog ── */
.category-section:not(:last-child) { margin-bottom: 4rem; padding-bottom: 4rem; border-bottom: 1px solid var(--border); }
.category-section h3 { margin-bottom: 0.5rem; }
.category-section > p { color: var(--muted); margin-bottom: 2rem; }

/* ── Equipment Card ── */
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: var(--gutter); }
.equipment-card { padding: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); }
.equipment-card h3 { margin-bottom: 0.5rem; }
.equipment-card p { color: var(--muted); font-size: 0.9375rem; line-height: 1.6; }
.equipment-card .spec { font-family: var(--font-mono); font-size: 0.8125rem; color: var(--accent); margin-top: 0.75rem; }


/* ── Mobile Nav Toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: 0.2s;
}

/* ── Section Divider ── */
.section-divider {
  height: 1px;
  background: var(--border);
  border: none;
  margin: 0;
}

/* ── Grain overlay ── */
.grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: oklch(from #000 l c h / 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  padding: var(--gutter);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(12px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--muted);
  font-size: 1.125rem;
  transition: color 0.2s, border-color 0.2s;
}
.modal-close:hover {
  color: var(--fg);
  border-color: var(--muted);
}
.modal h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}
.modal > p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-image { width: 45%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .promo-card { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 1.5rem var(--gutter);
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .header-actions { display: none; }
  .nav-links .header-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }
  .hero { flex-direction: column; padding-top: 2rem; }
  .hero-content { max-width: 100%; }
  .hero-image {
    position: static;
    transform: none;
    width: 100%;
    height: 300px;
    margin-top: 2rem;

  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

/* End */


/* Start:/local/templates/tpropm/components/bitrix/breadcrumb/template1/style.css?1781009796643*/
.bx-breadcrumb {
	margin: 10px 0;
}
.bx-breadcrumb .grey{
	color: #aaa;
	padding-right:5px;
}
.bx-breadcrumb i {
	color: #b5bdc2;
	line-height: 13px;
	font-size: 12px;
	vertical-align: middle;
	margin-right: 5px;
}
.bx-breadcrumb .bx-breadcrumb-item {
	float: left;
	margin-bottom: 10px;
	white-space: nowrap;
	line-height: 13px;
	vertical-align: middle;
	margin-right: 10px;
}
.bx-breadcrumb .bx-breadcrumb-item span {
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 13px;
	white-space: normal;
}
.bx-breadcrumb .bx-breadcrumb-item a {border-bottom: none;}
.bx-breadcrumb .bx-breadcrumb-item a:hover {}

/* End */
/* /local/templates/tpropm/template_styles.css?178126364817878 */
/* /local/templates/tpropm/components/bitrix/breadcrumb/template1/style.css?1781009796643 */
