  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue:        #0B3D91;
    --blue-deep:   #082C6B;
    --blue-bright: #1E5BD6;
    --blue-soft:   #E8EFFB;
    --blue-line:   #C9D7F1;
    --white:       #FFFFFF;
    --bg-soft:     #F4F6FA;
    --bg-soft-2:   #ECF0F7;
    --text-dark:   #0F1729;
    --text-mid:    #5A6580;
    --text-light:  #8892A6;
    --border:      #E2E8F0;
    --accent:      #FFB800;
    --success:     #16A34A;
    --radius-sm:   4px;
    --radius:      8px;
    --radius-lg:   16px;
  }

  html { scroll-behavior: smooth; }
  body {
    font-family: 'Manrope', system-ui, sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── SWITCHER ─── */

  .variant { display: none; }
  .variant.active { display: block; }

  /* ─── NAV ─── */
  nav {
    position: sticky; top: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 76px;
    background: var(--white); border-bottom: 1px solid var(--border);
  }
  .logo-wrap { display: flex; align-items: center; gap: 14px; text-decoration: none; }
  .logo-mark {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Onest', sans-serif; font-weight: 800; font-size: 20px;
    color: var(--white); letter-spacing: -.5px;
    box-shadow: 0 4px 14px rgba(11,61,145,.25);
  }
  .logo-text { display: flex; flex-direction: column; line-height: 1.05; }
  .logo-text .lt-top {
    font-family: 'Onest', sans-serif; font-size: 10px; letter-spacing: 2.5px;
    color: var(--text-light); text-transform: uppercase; font-weight: 600;
  }
  .logo-text .lt-main {
    font-family: 'Onest', sans-serif; font-size: 19px; font-weight: 800;
    color: var(--blue); letter-spacing: -.3px;
  }
  .nav-links { display: flex; gap: 30px; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--text-dark);
    font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 600;
    transition: color .2s; position: relative;
  }
  .nav-links a:hover { color: var(--blue-bright); }
  .nav-cta {
    padding: 12px 24px;
    background: var(--blue); color: var(--white);
    font-family: 'Onest', sans-serif; font-weight: 600; font-size: 13px;
    letter-spacing: .5px; border: none; cursor: pointer;
    text-decoration: none; border-radius: var(--radius-sm);
    transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
  }
  .nav-cta:hover { background: var(--blue-bright); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(11,61,145,.3); }
  .nav-phone {
    font-family: 'Onest', sans-serif; font-weight: 700; font-size: 15px;
    color: var(--text-dark); text-decoration: none; letter-spacing: .3px;
  }
  .nav-phone:hover { color: var(--blue-bright); }

  /* ─── HERO A — clean editorial ─── */
  .hero-a {
    position: relative; min-height: 88vh; padding: 60px 48px;
    background: var(--white);
    overflow: hidden;
  }
  .hero-a::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(var(--blue-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--blue-line) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: .25;
    mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, black 30%, transparent 80%);
  }
  .hero-a-grid {
    position: relative; max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px;
    min-height: 70vh; align-items: center;
  }
  .hero-a-content { position: relative; z-index: 2; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px; border: 1px solid var(--blue-line);
    background: var(--blue-soft); border-radius: 100px;
    font-family: 'Onest', sans-serif; font-size: 12px; color: var(--blue);
    letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
    margin-bottom: 28px;
  }
  .hero-tag .pulse {
    width: 8px; height: 8px; background: var(--success);
    border-radius: 50%; animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.2); }
  }
  .hero-a h1 {
    font-family: 'Onest', sans-serif; font-weight: 800;
    font-size: clamp(40px, 5.5vw, 78px); line-height: .95;
    color: var(--text-dark); letter-spacing: -2.5px;
    margin-bottom: 28px;
  }
  .hero-a h1 .accent {
    color: var(--blue-bright); position: relative;
  }
  .hero-a h1 .accent::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
    height: 8px; background: var(--accent); z-index: -1;
    transform: skew(-12deg);
  }
  .hero-a p.lead {
    font-size: 18px; color: var(--text-mid); max-width: 540px;
    margin-bottom: 40px; line-height: 1.55;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    padding: 16px 32px; background: var(--blue); color: var(--white);
    border: none; border-radius: var(--radius-sm); cursor: pointer;
    font-family: 'Onest', sans-serif; font-weight: 600; font-size: 15px;
    letter-spacing: .3px; transition: all .25s;
    text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 6px 20px rgba(11,61,145,.18);
  }
  .btn-primary:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(11,61,145,.3); }
  .btn-ghost {
    padding: 16px 32px; background: transparent; color: var(--text-dark);
    border: 1.5px solid var(--border); border-radius: var(--radius-sm); cursor: pointer;
    font-family: 'Onest', sans-serif; font-weight: 600; font-size: 15px;
    letter-spacing: .3px; transition: all .25s;
    text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-ghost:hover { border-color: var(--blue-bright); color: var(--blue-bright); }

  .hero-a-vis {
    position: relative; height: 480px;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-panel-stack {
    position: relative; width: 100%; max-width: 460px; height: 460px;
    display: flex; flex-direction: column; gap: 0; justify-content: center;
  }
  .hp-layer {
    position: relative; padding: 22px 26px;
    background: var(--white); border: 1px solid var(--border);
    border-left: 4px solid var(--blue-bright);
    transition: all .3s; transform: translateX(0);
    display: flex; justify-content: space-between; align-items: center;
  }
  .hp-layer:hover { transform: translateX(8px); border-left-color: var(--accent); box-shadow: 0 8px 24px rgba(11,61,145,.08); }
  .hp-layer:nth-child(1) { animation: slideIn .6s ease-out; }
  .hp-layer:nth-child(2) { animation: slideIn .6s ease-out .1s backwards; background: var(--blue-soft); }
  .hp-layer:nth-child(3) { animation: slideIn .6s ease-out .2s backwards; background: var(--bg-soft); height: 100px; }
  .hp-layer:nth-child(4) { animation: slideIn .6s ease-out .3s backwards; background: var(--blue-soft); }
  .hp-layer:nth-child(5) { animation: slideIn .6s ease-out .4s backwards; }
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .hp-name {
    font-family: 'Onest', sans-serif; font-weight: 700; font-size: 14px;
    color: var(--text-dark); letter-spacing: .3px;
  }
  .hp-spec { font-size: 12px; color: var(--text-mid); font-family: 'Manrope', sans-serif; }
  .hero-vis-label {
    position: absolute; top: -20px; left: 0;
    font-family: 'Onest', sans-serif; font-size: 11px; letter-spacing: 2px;
    color: var(--text-light); text-transform: uppercase; font-weight: 600;
  }
  .hero-vis-arrow {
    position: absolute; bottom: -32px; right: 0;
    font-family: 'Onest', sans-serif; font-size: 11px; letter-spacing: 1px;
    color: var(--blue-bright); text-transform: uppercase; font-weight: 600;
    display: flex; align-items: center; gap: 8px;
  }
  .hero-a-floats {
    position: absolute; top: 80px; right: -40px;
    font-family: 'Onest', sans-serif; font-size: 220px; font-weight: 800;
    color: rgba(11,61,145,.04); line-height: 1; pointer-events: none;
    z-index: 0; letter-spacing: -10px;
  }

  /* ─── HERO B — bold dark editorial ─── */
  .hero-b {
    position: relative; min-height: 90vh; padding: 80px 48px 100px;
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 50%, var(--blue-bright) 100%);
    overflow: hidden; color: var(--white);
  }
  .hero-b::before {
    content: ''; position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 80px 80px;
  }
  .hero-b::after {
    content: ''; position: absolute; right: -10%; top: 0; bottom: 0; width: 60%;
    background: radial-gradient(ellipse at center, rgba(255,184,0,.12) 0%, transparent 60%);
  }
  .hero-b-grid {
    position: relative; max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    min-height: 65vh; align-items: center; z-index: 2;
  }
  .hero-b-content { position: relative; }
  .hero-b-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px; border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.05); backdrop-filter: blur(10px);
    border-radius: 100px;
    font-family: 'Onest', sans-serif; font-size: 12px; color: rgba(255,255,255,.85);
    letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
    margin-bottom: 32px;
  }
  .hero-b h1 {
    font-family: 'Onest', sans-serif; font-weight: 800;
    font-size: clamp(40px, 6vw, 92px); line-height: .92;
    color: var(--white); letter-spacing: -3px;
    margin-bottom: 28px;
  }
  .hero-b h1 .yellow { color: var(--accent); }
  .hero-b p.lead {
    font-size: 19px; color: rgba(255,255,255,.8); max-width: 520px;
    margin-bottom: 44px; line-height: 1.55;
  }
  .hero-b .btn-primary {
    background: var(--accent); color: var(--text-dark);
    box-shadow: 0 6px 24px rgba(255,184,0,.3);
  }
  .hero-b .btn-primary:hover { background: #FFC93C; box-shadow: 0 12px 32px rgba(255,184,0,.45); }
  .hero-b .btn-ghost {
    color: var(--white); border-color: rgba(255,255,255,.3);
  }
  .hero-b .btn-ghost:hover { border-color: var(--white); color: var(--accent); }

  .hero-b-stats {
    position: relative;
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(10px); background: rgba(255,255,255,.03);
  }
  .hb-stat {
    padding: 36px 32px; border: 1px solid rgba(255,255,255,.08);
    position: relative;
  }
  .hb-stat-num {
    font-family: 'Onest', sans-serif; font-weight: 800;
    font-size: clamp(36px, 4.5vw, 64px); color: var(--white);
    letter-spacing: -2px; line-height: 1; margin-bottom: 8px;
  }
  .hb-stat-num .unit { font-size: .5em; color: rgba(255,255,255,.5); margin-left: 4px; }
  .hb-stat-label {
    font-family: 'Onest', sans-serif; font-size: 12px; color: rgba(255,255,255,.65);
    letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
  }
  .hb-bigword {
    position: absolute; right: 48px; bottom: 30px;
    font-family: 'Onest', sans-serif; font-weight: 800;
    font-size: clamp(80px, 14vw, 200px); line-height: 1;
    color: rgba(255,255,255,.05); letter-spacing: -8px; pointer-events: none;
    z-index: 1;
  }

  /* ─── SHARED SECTIONS ─── */
  .section { padding: 100px 48px; position: relative; }
  .section.alt { background: var(--bg-soft); }
  .section.dark { background: var(--text-dark); color: var(--white); }
  .section.blue { background: var(--blue); color: var(--white); }
  .container { max-width: 1400px; margin: 0 auto; }

  .section-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 56px; gap: 40px; flex-wrap: wrap;
  }
  .section-tag {
    font-family: 'Onest', sans-serif; font-size: 11px; letter-spacing: 3px;
    color: var(--blue-bright); text-transform: uppercase; margin-bottom: 14px;
    font-weight: 700; display: flex; align-items: center; gap: 10px;
  }
  .section-tag::before {
    content: ''; width: 24px; height: 2px; background: var(--blue-bright);
  }
  .section-title {
    font-family: 'Onest', sans-serif; font-size: clamp(32px, 4vw, 56px);
    font-weight: 800; letter-spacing: -1.5px; line-height: 1.05;
    color: var(--text-dark); max-width: 700px;
  }
  .section.dark .section-title, .section.blue .section-title { color: var(--white); }
  .section.dark .section-tag, .section.blue .section-tag { color: var(--accent); }
  .section.dark .section-tag::before, .section.blue .section-tag::before { background: var(--accent); }
  .section-link {
    font-family: 'Onest', sans-serif; font-size: 14px; color: var(--blue);
    text-decoration: none; font-weight: 600; letter-spacing: .3px;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 0; border-bottom: 1.5px solid var(--blue);
    transition: all .2s;
  }
  .section-link:hover { color: var(--blue-bright); border-color: var(--blue-bright); }

  /* ─── STATS BAR ─── */
  .stats-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    max-width: 1400px; margin: 0 auto;
  }
  .stat-cell {
    padding: 48px 36px; border-right: 1px solid var(--border);
    position: relative;
  }
  .stat-cell:last-child { border-right: none; }
  .stat-cell:hover { background: var(--bg-soft); }
  .stat-num {
    font-family: 'Onest', sans-serif; font-weight: 800;
    font-size: 56px; color: var(--blue); letter-spacing: -2.5px; line-height: 1;
    margin-bottom: 10px;
  }
  .stat-num .unit { font-size: 24px; color: var(--text-light); margin-left: 4px; }
  .stat-label {
    font-family: 'Manrope', sans-serif; font-size: 14px; color: var(--text-mid);
    line-height: 1.4;
  }

  /* ─── PRODUCTS ─── */
  .products-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .product-card {
    position: relative; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 40px; cursor: pointer;
    transition: all .3s; overflow: hidden;
    min-height: 280px; display: flex; flex-direction: column; justify-content: space-between;
  }
  .product-card:hover {
    border-color: var(--blue-bright);
    box-shadow: 0 20px 50px rgba(11,61,145,.12); transform: translateY(-4px);
  }
  .product-card::after {
    content: ''; position: absolute; right: -50px; top: -50px;
    width: 200px; height: 200px; border-radius: 50%;
    background: radial-gradient(circle, var(--blue-soft) 0%, transparent 70%);
    transition: all .4s; opacity: 0;
  }
  .product-card:hover::after { opacity: 1; right: -30px; top: -30px; }
  .pc-num {
    font-family: 'Onest', sans-serif; font-weight: 800;
    font-size: 14px; color: var(--blue-bright);
    letter-spacing: 2px; margin-bottom: 16px;
  }
  .pc-title {
    font-family: 'Onest', sans-serif; font-weight: 700; font-size: 28px;
    color: var(--text-dark); letter-spacing: -.5px; margin-bottom: 12px; line-height: 1.1;
  }
  .pc-desc {
    color: var(--text-mid); font-size: 15px; line-height: 1.55;
    margin-bottom: 24px;
  }
  .pc-tags {
    display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px;
  }
  .pc-tag {
    padding: 6px 12px; background: var(--bg-soft); border-radius: 100px;
    font-size: 12px; color: var(--text-mid); font-weight: 500;
  }
  .pc-arrow {
    font-family: 'Onest', sans-serif; font-weight: 600; font-size: 14px;
    color: var(--blue-bright); display: flex; align-items: center; gap: 8px;
    letter-spacing: .3px;
  }

  /* ─── INTERACTIVE PANEL ─── */
  .panel-explorer {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
    align-items: center;
  }
  .panel-svg-wrap {
    position: relative; background: var(--white);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 40px; min-height: 480px;
    display: flex; align-items: center; justify-content: center;
  }
  .panel-svg-wrap::before {
    content: 'РАЗРЕЗ ПАНЕЛИ'; position: absolute; top: 20px; left: 24px;
    font-family: 'Onest', sans-serif; font-size: 10px; letter-spacing: 2px;
    color: var(--text-light); font-weight: 700;
  }
  #panelSvg { width: 100%; max-width: 600px; height: auto; }
  .panel-layer {
    cursor: pointer; transition: all .25s;
  }
  .panel-layer:hover .layer-rect { opacity: .85; }
  .panel-layer.active .layer-rect { stroke: var(--accent); stroke-width: 3; }
  .panel-layer.active .layer-label { fill: var(--blue); font-weight: 700; }
  .panel-layer .layer-num {
    fill: var(--white); font-family: 'Onest', sans-serif;
    font-weight: 800; font-size: 14px;
  }

  .panel-info { padding: 0 16px; }
  .panel-info-tag {
    font-family: 'Onest', sans-serif; font-size: 11px; letter-spacing: 2px;
    color: var(--blue-bright); text-transform: uppercase; font-weight: 700;
    margin-bottom: 14px; display: inline-block;
  }
  .panel-info h3 {
    font-family: 'Onest', sans-serif; font-weight: 800;
    font-size: 38px; letter-spacing: -1px; line-height: 1.05;
    color: var(--text-dark); margin-bottom: 18px;
  }
  .panel-info-desc {
    color: var(--text-mid); font-size: 16px; line-height: 1.6;
    margin-bottom: 28px;
  }
  .panel-info-specs {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    margin-bottom: 28px;
  }
  .pi-spec {
    padding: 16px; background: var(--bg-soft); border-radius: var(--radius-sm);
    border-left: 3px solid var(--blue-bright);
  }
  .pi-spec-label {
    font-size: 11px; color: var(--text-light); letter-spacing: 1.5px;
    text-transform: uppercase; font-weight: 600; margin-bottom: 4px;
    font-family: 'Onest', sans-serif;
  }
  .pi-spec-val {
    font-family: 'Onest', sans-serif; font-weight: 700; font-size: 16px;
    color: var(--text-dark);
  }
  .panel-hint {
    padding: 14px 18px; background: var(--blue-soft);
    border-radius: var(--radius-sm); font-size: 13px; color: var(--blue);
    display: flex; align-items: center; gap: 10px; font-weight: 500;
  }
  .panel-hint .arrow { font-size: 18px; }

  /* ─── CONFIGURATOR ─── */
  .config-shell {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 32px;
    align-items: start;
  }
  .config-main {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
  }
  .config-stepper {
    display: none;
  }
  .step-pill {
    display: flex; align-items: center; gap: 8px; padding: 14px 0;
    margin-right: 24px; cursor: pointer; opacity: .4;
    transition: opacity .2s; white-space: nowrap; position: relative;
  }
  .step-pill.done { opacity: 1; }
  .step-pill.active {
    opacity: 1; border-bottom: 2px solid var(--blue-bright);
    margin-bottom: -1px;
  }
  .step-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--bg-soft); color: var(--text-mid);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Onest', sans-serif; font-weight: 700; font-size: 13px;
    transition: all .2s;
  }
  .step-pill.done .step-num { background: var(--success); color: var(--white); }
  .step-pill.active .step-num { background: var(--blue-bright); color: var(--white); }
  .step-name {
    font-family: 'Onest', sans-serif; font-size: 13px; font-weight: 600;
    color: var(--text-dark); letter-spacing: .2px;
  }
  .step-pane {
    display: none; padding: 36px 32px;
  }
  .step-pane.active { display: block; animation: fadeIn .35s ease-out; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .step-question {
    font-family: 'Onest', sans-serif; font-weight: 700; font-size: 22px;
    color: var(--text-dark); margin-bottom: 6px; letter-spacing: -.3px;
  }
  .step-hint {
    font-size: 14px; color: var(--text-mid); margin-bottom: 24px;
  }
  .options-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  }
  .options-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .options-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .opt {
    padding: 18px 20px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); cursor: pointer; background: var(--white);
    transition: all .2s; text-align: left;
    font-family: 'Manrope', sans-serif; position: relative;
  }
  .opt:hover { border-color: var(--blue-bright); background: var(--blue-soft); }
  .opt.selected {
    border-color: var(--blue-bright); background: var(--blue-soft);
    box-shadow: 0 0 0 3px rgba(30,91,214,.1);
  }
  .opt.selected::after {
    content: '✓'; position: absolute; top: 12px; right: 14px;
    width: 22px; height: 22px; background: var(--blue-bright); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700;
  }
  .opt-title {
    font-family: 'Onest', sans-serif; font-weight: 700; font-size: 15px;
    color: var(--text-dark); margin-bottom: 4px;
  }
  .opt-sub {
    font-size: 12px; color: var(--text-mid); line-height: 1.4;
  }
  .input-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
    margin-top: 16px;
  }
  .input-row--2 { grid-template-columns: 1fr 1fr; }
  .input-field {
    padding: 14px 16px; border: 1.5px solid var(--border);
    border-radius: var(--radius-sm); font-size: 15px; font-family: inherit;
    background: var(--white); transition: border-color .2s;
  }
  .input-field:focus { outline: none; border-color: var(--blue-bright); }
  .input-field-label {
    font-size: 11px; color: var(--text-light); letter-spacing: 1.5px;
    text-transform: uppercase; font-weight: 700; margin-bottom: 6px;
    font-family: 'Onest', sans-serif;
  }
  .step-nav {
    display: flex; justify-content: space-between; gap: 12px;
    margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
  }
  .btn-step-back, .btn-step-next {
    padding: 12px 24px; border-radius: var(--radius-sm);
    font-family: 'Onest', sans-serif; font-weight: 600; font-size: 14px;
    cursor: pointer; transition: all .2s; border: none;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-step-back {
    background: transparent; color: var(--text-mid); border: 1.5px solid var(--border);
  }
  .btn-step-back:hover { color: var(--text-dark); border-color: var(--text-mid); }
  .btn-step-next {
    background: var(--blue); color: var(--white);
  }
  .btn-step-next:hover { background: var(--blue-bright); }
  .btn-step-next:disabled { opacity: .5; cursor: not-allowed; }

  /* Live spec card */
  .spec-card {
    background: var(--text-dark); color: var(--white);
    border-radius: var(--radius-lg); padding: 32px; overflow: hidden;
    position: relative;
  }
  .spec-card::before {
    content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px;
    background: radial-gradient(circle at top right, rgba(255,184,0,.15), transparent 70%);
  }
  .spec-card-tag {
    font-family: 'Onest', sans-serif; font-size: 10px; letter-spacing: 3px;
    color: var(--accent); text-transform: uppercase; font-weight: 700;
    margin-bottom: 18px;
  }
  .spec-card-title {
    font-family: 'Onest', sans-serif; font-weight: 800; font-size: 24px;
    letter-spacing: -.5px; margin-bottom: 24px; line-height: 1.15;
  }
  .spec-list {
    display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px;
  }
  .spec-row {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.1);
    gap: 16px;
  }
  .spec-row:last-child { border-bottom: none; }
  .spec-key {
    font-size: 13px; color: rgba(255,255,255,.6);
    font-family: 'Manrope', sans-serif; flex-shrink: 0;
  }
  .spec-val {
    font-family: 'Onest', sans-serif; font-weight: 600; font-size: 14px;
    text-align: right; line-height: 1.3;
  }
  .spec-val.empty { color: rgba(255,255,255,.25); font-weight: 400; }
  .spec-card-cta {
    width: 100%; padding: 18px; background: var(--accent); color: var(--text-dark);
    border: none; border-radius: var(--radius-sm); cursor: pointer;
    font-family: 'Onest', sans-serif; font-weight: 700; font-size: 15px;
    letter-spacing: .3px; transition: all .2s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
  }
  .spec-card-cta:hover { background: #FFC93C; transform: translateY(-2px); }
  .spec-card-cta:disabled { opacity: .4; cursor: not-allowed; transform: none; }
  .spec-card-note {
    margin-top: 14px; font-size: 12px; color: rgba(255,255,255,.5);
    text-align: center; line-height: 1.5;
  }

  /* Configurator success state */
  .config-success {
    display: none; padding: 64px 40px; text-align: center;
  }
  .config-success.active { display: block; animation: fadeIn .5s ease-out; }
  .success-icon {
    width: 72px; height: 72px; background: var(--success); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; color: var(--white); font-size: 32px; font-weight: 700;
  }
  .config-success h3 {
    font-family: 'Onest', sans-serif; font-weight: 800; font-size: 28px;
    color: var(--text-dark); margin-bottom: 12px;
  }
  .config-success p {
    color: var(--text-mid); font-size: 15px; max-width: 420px; margin: 0 auto;
  }

  /* ─── ADVANTAGES ─── */
  .adv-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border: 1px solid var(--border);
  }
  .adv-cell {
    padding: 40px 36px; border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white); position: relative;
    transition: background .2s;
  }
  .adv-cell:hover { background: var(--bg-soft); }
  .adv-cell:nth-child(3n) { border-right: none; }
  .adv-cell:nth-last-child(-n+3) { border-bottom: none; }
  .adv-num {
    font-family: 'Onest', sans-serif; font-weight: 800;
    font-size: 13px; color: var(--blue-bright); letter-spacing: 2px;
    margin-bottom: 16px;
  }
  .adv-title {
    font-family: 'Onest', sans-serif; font-weight: 700; font-size: 20px;
    color: var(--text-dark); letter-spacing: -.3px; margin-bottom: 10px;
    line-height: 1.2;
  }
  .adv-desc {
    color: var(--text-mid); font-size: 14px; line-height: 1.6;
  }

  /* ─── PRODUCTION ─── */
  .prod-content {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
    align-items: center;
  }
  .prod-text h3 {
    font-family: 'Onest', sans-serif; font-weight: 800; font-size: 36px;
    color: var(--white); letter-spacing: -1px; margin-bottom: 20px; line-height: 1.1;
  }
  .prod-text p {
    color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.65;
    margin-bottom: 20px;
  }
  .prod-stages {
    display: flex; flex-direction: column; gap: 0;
  }
  .stage {
    display: grid; grid-template-columns: 60px 1fr; gap: 20px;
    padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .stage-num {
    font-family: 'Onest', sans-serif; font-weight: 800; font-size: 24px;
    color: var(--accent); letter-spacing: -.5px;
  }
  .stage-content h4 {
    font-family: 'Onest', sans-serif; font-weight: 700; font-size: 16px;
    color: var(--white); margin-bottom: 6px;
  }
  .stage-content p {
    color: rgba(255,255,255,.6); font-size: 14px; margin: 0; line-height: 1.5;
  }

  /* ─── CONTACTS ─── */
  .contacts-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch;
  }
  .managers-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; align-content: start;
  }
  .manager-card {
    padding: 24px; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); transition: all .25s;
  }
  .manager-card:hover { border-color: var(--blue-bright); box-shadow: 0 8px 24px rgba(11,61,145,.08); }
  .mgr-photo {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-family: 'Onest', sans-serif; font-weight: 700;
    font-size: 18px; margin-bottom: 14px;
  }
  .mgr-role {
    font-size: 11px; color: var(--blue-bright); letter-spacing: 1.5px;
    text-transform: uppercase; font-weight: 700; margin-bottom: 4px;
    font-family: 'Onest', sans-serif;
  }
  .mgr-name {
    font-family: 'Onest', sans-serif; font-weight: 700; font-size: 16px;
    color: var(--text-dark); margin-bottom: 14px;
  }
  .mgr-contacts { display: flex; flex-direction: column; gap: 6px; }
  .mgr-contact {
    font-size: 13px; color: var(--text-mid); text-decoration: none;
    display: flex; align-items: center; gap: 8px;
  }
  .mgr-contact:hover { color: var(--blue-bright); }
  .mgr-contact .ico {
    width: 14px; height: 14px; flex-shrink: 0; opacity: .6;
  }

  .contact-aside {
    background: var(--bg-soft); padding: 32px; border-radius: var(--radius-lg);
  }
  .ca-block { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
  .ca-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
  .ca-label {
    font-size: 11px; color: var(--text-light); letter-spacing: 2px;
    text-transform: uppercase; font-weight: 700; margin-bottom: 10px;
    font-family: 'Onest', sans-serif;
  }
  .ca-value {
    font-family: 'Onest', sans-serif; font-weight: 700; font-size: 18px;
    color: var(--text-dark); line-height: 1.4;
  }
  .ca-value a { color: var(--text-dark); text-decoration: none; }
  .ca-value a:hover { color: var(--blue-bright); }
  .map-placeholder {
    width: 100%; height: 200px; background: var(--blue-soft);
    border-radius: var(--radius-sm); margin-top: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-family: 'Onest', sans-serif;
    font-size: 13px; font-weight: 600; letter-spacing: 1px;
    background-image:
      linear-gradient(var(--blue-line) 1px, transparent 1px),
      linear-gradient(90deg, var(--blue-line) 1px, transparent 1px);
    background-size: 20px 20px;
  }

  /* ─── CERT BAR ─── */
  .cert-bar {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .cert-card {
    padding: 24px; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); cursor: pointer; transition: all .2s;
    display: flex; align-items: center; gap: 14px;
  }
  .cert-card:hover { border-color: var(--blue-bright); transform: translateY(-2px); }
  .cert-icon {
    width: 40px; height: 48px; background: var(--blue-soft);
    border-radius: 4px; flex-shrink: 0; position: relative;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue); font-family: 'Onest', sans-serif; font-weight: 800;
    font-size: 11px; letter-spacing: .5px;
  }
  .cert-name {
    font-family: 'Onest', sans-serif; font-weight: 600; font-size: 14px;
    color: var(--text-dark); line-height: 1.3;
  }
  .cert-meta {
    font-size: 12px; color: var(--text-light); margin-top: 2px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--text-dark); color: rgba(255,255,255,.7);
    padding: 60px 48px 40px;
  }
  .ftr-grid {
    max-width: 1400px; margin: 0 auto;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .ftr-brand { max-width: 320px; }
  .ftr-brand .logo-mark { margin-bottom: 16px; }
  .ftr-tagline { font-size: 14px; line-height: 1.6; margin-bottom: 20px; color: rgba(255,255,255,.55); }
  .ftr-h {
    font-family: 'Onest', sans-serif; font-size: 12px; color: var(--white);
    letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
    margin-bottom: 18px;
  }
  .ftr-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .ftr-list a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; }
  .ftr-list a:hover { color: var(--white); }
  .ftr-bottom {
    max-width: 1400px; margin: 0 auto;
    padding-top: 24px; display: flex; justify-content: space-between; gap: 24px;
    flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,.4);
  }

  /* ─── COOKIES BANNER ─── */
  .cookies {
    position: fixed; bottom: 20px; right: 20px; z-index: 999;
    max-width: 380px; padding: 20px 22px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: 0 14px 40px rgba(11,61,145,.18);
    display: none;
  }
  .cookies.show { display: block; animation: slideUp .4s ease-out; }
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .cookies p { font-size: 13px; color: var(--text-mid); margin-bottom: 14px; line-height: 1.5; }
  .cookies-row { display: flex; gap: 8px; }
  .cookies button {
    padding: 10px 18px; border: none; border-radius: var(--radius-sm); cursor: pointer;
    font-family: 'Onest', sans-serif; font-weight: 600; font-size: 13px;
  }
  .cookies-accept { background: var(--blue); color: var(--white); }
  .cookies-decline { background: var(--bg-soft); color: var(--text-mid); }

  /* Индикатор шага «Шаг N из M» + прогресс (все экраны) */
  .step-mini { display: block; padding: 22px 32px 20px; border-bottom: 1px solid var(--border); }
  .step-mini-label {
    font-family: 'Onest', sans-serif; font-weight: 700; font-size: 14px;
    color: var(--text-dark); margin-bottom: 10px;
  }
  .step-mini-track { height: 6px; background: var(--bg-soft); border-radius: 99px; overflow: hidden; }
  .step-mini-fill { height: 100%; width: 14%; background: var(--blue-bright); border-radius: 99px; transition: width .3s ease; }

  .nav-phone-icon {
    display: none; width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%);
    color: #FFFFFF; align-items: center; justify-content: center;
    flex-shrink: 0; box-shadow: 0 4px 14px rgba(11,61,145,.25);
  }
  .nav-phone-icon:hover { transform: translateY(-1px); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    nav { padding: 0 24px; }
    .section { padding: 64px 24px; }
    .hero-a, .hero-b { padding: 48px 24px; }
    .hero-a-grid, .hero-b-grid, .panel-explorer, .config-shell, .prod-content, .contacts-layout {
      grid-template-columns: 1fr;
    }
    .ca-routebar--desktop { display: none; }
    .ca-routebar--mobile { display: block; }
    .products-grid, .stats-grid, .adv-grid, .cert-bar, .ftr-grid, .managers-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .adv-cell { border-right: 1px solid var(--border); }
    .adv-cell:nth-child(2n) { border-right: none; }
    .stat-cell:nth-child(2n) { border-right: none; }
    .nav-links { display: none; }
    .hero-a-floats { display: none; }
    .spec-card { position: static; }
  }
  @media (max-width: 640px) {
    .stats-grid, .products-grid, .adv-grid, .cert-bar, .ftr-grid, .managers-grid,
    .options-grid, .options-grid.cols-3, .options-grid.cols-4, .input-row, .input-row--2, .ca-row { grid-template-columns: 1fr; }
    .config-stepper { display: none; }
    .step-mini { display: block; }
    .adv-cell { border-right: none; }
    .stat-cell { border-right: none; border-bottom: 1px solid var(--border); }
    .hero-a h1, .hero-b h1 { letter-spacing: -1.5px; }
    .section-head { flex-direction: column; align-items: flex-start; }
    .nav-cta { display: none; }
    .nav-phone { display: none; }
    .nav-phone-icon { display: inline-flex; }
  }

  /* ─── Фиксы v0.4.1 ─── */
  .product-card, .cert-card { cursor: pointer; }
  /* Кнопки-ссылки в тёмной секции: полноценная рамка с отступами */
  .section.dark .section-link {
    padding: 12px 22px; border: 1.5px solid var(--accent); color: var(--accent);
    border-radius: var(--radius); border-bottom-width: 1.5px;
  }
  .section.dark .section-link:hover { background: rgba(255,184,0,.12); }

  /* ─── Логотип: монограмм ЕК (v0.6) ─── */
  .logo-mark--ek {
    width: auto; aspect-ratio: auto; padding: 11px 14px;
    border-radius: var(--radius); /* скруглённый прямоугольник под пропорцию знака */
  }
  .logo-mark--ek .logo-monogram { height: 24px; width: auto; display: block; }
  .ftr-brand .logo-mark--ek { display: inline-flex; }

  /* Фото менеджеров (v0.6) */
  .mgr-photo { overflow: hidden; padding: 0; }
  .mgr-photo img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; }

  /* ─── Контакты v0.6.2: парные колонки + карта на всю высоту ─── */
  .contact-aside {
    display: grid; grid-template-rows: auto auto 1fr;
    padding: 32px 32px 0; /* нижний паддинг убран — карта дойдёт до низа кнопок */
  }
  .ca-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
    margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border);
  }
  .ca-row .ca-block { margin: 0; padding: 0; border: none; }
  .ca-map {
    min-height: 200px;
    position: relative;  /* containing block для iframe */
    margin-bottom: 32px; /* нижний отступ = боковому */
  }
  .ca-map iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0; border-radius: var(--radius);
  }

  /* ─── Секция «О компании» (v0.7) ─── */
  .about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
  .about-lead { font-size: 16px; line-height: 1.7; color: var(--text-mid); margin: 18px 0 0; }
  .about-stats { display: flex; gap: 40px; margin-top: 32px; }
  .about-stat .as-num {
    font-family: 'Onest', sans-serif; font-weight: 800; font-size: 32px; color: var(--blue);
  }
  .about-stat .as-lbl { font-size: 13px; color: var(--text-mid); margin-top: 2px; }
  .about-media { width: 100%; }
  .about-video-placeholder {
    width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
    color: #FFFFFF;
  }
  .avp-icon {
    width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center; font-size: 24px; padding-left: 5px;
  }
  .avp-text { text-align: center; font-family: 'Onest', sans-serif; font-weight: 700; font-size: 17px; }
  .avp-text span { font-weight: 500; font-size: 14px; color: rgba(255,255,255,.6); }
  @media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-stats { gap: 28px; }
  }

  /* Видео в секции «О компании» (v0.7.1) */
  .about-video {
    width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-lg);
    display: block; background: #000; object-fit: cover;
    box-shadow: 0 10px 30px rgba(11,61,145,.15);
  }

  /* Залипающее меню под админ-баром WP (для залогиненных) */
  body.admin-bar nav { top: 32px; }
  @media screen and (max-width: 782px) { body.admin-bar nav { top: 46px; } }

  /* ─── MAX: кнопка-ссылка в контактах + модалка с QR (v0.9.8) ─── */
  .max-link {
    display: inline-flex; align-items: center; gap: 7px; margin-top: 12px;
    padding: 8px 14px; border-radius: var(--radius-sm);
    background: var(--blue-soft); color: var(--blue);
    font-family: 'Onest', sans-serif; font-weight: 600; font-size: 14px;
    text-decoration: none; transition: background .15s, transform .15s;
  }
  .max-link:hover { background: #DCE7FA; transform: translateY(-1px); }
  .max-link svg { flex-shrink: 0; }

  .max-modal {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(8, 24, 60, .55); backdrop-filter: blur(3px);
    align-items: center; justify-content: center; padding: 24px;
  }
  .max-modal.open { display: flex; }
  .max-modal-box {
    background: #FFFFFF; border-radius: var(--radius-lg); padding: 32px;
    max-width: 360px; width: 100%; text-align: center; position: relative;
    box-shadow: 0 24px 70px rgba(8, 24, 60, .35);
  }
  .max-modal-close {
    position: absolute; top: 12px; right: 16px; border: none; background: none;
    font-size: 28px; line-height: 1; color: var(--text-light); cursor: pointer;
  }
  .max-modal-close:hover { color: var(--text-dark); }
  .max-modal-title { font-family: 'Onest', sans-serif; font-weight: 800; font-size: 20px; color: var(--text-dark); }
  .max-modal-sub { font-size: 14px; color: var(--text-mid); margin: 6px 0 20px; }
  .max-qr { width: 220px; height: 220px; margin: 0 auto 20px; }
  .max-qr svg { width: 100%; height: 100%; display: block; border-radius: 8px; }
  .max-modal-btn {
    display: inline-block; width: 100%; padding: 14px; border-radius: var(--radius);
    background: var(--blue); color: #FFFFFF; font-family: 'Onest', sans-serif;
    font-weight: 700; font-size: 15px; text-decoration: none; box-sizing: border-box;
  }
  .max-modal-btn:hover { background: var(--blue-bright); }

  /* ─── Координаты въезда + кнопки маршрута (v0.9.10) ─── */
  .ca-routebar { margin-bottom: 16px; }
  .ca-routebar--mobile { display: none; }
  .ca-routebar--mobile .ca-routes { justify-content: center; }
  .ca-routebar--mobile .ca-coords { justify-content: center; }
  .ca-routebar--desktop { display: block; margin-top: 24px; }
  .contacts-left { display: flex; flex-direction: column; }
  .ca-coords {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--blue); font-family: 'Onest', sans-serif; font-weight: 600; font-size: 14px;
    text-decoration: none; margin-bottom: 12px;
  }
  .ca-coords:hover { color: var(--blue-bright); }
  .ca-coords svg { flex-shrink: 0; }
  .ca-routes { display: flex; gap: 10px; flex-wrap: wrap; }
  .route-btn {
    display: inline-flex; align-items: center; padding: 10px 18px; border-radius: var(--radius-sm);
    font-family: 'Onest', sans-serif; font-weight: 600; font-size: 14px; text-decoration: none;
    transition: background .15s, transform .15s, border-color .15s;
  }
  .route-btn:hover { transform: translateY(-1px); }
  .route-btn--ya { background: var(--blue); color: #FFFFFF; }
  .route-btn--ya:hover { background: var(--blue-bright); }
  .route-btn--g { background: var(--white); color: var(--blue); border: 1.5px solid var(--blue-line); }
  .route-btn--g:hover { border-color: var(--blue-bright); background: var(--blue-soft); }

  /* ─── Блок координат: переключение версий и центрирование (после базовых правил, чтобы выиграть каскад) ─── */
  .ca-routebar--desktop { text-align: center; }
  .ca-routebar--desktop .ca-routes { justify-content: center; }
  .ca-routebar--desktop .ca-coords { justify-content: center; }
  @media (max-width: 1024px) {
    .ca-routebar--desktop { display: none !important; }
    .ca-routebar--mobile { display: block !important; text-align: center; }
    .ca-routebar--mobile .ca-routes { justify-content: center; }
    .ca-routebar--mobile .ca-coords { justify-content: center; }
    /* На мобильном правая колонка — обычный поток, карта фиксированной высоты */
    .contact-aside { display: flex; flex-direction: column; padding: 32px; }
    .ca-map { display: block; min-height: 280px; position: static; margin-bottom: 0; }
    .ca-map iframe { position: static; inset: auto; height: 280px; min-height: 280px; }
  }

  /* Секция контактов: меньше воздуха до подвала */
  #contacts { padding-bottom: 56px; }

  /* ─── HERO: фото справа с растворением левого края ─── */
  .hero-vis-photo {
    position: relative; width: 100%; height: 480px;
    border-radius: var(--radius); overflow: hidden;
  }
  .hero-vis-photo img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.2) 14%, #000 42%);
            mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.2) 14%, #000 42%);
  }
  @media (max-width: 1024px) {
    .hero-vis-photo { height: 320px; }
    .hero-vis-photo img {
      -webkit-mask-image: none; mask-image: none;
    }
  }

/* ─── Лента фото производства ─────────────────────────── */
.prod-gallery { margin-top: 28px; }
.prod-gallery-label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.prod-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.prod-thumb {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: #15346f;
  overflow: hidden;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.prod-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.prod-thumb.is-hidden { display: none; }
.prod-thumb-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,61,145,.62);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .2px;
}
@media (max-width: 640px) {
  .prod-thumbs { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Конфигуратор: динамические шаги продукта ───────── */
.cfg-step { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.cfg-step:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.cfg-step.cfg-pending { opacity: .45; pointer-events: none; }
.cfg-fixed {
  display: inline-block;
  background: var(--blue-soft);
  border: 1px solid #cddbff;
  color: var(--blue);
  border-radius: var(--radius-sm);
  padding: 9px 13px;
  font-size: 13px;
}
.input-hint { font-size: 12px; color: var(--text-light); margin-top: 6px; }

/* ─── Широкая карточка-баннер руководителя (над сеткой 2×2) ─── */
.mgr-lead {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: 20px 24px; margin-bottom: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-left: 3px solid var(--blue-bright);
  border-radius: var(--radius); transition: all .25s;
}
.mgr-lead:hover { border-color: var(--blue-bright); box-shadow: 0 8px 24px rgba(11,61,145,.08); }
.mgr-lead .mgr-name { margin-bottom: 0; }
.mgr-lead-contacts {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.mgr-lead-contacts .mgr-contact { font-size: 14px; }
@media (max-width: 640px) {
  .mgr-lead { flex-direction: column; align-items: flex-start; gap: 14px; }
  .mgr-lead-contacts { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ─── Акцентный блок адреса производства (жёлтая полоска + иконка) ─── */
.prod-address {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 20px; padding: 14px 18px;
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--amber, #FFB800);
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s ease;
  max-width: 100%;
}
.prod-address:hover { background: rgba(255,255,255,.09); }
.prod-address-pin { width: 26px; height: 26px; flex-shrink: 0; }
.prod-address-text { display: flex; flex-direction: column; gap: 2px; }
.prod-address-place {
  color: #fff; font-weight: 600; font-size: 15px;
  font-family: 'Onest', sans-serif;
}
.prod-address-coords { color: rgba(255,255,255,.6); font-size: 13px; }
