

/* Start:/postavka-promyshlennogo-oborudovaniya/style.css?178308535817322*/
:root {
  --red: #c40e27;
  --red-dark: #a00b1f;
  --navy: #0d1f40;
  --navy-2: #1a3a6e;
  --ink: #1a1a2e;
  --ink-2: #2d3748;
  --ink-3: #4a5568;
  --muted: #6b7c99;
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --bg-soft-2: #eef2f7;
  --line: #e2e8f0;
  --accent-blue: #1a6ec8;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { /*font-family: 'Roboto', sans-serif; color: var(--ink); font-size: 16px; line-height: 1.6;*/ background: var(--bg); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* SITE NAV */
.site-nav { background: #fff; border-bottom: 2px solid var(--line); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.nav-logo-text { font-size: 1.35rem; font-weight: 700; color: var(--navy-2); letter-spacing: 0.04em; }
.nav-phone { font-size: 0.92rem; font-weight: 500; color: var(--navy-2); }
.nav-btn { background: var(--red); color: #fff; padding: 0.55rem 1.4rem; border-radius: 3px; font-size: 0.88rem; font-weight: 500; transition: background 0.2s; }
.nav-btn:hover { background: var(--red-dark); }

/* HERO — like tradest top section */
.hero {
  background: linear-gradient(135deg, #0d1f40 0%, #1a3a6e 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0 4.5rem;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1600&auto=format&fit=crop&q=60');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}
.hero-wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
.hero-tag { display: inline-block; background: var(--red); color: #fff; font-size: 0.73rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 2px; margin-bottom: 1.25rem; }
.hero h1 { font-size: clamp(1.85rem, 3.6vw, 2.85rem); font-weight: 700; line-height: 1.18; margin-bottom: 1.25rem; max-width: 640px;text-align: left;color: inherit;}
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.78); max-width: 560px; margin-bottom: 1.75rem; line-height: 1.65; }
.hero-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2rem; }
.hero-bullets li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.92); font-size: 0.96rem; line-height: 1.45; }
.hero-bullets li::before { content: ''; display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 0.5rem; }
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.btn-red { background: var(--red); color: #fff; padding: 0.9rem 2rem; border-radius: 3px; font-weight: 500; font-size: 0.95rem; transition: background 0.2s; }
.btn-red:hover { background: var(--red-dark); }
.btn-outline-w { border: 2px solid rgba(255,255,255,0.5); color: #fff; padding: 0.9rem 2rem; border-radius: 3px; font-size: 0.95rem; transition: border-color 0.2s; }
.btn-outline-w:hover { border-color: #fff; }

/* HERO FORM CARD */
.hero-form {
  background: #fff;
  border-radius: 6px;
  padding: 1.75rem;
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}
.hero-form h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.hero-form p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.25rem; }
.hero-form input { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--line); border-radius: 3px; font-size: 0.92rem; font-family: inherit; margin-bottom: 0.65rem; }
.hero-form input:focus { outline: none; border-color: var(--red); }
.hero-form button { width: 100%; background: var(--red); color: #fff; border: none; padding: 0.85rem; border-radius: 3px; font-weight: 500; font-size: 0.95rem; cursor: pointer; transition: background 0.2s; font-family: inherit; }
.hero-form button:hover { background: var(--red-dark); }
.hero-form-note { font-size: 0.75rem; color: var(--muted); margin-top: 0.65rem; text-align: center; }
.hero-form-note a { color: var(--accent-blue); }

/* STATS STRIP */
.stats-strip { background: var(--navy); display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell { padding: 1.5rem 1.5rem; border-right: 1px solid rgba(255,255,255,0.12); text-align: center; }
.stat-cell:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 0.3rem; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* SECTION GENERICS */
.sec { padding: 4.5rem 0; }
.sec-soft { background: var(--bg-soft); }
.sec-header { margin-bottom: 2.5rem; }
.sec-label { font-size: 0.73rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-blue); margin-bottom: 0.65rem; }
h2.sec-title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 700; color: var(--navy); line-height: 1.22;text-align: left; }
.sec-intro { font-size: 1.02rem; color: var(--ink-3); margin-top: 1rem; max-width: 720px; line-height: 1.65; }

/* TASKS GRID — 4 cards */
.tasks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.task-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.1rem;
  align-items: start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.task-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,31,64,0.08); }
.task-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--navy-2), var(--navy)); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; }
.task-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.45rem; line-height: 1.3; }
.task-card p { font-size: 0.92rem; color: var(--ink-3); line-height: 1.6; }

/* INFOGRAPHIC — 2 rows of 3 cards with connecting arrows */
.infographic { display: flex; flex-direction: column; gap: 2rem; }
.infographic-row { display: grid; grid-template-columns: 1fr 60px 1fr 60px 1fr; gap: 0; align-items: stretch; }
.infographic-step {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(13,31,64,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--red);
}
.ig-icon-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.ig-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  flex-shrink: 0;
}
.ig-num { font-size: 2.25rem; font-weight: 700; color: var(--red); line-height: 1; opacity: 0.85; }
.infographic-step h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.3; }
.infographic-step p { font-size: 0.88rem; color: var(--ink-3); line-height: 1.6; }
.ig-arrow {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ig-arrow::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--red) 0, var(--red) 6px, transparent 6px, transparent 12px);
}
.ig-arrow::after {
  content: '';
  position: absolute;
  right: 4px;
  width: 0; height: 0;
  border-left: 8px solid var(--red);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.ig-arrow.reverse::after {
  right: auto;
  left: 4px;
  border-left: none;
  border-right: 8px solid var(--red);
}
.infographic-row.reverse { direction: rtl; }
.infographic-row.reverse > * { direction: ltr; }

/* RISKS — list with alternating layout, mimics tradest "На деле отвечаем за риски" */
.risks-list { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.risk-card {
  background: #fff;
  border-left: 4px solid var(--red);
  border-radius: 0 6px 6px 0;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}
.risk-card h3 { font-size: 1.08rem; font-weight: 700; color: var(--red); line-height: 1.3; }
.risk-card p { font-size: 0.94rem; color: var(--ink-2); line-height: 1.65; }

/* CASES PREVIEW */
.cases-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.case-preview {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.case-preview:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(13,31,64,0.12); }
.case-preview.featured { grid-column: span 2; }
.case-preview-img { height: 240px; overflow: hidden; position: relative; background: var(--bg-soft-2); }
.case-preview.featured .case-preview-img { height: 320px; }
.case-preview-img img { width: 100%; height: 100%; object-fit: cover; }
.case-preview-badge { position: absolute; top: 1rem; left: 1rem; background: var(--red); color: #fff; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 2px; z-index: 1; }
.case-preview-body { padding: 1.5rem 1.65rem 1.65rem; display: flex; flex-direction: column; flex: 1; }
.case-preview-cat { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-blue); margin-bottom: 0.55rem; }
.case-preview h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.7rem; line-height: 1.3; }
.case-preview-desc { font-size: 0.9rem; color: var(--ink-3); line-height: 1.6; margin-bottom: 1.1rem; flex: 1; }
.case-preview-stats { display: flex; gap: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.cps-item .cps-num { font-size: 1.1rem; font-weight: 700; color: var(--navy); line-height: 1.15; }
.cps-item .cps-lbl { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }
.case-preview-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red); font-weight: 500; font-size: 0.9rem; margin-top: 1rem; }
.case-preview-link:hover { color: var(--red-dark); }

/* WHY-US — 5 items with red accent numbers */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.why-item { background: #fff; padding: 1.85rem; }
.why-icon { width: 44px; height: 44px; background: #fff3f4; color: var(--red); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 1rem; }
.why-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.3; }
.why-item p { font-size: 0.88rem; color: var(--ink-3); line-height: 1.6; }

/* CTA BANNER */
.cta-banner { background: var(--red); padding: 3.5rem 0;margin-bottom: 50px; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-inner h2 { color: #fff; font-size: clamp(1.25rem, 2vw, 1.7rem); font-weight: 700; margin-bottom: 0.4rem; }
.cta-inner p { color: rgba(255,255,255,0.85); font-size: 0.96rem; }
.btn-white-strong { background: #fff; color: var(--red); padding: 1rem 2.25rem; border-radius: 3px; font-weight: 700; font-size: 0.95rem; white-space: nowrap; transition: opacity 0.2s; }
.btn-white-strong:hover { opacity: 0.92; }

/* cases */
/* PAGE HEAD */
.page-head { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); padding: 3.5rem 0; position: relative; overflow: hidden; }
.page-head::after { content: ''; position: absolute; right: -100px; bottom: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(196, 14, 39, 0.2), transparent 70%); border-radius: 50%; }
.page-head-inner { position: relative; z-index: 1; }
.page-head .label { display: inline-block; background: var(--red); color: #fff; font-size: 0.73rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.35rem 0.9rem; border-radius: 2px; margin-bottom: 1.1rem; }
.page-head h1 { font-size: clamp(1.75rem, 3.5vw, 2.55rem); font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 0.85rem; max-width: 800px;text-align: left; }
.page-head p { font-size: 1.02rem; color: rgba(255,255,255,0.7); max-width: 620px; line-height: 1.65; }

.back-to-landing { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7) !important; font-size: 0.88rem; margin-bottom: 1.5rem; transition: color 0.2s; }
.back-to-landing:hover { color: #fff; }

.cases-list { padding: 4rem 0; background: var(--bg-soft); }
.case-card { background: #fff; border-radius: 6px; overflow: hidden; box-shadow: 0 4px 18px rgba(13, 31, 64, 0.07); margin-bottom: 2.5rem; border: 1px solid var(--line); scroll-margin-top: 80px; }
.case-card:last-child { margin-bottom: 0; }

.case-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.case-photos.single { grid-template-columns: 1fr; }
.case-photo-wrap { height: 320px; overflow: hidden; background: var(--bg-soft); }
.case-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

.case-head { background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 100%); padding: 2rem 2.5rem; color: #fff; display: grid; grid-template-columns: 1fr 220px; gap: 2rem; align-items: center; }
.case-num { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #89b4e8; margin-bottom: 0.55rem; }
.case-head h2 { font-size: 1.45rem; font-weight: 700; line-height: 1.25; margin-bottom: 0.6rem;color: #fff;text-align: left; }
.case-head .client { font-size: 0.92rem; color: rgba(255,255,255,0.7); line-height: 1.55; }
.case-side-stats { display: flex; flex-direction: column; gap: 0.75rem; }
.side-stat { background: rgba(255,255,255,0.08); border-left: 3px solid var(--red); padding: 0.7rem 0.9rem; border-radius: 0 3px 3px 0; }
.side-stat-num { font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.2; }
.side-stat-lbl { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

.case-body { padding: 2.5rem; }
.case-section { margin-bottom: 1.75rem; }
.case-section:last-child { margin-bottom: 0; }
.case-section h3 { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-blue); margin-bottom: 0.65rem; }
.case-section p { font-size: 0.94rem; color: var(--ink-2); line-height: 1.65; }
.case-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.4rem; }
.case-section ul li { font-size: 0.92rem; color: var(--ink-3); padding-left: 1.25rem; position: relative; line-height: 1.55; }
.case-section ul li::before { content: '→'; position: absolute; left: 0; color: var(--red); font-size: 0.85rem; top: 1px; }

.problem-box { background: #fff5f6; border-left: 4px solid var(--red); border-radius: 0 4px 4px 0; padding: 1.1rem 1.4rem; }
.problem-box h3 { color: var(--red); }
.problem-box p { color: var(--ink-2); font-size: 0.92rem; }

.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; margin-top: 0.5rem; }
.r-cell { background: var(--bg-soft); border-radius: 4px; padding: 1rem; text-align: center; }
.r-cell .num { font-size: 1.35rem; font-weight: 700; color: var(--navy-2); line-height: 1.15; margin-bottom: 0.25rem; }
.r-cell .lbl { font-size: 0.78rem; color: var(--muted); line-height: 1.35; }

.tag-row { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.4rem; }
.tag { background: var(--bg-soft); color: var(--navy-2); font-size: 0.78rem; font-weight: 500; padding: 0.3rem 0.75rem; border-radius: 12px; border: 1px solid var(--line); }


/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .infographic-row { grid-template-columns: 1fr; gap: 1rem; }
  .infographic-row.reverse { direction: ltr; }
  .ig-arrow { display: none; }
}
@media (max-width: 820px) {
  .case-photos { grid-template-columns: 1fr; }
  .case-photo-wrap { height: 240px; }
  .case-head { grid-template-columns: 1fr; padding: 1.75rem; }
  .case-body { padding: 1.75rem; }
  .result-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
  .nav-phone { display: none; }
  .site-nav { padding: 0 1rem; }
}
@media (max-width: 720px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .tasks-grid { grid-template-columns: 1fr; }
  .risk-card { grid-template-columns: 1fr; gap: 0.6rem; }
  .cases-preview-grid { grid-template-columns: 1fr; }
  .case-preview.featured { grid-column: span 1; }
  .case-preview-img, .case-preview.featured .case-preview-img { height: 200px; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: stretch; }
  .nav-phone { display: none; }
  .site-nav { padding: 0 1rem; }
  .breadcrumb { padding: 0.65rem 1rem; }
}
/* End */
/* /postavka-promyshlennogo-oborudovaniya/style.css?178308535817322 */
