
  :root {
    --orange: #245a93;
    --accent-rgb: 36, 90, 147;
    --orange-bright: #2f6fae;
    --orange-dim: #1b456f;
    --black: #1a1918;
    --black-2: #232220;
    --black-3: #2c2a28;
    --gray: #ececec;
    --gray-2: #d4d2d0;
    --gray-3: #9a9896;
    --white: #ffffff;
    --line: rgba(255,255,255,0.08);
    --line-dark: rgba(0,0,0,0.10);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ===== LOGO ===== */
  .logo-bk-svg { display: inline-block; width: 140px; height: auto; vertical-align: middle; }
  .logo-bk-svg .lf { fill: var(--white); }
  .logo-bk-svg .lo { fill: var(--orange); }
  .footer .logo-bk-svg { width: 130px; }
  .logo {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 0;
    user-select: none;
  }
  .logo .b, .logo .k, .logo .o, .logo .r { color: var(--white); }
  .logo .e-wrap {
    display: inline-block;
    position: relative;
    width: 0.72em;
    height: 1em;
    margin: 0 0.04em;
  }
  .logo .e-wrap::before,
  .logo .e-wrap::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    height: 0.13em;
    background: var(--white);
  }
  .logo .e-wrap::before { top: 0; }
  .logo .e-wrap::after { bottom: 0; }
  .logo .e-wrap .bar-mid {
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 0.13em;
    background: var(--orange);
  }
  .logo .e-wrap .stem {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0.13em;
    background: var(--white);
  }
  .logo.on-light .b, .logo.on-light .k, .logo.on-light .o, .logo.on-light .r,
  .logo.on-light .e-wrap::before, .logo.on-light .e-wrap::after,
  .logo.on-light .e-wrap .stem { background: var(--black); color: var(--black); }
  .logo.on-light .e-wrap .bar-mid { background: var(--orange); }
  .logo-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.32em;
    color: var(--gray-3);
    text-transform: uppercase;
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid var(--line);
  }
  .logo.on-light + .logo-tag { border-left-color: var(--line-dark); color: var(--gray-3); }

  /* ===== TOP BAR ===== */
  .topbar {
    background: #0e0d0c;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    color: var(--gray-2);
  }
  .topbar .container { display: flex; align-items: center; gap: 28px; height: 44px; }
  .topbar .item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
  .topbar .item svg { width: 14px; height: 14px; stroke: var(--orange); fill: none; stroke-width: 1.6; }
  .topbar .spacer { flex: 1; }
  .topbar .social { display: inline-flex; gap: 10px; }
  .topbar .social a { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; transition: all .2s; }
  .topbar .social a:hover { border-color: var(--orange); background: var(--orange); }
  .topbar .social svg { width: 11px; height: 11px; stroke: var(--gray-2); fill: none; stroke-width: 1.6; }
  .topbar .social a:hover svg { stroke: var(--white); }

  /* ===== HEADER ===== */
  .header {
    background: rgba(26,25,24,0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .header .container { display: flex; align-items: center; gap: 36px; height: 80px; }
  .header .brand { display: flex; align-items: center; }
  .header .logo { font-size: 30px; }
  .header nav { display: flex; gap: 26px; flex: 1; }
  .header nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-2);
    padding: 8px 0;
    position: relative;
    transition: color .2s;
  }
  .header nav a:hover { color: var(--white); }
  .header nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width .25s;
  }
  .header nav a:hover::after { width: 100%; }
  .header .phone {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .header .phone .small { display: block; font-family: 'Inter'; font-size: 11px; color: var(--gray-3); letter-spacing: 0.05em; font-weight: 400; }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .25s;
    font-family: 'Inter', sans-serif;
  }
  .btn-primary { background: var(--orange); color: var(--white); }
  .btn-primary:hover { background: var(--orange-bright); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(var(--accent-rgb),0.35); }
  .btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
  .btn-outline:hover { border-color: var(--orange); color: var(--orange); }
  .btn-ghost { background: rgba(255,255,255,0.06); color: var(--white); border: 1px solid var(--line); }
  .btn-ghost:hover { background: rgba(var(--accent-rgb),0.12); border-color: var(--orange); }
  .btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

  /* ===== NAV DROPDOWN ===== */
  .nav-item { position: relative; display: flex; align-items: center; }
  .nav-item > a { display: inline-flex; align-items: center; gap: 6px; }
  .nav-item .caret { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2.2; transition: transform .25s; }
  .nav-item:hover .caret { transform: rotate(180deg); }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: -14px;
    min-width: 288px;
    background: rgba(20,18,17,0.98);
    backdrop-filter: blur(14px);
    border: 1px solid var(--line);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 200;
    box-shadow: 0 24px 48px rgba(0,0,0,0.45);
  }
  .nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown-menu a {
    display: block;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-2);
    white-space: nowrap;
    border-radius: 3px;
    transition: background .18s, color .18s;
  }
  .dropdown-menu a::after { display: none; }
  .dropdown-menu a:hover { background: rgba(var(--accent-rgb),0.14); color: var(--white); }

  @media (max-width: 992px) {
    .nav-item { flex-direction: column; align-items: stretch; width: 100%; }
    .nav-item > a { justify-content: space-between; }
    .nav-item .caret { transform: none !important; }
    .dropdown-menu {
      position: static; opacity: 1; visibility: visible; transform: none;
      min-width: 0; background: rgba(0,0,0,0.28); border: none; box-shadow: none;
      padding: 0; backdrop-filter: none;
    }
    .dropdown-menu a { padding: 13px 24px 13px 40px; font-size: 14px; border-bottom: 1px solid var(--line); border-radius: 0; white-space: normal; }
  }

  /* ===== SECTION COMMON ===== */
  .section { padding: 100px 0; position: relative; }
  .section-light { background: #f6f5f3; color: var(--black); }
  .section-dark  { background: var(--black); color: var(--white); }
  .section-darker { background: #0e0d0c; color: var(--white); }
  .section-eyebrow {
    display:flex; align-items:center; gap:14px; margin-bottom:18px;
  }
  .section-eyebrow .bar { width:36px; height:2px; background: var(--orange); }
  .section-eyebrow .label {
    font-family:'Oswald'; font-size:12px; letter-spacing:0.32em;
    color:var(--orange); text-transform:uppercase; font-weight:500;
  }
  .section-title {
    font-family:'Oswald',sans-serif; font-weight:600;
    font-size:48px; line-height:1.1; letter-spacing:-0.01em;
    margin-bottom:18px;
  }
  .section-title .accent { color: var(--orange); }
  .section-sub {
    font-size:17px; max-width:780px; line-height:1.55;
    margin-bottom: 56px;
  }
  .section-dark .section-sub { color: var(--gray-2); }
  .section-light .section-sub { color: #555; }

  /* ===== SAMPLE BLOCK ===== */
  .sample {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dim) 100%);
    color: var(--white);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
  }
  .sample::before {
    content:''; position:absolute; right:-100px; top:-100px;
    width:400px; height:400px; border-radius:50%;
    background: rgba(255,255,255,0.06);
  }
  .sample::after {
    content:''; position:absolute; right:60px; bottom:-150px;
    width:300px; height:300px; border-radius:50%;
    background: rgba(0,0,0,0.08);
  }
  .sample .container { position:relative; z-index:2; display:flex; align-items:center; gap:60px; }
  .sample .text { flex:1; }
  .sample .badge {
    display:inline-block; background: rgba(0,0,0,0.18);
    padding:7px 14px; font-size:11px; letter-spacing:0.2em;
    text-transform:uppercase; font-weight:600; margin-bottom:18px;
  }
  .sample h2 {
    font-family:'Oswald',sans-serif; font-weight:700;
    font-size:44px; line-height:1.05; margin-bottom:16px;
  }
  .sample p { font-size:17px; line-height:1.5; max-width:540px; margin-bottom:28px; opacity:0.95; }
  .sample .form {
    flex: 0 0 420px;
    background: var(--white);
    color: var(--black);
    padding: 32px;
  }
  .sample .form h3, .sample .form .form-title {
    font-family:'Oswald',sans-serif; font-size:22px; font-weight:600;
    margin-bottom:6px;
  }
  .sample .form .hint { font-size:13px; color:#777; margin-bottom:20px; }
  .sample .form .row { margin-bottom:12px; }
  .sample .form label {
    display:block; font-size:11px; font-weight:600;
    text-transform:uppercase; letter-spacing:0.12em;
    color:#666; margin-bottom:6px;
  }
  .sample .form input {
    width:100%; padding:12px 14px; font-size:14px;
    border:1px solid #d4d2d0; background:#fafafa;
    font-family:inherit; color:var(--black);
  }
  .sample .form input:focus { outline:none; border-color: var(--orange); background:#fff; }
  .sample .form .btn-primary { width:100%; justify-content:center; padding:14px; margin-top:8px; }
  .sample .form .agree { font-size:11px; color:#888; margin-top:12px; line-height:1.4; }

  /* ===== ABOUT ===== */
  .about-grid { display:grid; grid-template-columns: 1fr 1fr; gap:60px; align-items:center; }
  .about-images { display:grid; grid-template-columns: 1fr 1fr; gap:14px; }
  .about-images img { width:100%; height:100%; object-fit:cover; }
  .about-images .img-tall { grid-row: span 2; height:560px; }
  .about-images .img-small { height:273px; }
  .about-text h2 { margin-bottom:22px; }
  .about-text p { color:#555; font-size:16px; line-height:1.7; margin-bottom:18px; }
  .about-text ul { list-style:none; margin:24px 0; }
  .about-text ul li {
    display:flex; gap:14px; align-items:flex-start;
    padding:12px 0; border-bottom:1px solid #e8e7e5; font-size:15px;
  }
  .about-text ul li::before {
    content:''; width:18px; height:18px; background:var(--orange);
    flex-shrink:0; margin-top:3px; clip-path: polygon(0 0, 100% 50%, 0 100%);
    transform: rotate(0deg);
  }
  .about-text ul li strong { display:block; color:var(--black); font-weight:600; }
  .about-text ul li span { color:#777; font-size:13px; }

  /* ===== CATALOG ===== */
  .catalog-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; }
  .cat-card {
    background: var(--black-2);
    border:1px solid var(--line);
    overflow:hidden;
    transition: all .3s;
    position:relative;
  }
  .cat-card:hover { border-color: var(--orange); transform: translateY(-4px); }
  .cat-card .img-wrap { height:240px; overflow:hidden; position:relative; }
  .cat-card .img-wrap img { width:100%; height:100%; object-fit:cover; transition: transform .5s; }
  .cat-card:hover .img-wrap img { transform: scale(1.08); }
  .cat-card .img-wrap::after {
    content:''; position:absolute; inset:0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  }
  .cat-card .num {
    position:absolute; top:14px; left:14px; z-index:2;
    font-family:'Oswald'; font-size:12px; color:var(--orange);
    letter-spacing:0.2em; font-weight:500;
  }
  .cat-card .body { padding:22px; }
  .cat-card h3 { font-family:'Oswald'; font-size:20px; font-weight:600; margin-bottom:8px; }
  .cat-card .desc { font-size:13px; color:var(--gray-3); line-height:1.5; margin-bottom:14px; }
  .cat-card .price-from { font-size:12px; color:var(--gray-3); margin-bottom:4px; }
  .cat-card .price { font-family:'Oswald'; font-size:22px; color:var(--orange); font-weight:600; }
  .cat-card .arrow {
    display:inline-flex; align-items:center; gap:8px; margin-top:16px;
    font-size:12px; font-weight:600; color:var(--white);
    text-transform:uppercase; letter-spacing:0.1em;
  }
  .cat-card .arrow svg { width:14px; height:14px; stroke:var(--orange); fill:none; stroke-width:2; transition: transform .25s; }
  .cat-card:hover .arrow svg { transform: translateX(4px); }

  /* ===== PRICES ===== */
  .prices-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
  .price-card {
    background:#fff; border:1px solid #e8e7e5; padding:36px 30px;
    position:relative; transition: all .25s;
  }
  .price-card:hover { border-color: var(--orange); box-shadow: 0 12px 32px rgba(var(--accent-rgb),0.08); }
  .price-card.featured { border-color: var(--orange); border-width:2px; }
  .price-card .tag {
    position:absolute; top:-12px; left:30px; background:var(--orange);
    color:#fff; padding:5px 14px; font-size:11px; font-weight:600;
    letter-spacing:0.12em; text-transform:uppercase;
  }
  .price-card h3 { font-family:'Oswald'; font-size:24px; font-weight:600; color:var(--black); margin-bottom:8px; }
  .price-card .sub { font-size:13px; color:#888; margin-bottom:24px; }
  .price-card .amount {
    font-family:'Oswald'; font-size:42px; font-weight:600; color:var(--black);
    line-height:1; margin-bottom:6px;
  }
  .price-card .amount .unit { font-size:16px; color:#888; font-weight:400; }
  .price-card .from { font-size:12px; color:#999; margin-bottom:24px; }
  .price-card ul { list-style:none; margin-bottom:28px; }
  .price-card ul li {
    padding:10px 0; border-bottom:1px solid #f0efed;
    font-size:14px; color:#444;
    display:flex; gap:10px; align-items:flex-start;
  }
  .price-card ul li::before {
    content:''; width:16px; height:16px; flex-shrink:0; margin-top:3px;
    background: var(--orange);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  .price-card .btn-outline { color:var(--black); border-color:#d4d2d0; width:100%; justify-content:center; }
  .price-card .btn-outline:hover { border-color:var(--orange); color:var(--orange); }
  .price-card.featured .btn-outline { background:var(--orange); color:#fff; border-color:var(--orange); }
  .price-card.featured .btn-outline:hover { background:var(--orange-bright); color:#fff; }

  /* ===== FEEDBACK ===== */
  .feedback {
    background: linear-gradient(135deg, #1a1918 0%, #0e0d0c 100%);
    position:relative; overflow:hidden;
  }
  .feedback::before {
    content:''; position:absolute; right:0; top:0; bottom:0; width:50%;
    background: url(../images/contact-bg.jpg) center/cover;
    opacity:0.18; mask-image: linear-gradient(to left, #000 0%, transparent 100%);
  }
  .feedback .container { position:relative; z-index:2; }
  .feedback .grid { display:grid; grid-template-columns: 1fr 1fr; gap:80px; align-items:center; }
  .feedback h2 { color:var(--white); }
  .feedback .info { color:var(--gray-2); }
  .feedback .info p { font-size:17px; line-height:1.6; margin-bottom:32px; }
  .feedback .info .contact-list { list-style:none; margin-bottom:32px; }
  .feedback .info .contact-list li {
    display:flex; gap:16px; align-items:center; padding:14px 0;
    border-bottom:1px solid var(--line);
  }
  .feedback .info .contact-list .ico {
    width:42px; height:42px; background: rgba(var(--accent-rgb),0.12);
    border:1px solid rgba(var(--accent-rgb),0.4); display:flex; align-items:center; justify-content:center;
    flex-shrink:0;
  }
  .feedback .info .contact-list svg { width:18px; height:18px; stroke:var(--orange); fill:none; stroke-width:1.8; }
  .feedback .info .contact-list .lbl { font-size:11px; color:var(--gray-3); text-transform:uppercase; letter-spacing:0.12em; }
  .feedback .info .contact-list .val { font-family:'Oswald'; font-size:18px; color:var(--white); font-weight:500; }
  .feedback .form-card { background:#fff; color:var(--black); padding:40px; }
  .feedback .form-card h3, .feedback .form-card .form-title { font-family:'Oswald'; font-size:26px; font-weight:600; line-height:1.2; margin-bottom:6px; }
  .feedback .form-card .hint { font-size:13px; color:#888; margin-bottom:24px; }
  .feedback .form-card .grid2 { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; }
  .feedback .form-card label {
    display:block; font-size:11px; font-weight:600;
    text-transform:uppercase; letter-spacing:0.12em;
    color:#666; margin-bottom:6px;
  }
  .feedback .form-card input, .feedback .form-card textarea, .feedback .form-card select {
    width:100%; padding:12px 14px; font-size:14px;
    border:1px solid #d4d2d0; background:#fafafa;
    font-family:inherit; color:var(--black);
  }
  .feedback .form-card textarea { resize:vertical; min-height:90px; }
  .feedback .form-card input:focus, .feedback .form-card textarea:focus, .feedback .form-card select:focus { outline:none; border-color:var(--orange); background:#fff; }
  .feedback .form-card .row { margin-bottom:12px; }
  .feedback .form-card .btn-primary { width:100%; justify-content:center; padding:15px; margin-top:8px; }
  .feedback .form-card .agree { font-size:11px; color:#888; margin-top:12px; line-height:1.4; text-align:center; }

  /* ===== DELIVERY ===== */
  .delivery { display:grid; grid-template-columns: 1.1fr 1fr; gap:60px; align-items:center; }
  .delivery-img { position:relative; }
  .delivery-img img { width:100%; height:520px; object-fit:cover; }
  .delivery-img .badge {
    position:absolute; bottom:24px; left:24px;
    background:var(--orange); color:#fff; padding:18px 24px;
  }
  .delivery-img .badge .big { font-family:'Oswald'; font-size:32px; font-weight:700; line-height:1; }
  .delivery-img .badge .small { font-size:12px; letter-spacing:0.1em; text-transform:uppercase; margin-top:4px; }
  .delivery-text h2 { margin-bottom:18px; }
  .delivery-text p { color:#555; font-size:16px; line-height:1.65; margin-bottom:18px; }
  .delivery-options { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:28px; }
  .delivery-options .opt {
    border:1px solid #e8e7e5; padding:20px; background:#fff;
  }
  .delivery-options .opt .name { font-weight:600; font-size:14px; margin-bottom:4px; color:var(--black); }
  .delivery-options .opt .desc { font-size:12px; color:#888; line-height:1.5; }
  .delivery-options .opt .days { font-family:'Oswald'; color:var(--orange); font-size:18px; font-weight:600; margin-top:8px; }

  /* ===== ADVANTAGES ===== */
  .adv-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
  .adv-card {
    background: var(--black-2); border:1px solid var(--line);
    padding:36px 28px; transition: all .3s; position:relative;
  }
  .adv-card:hover { border-color: var(--orange); background: var(--black-3); }
  .adv-card .adv-card-head {
    display:flex; align-items:center; gap:16px; margin-bottom:20px;
  }
  .adv-card .num {
    font-family:'Oswald'; font-size:48px; font-weight:700;
    color: rgba(var(--accent-rgb),0.3); line-height:1; margin:0;
  }
  .adv-card .ico {
    width:48px; height:48px; background: rgba(var(--accent-rgb),0.12);
    border:1px solid rgba(var(--accent-rgb),0.4); display:flex; align-items:center; justify-content:center;
    margin:0; flex:0 0 48px;
  }
  .adv-card svg { width:24px; height:24px; stroke:var(--orange); fill:none; stroke-width:1.8; }
  .adv-card h3, .adv-card .adv-card-title { font-family:'Oswald'; font-size:20px; font-weight:600; margin-bottom:10px; }
  .adv-card p { font-size:14px; color:var(--gray-3); line-height:1.6; }

  /* ===== PROCESS ===== */
  .process-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:0; position:relative; }
  .process-grid::before {
    content:''; position:absolute; top:36px; left:8%; right:8%; height:2px;
    background: linear-gradient(to right, transparent, var(--orange), var(--orange), transparent);
    opacity:0.5;
  }
  .process-step { text-align:center; padding:0 16px; position:relative; }
  .process-step .circle {
    width:72px; height:72px; border-radius:50%;
    background: var(--black); border:2px solid var(--orange);
    margin:0 auto 20px; display:flex; align-items:center; justify-content:center;
    font-family:'Oswald'; font-size:28px; font-weight:600; color:var(--orange);
    position:relative; z-index:2;
  }
  .process-step h3 { font-family:'Oswald'; font-size:18px; font-weight:600; margin-bottom:10px; }
  .process-step p { font-size:13px; color:var(--gray-3); line-height:1.55; }
  .process-step .time {
    display:inline-block; margin-top:14px; padding:4px 12px;
    background: rgba(var(--accent-rgb),0.15); color:var(--orange);
    font-size:11px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase;
  }

  /* ===== PROJECTS ===== */
  .projects-grid { display:grid; grid-template-columns: 1fr 1fr; gap:24px; }
  .project-card { position:relative; height:380px; overflow:hidden; }
  .project-card img { width:100%; height:100%; object-fit:cover; transition: transform .5s; }
  .project-card:hover img { transform: scale(1.05); }
  .project-card::after {
    content:''; position:absolute; inset:0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
  }
  .project-card .info { position:absolute; bottom:0; left:0; right:0; padding:32px; z-index:2; color:#fff; }
  .project-card .tag {
    display:inline-block; background:var(--orange); padding:5px 12px;
    font-size:11px; font-weight:600; letter-spacing:0.12em; text-transform:uppercase;
    margin-bottom:14px;
  }
  .project-card h3 { font-family:'Oswald'; font-size:24px; font-weight:600; margin-bottom:8px; }
  .project-card p { font-size:14px; color:rgba(255,255,255,0.85); line-height:1.5; max-width:480px; }
  .project-card .stats { display:flex; gap:24px; margin-top:16px; padding-top:16px; border-top:1px solid rgba(255,255,255,0.15); }
  .project-card .stats .s .v { font-family:'Oswald'; font-size:24px; font-weight:600; color:var(--orange); }
  .project-card .stats .s .l { font-size:11px; color:rgba(255,255,255,0.7); text-transform:uppercase; letter-spacing:0.1em; }

  /* ===== GUARANTEES ===== */
  .guar-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
  .guar-card {
    background:#fff; border:1px solid #e8e7e5; padding:36px 28px;
    text-align:center; transition: all .25s;
  }
  .guar-card:hover { border-color:var(--orange); box-shadow: 0 12px 32px rgba(var(--accent-rgb),0.08); }
  .guar-card .ico {
    width:64px; height:64px; margin:0 auto 22px;
    background: rgba(var(--accent-rgb),0.1); border-radius:50%;
    display:flex; align-items:center; justify-content:center;
  }
  .guar-card svg { width:30px; height:30px; stroke:var(--orange); fill:none; stroke-width:1.8; }
  .guar-card h3 { font-family:'Oswald'; font-size:20px; font-weight:600; color:var(--black); margin-bottom:10px; }
  .guar-card p { font-size:14px; color:#666; line-height:1.6; }

  /* ===== CERTIFICATES ===== */
  .cert-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap:18px; }
  .cert-card {
    background:var(--black-2); border:1px solid var(--line);
    padding:24px; transition:all .25s; text-align:center;
  }
  .cert-card:hover { border-color:var(--orange); transform:translateY(-3px); }
  .cert-card img { width:100%; height:240px; object-fit:cover; margin-bottom:16px; filter: brightness(0.95); }
  .cert-card h4, .cert-card .cert-card-title { font-family:'Oswald'; font-size:15px; font-weight:600; margin-bottom:6px; }
  .cert-card .meta { font-size:11px; color:var(--gray-3); text-transform:uppercase; letter-spacing:0.1em; }

  /* ===== CLIENTS ===== */
  .clients-grid { display:grid; grid-template-columns: repeat(6, 1fr); gap:0; border:1px solid var(--line); }
  .client-cell {
    aspect-ratio: 2 / 1; display:flex; align-items:center; justify-content:center;
    border-right:1px solid var(--line); border-bottom:1px solid var(--line);
    padding:24px; transition: background .25s;
  }
  .client-cell:hover { background: rgba(var(--accent-rgb),0.06); }
  .client-cell .name {
    font-family:'Oswald'; font-size:18px; font-weight:600;
    color:var(--gray-2); letter-spacing:0.04em; text-align:center;
  }

  /* ===== ARTICLES ===== */
  .articles-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:24px; }
  .article-card {
    background:#fff; border:1px solid #e8e7e5; overflow:hidden;
    transition:all .25s;
  }
  .article-card:hover { border-color:var(--orange); box-shadow:0 12px 32px rgba(var(--accent-rgb),0.08); }
  .article-card .img-wrap { height:200px; overflow:hidden; position:relative; }
  .article-card .img-wrap img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
  .article-card:hover .img-wrap img { transform: scale(1.05); }
  .article-card .cat {
    position:absolute; top:14px; left:14px; background:var(--orange);
    color:#fff; padding:5px 12px; font-size:11px; font-weight:600;
    letter-spacing:0.1em; text-transform:uppercase;
  }
  .article-card .body { padding:24px; }
  .article-card .meta { font-size:11px; color:#999; text-transform:uppercase; letter-spacing:0.1em; margin-bottom:10px; }
  .article-card h3 { font-family:'Oswald'; font-size:18px; font-weight:600; color:var(--black); margin-bottom:10px; line-height:1.3; }
  .article-card p { font-size:13px; color:#666; line-height:1.55; margin-bottom:16px; }
  .article-card .more {
    display:inline-flex; align-items:center; gap:8px;
    font-size:12px; font-weight:600; color:var(--orange);
    text-transform:uppercase; letter-spacing:0.1em;
  }
  .article-card .more svg { width:12px; height:12px; stroke:var(--orange); fill:none; stroke-width:2; }

  /* ===== FOOTER ===== */
  .footer { background:#0a0908; padding:80px 0 0; border-top:3px solid var(--orange); }
  .footer .grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr; gap:48px; }
  .footer h4,
  .footer .footer-heading {
    font-family:'Oswald'; font-size:14px; font-weight:600;
    color:var(--white); margin-bottom:22px; text-transform:uppercase;
    letter-spacing:0.16em;
  }
  .footer .about-blk .logo { font-size:30px; margin-bottom:18px; }
  .footer .about-blk p { font-size:13px; color:var(--gray-3); line-height:1.65; margin-bottom:20px; }
  .footer ul { list-style:none; }
  .footer ul li { margin-bottom:10px; }
  .footer ul li a { font-size:14px; color:var(--gray-2); transition: color .2s; }
  .footer ul li a:hover { color:var(--orange); }
  .footer .contact-item { display:flex; gap:12px; align-items:flex-start; margin-bottom:14px; }
  .footer .contact-item svg { width:16px; height:16px; stroke:var(--orange); fill:none; stroke-width:1.8; flex-shrink:0; margin-top:3px; }
  .footer .contact-item .l { font-size:11px; color:var(--gray-3); text-transform:uppercase; letter-spacing:0.1em; }
  .footer .contact-item .v { font-size:14px; color:var(--white); font-weight:500; }
  .footer .social-blk { display:flex; gap:10px; margin-top:18px; }
  .footer .social-blk a {
    width:36px; height:36px; border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center; transition:all .2s;
  }
  .footer .social-blk a:hover { background:var(--orange); border-color:var(--orange); }
  .footer .social-blk svg { width:14px; height:14px; stroke:var(--gray-2); fill:none; stroke-width:1.8; }
  .footer .social-blk a:hover svg { stroke:var(--white); }
  .footer-bottom {
    margin-top:60px; padding:24px 0; border-top:1px solid var(--line);
    display:flex; justify-content:space-between; align-items:center;
    font-size:12px; color:var(--gray-3);
  }
  .footer-bottom a { color:var(--gray-3); margin-left:24px; }
  .footer-bottom a:hover { color:var(--orange); }

  /* Burger menu - hidden on desktop, shown on tablet/mobile via media query */
  .header .burger { display: none; }

  /* ============================================= */
  /* ============ ADAPTIVE / RESPONSIVE ========== */
  /* ============================================= */

  /* Container fluid on smaller screens */
  @media (max-width: 1200px) {
    .container { padding: 0 28px; }
    .header .container { gap: 24px; }
    .header nav { gap: 20px; }
  }

  /* ===== LAPTOP (992–1200px) ===== */
  @media (max-width: 1200px) {
    .header .phone { font-size: 16px; }
    .header .phone .small { font-size: 10px; }
    .btn { padding: 11px 20px; font-size: 12px; }
  }

  @media (max-width: 1100px) {
    .header nav { gap: 16px; }
    .header nav a { font-size: 13px; }
    .header .phone .small { display:none; }
  }

  /* ===== TABLET (768–992px) ===== */
  @media (max-width: 992px) {
    .container { padding: 0 24px; }
    .topbar .container { height: auto; padding-top:8px; padding-bottom:8px; flex-wrap:wrap; gap:12px 20px; }
    .topbar .item { font-size: 12px; }

    /* Mobile menu button */
    .header .container { height: 70px; gap: 16px; }
    .header nav {
      position: fixed; top: 70px; left: 0; right: 0;
      background: rgba(14,13,12,0.98);
      backdrop-filter: blur(12px);
      flex-direction: column;
      gap: 0;
      padding: 0;
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease;
      border-bottom: 1px solid var(--line);
      z-index: 90;
    }
    .header nav.open { max-height: calc(100vh - 70px); overflow-y: auto; }
    .header nav a {
      padding: 16px 24px;
      width: 100%;
      border-bottom: 1px solid var(--line);
      font-size: 15px;
    }
    .header nav a::after { display:none; }
    .header .phone { font-size: 15px; margin-left:auto; }
    .header .btn-primary span, .header .btn-primary { display: none; }
    .header .burger {
      display: inline-flex !important; flex-direction: column; gap: 5px;
      width: 40px; height: 40px; align-items: center; justify-content: center;
      background: transparent; border: 1px solid var(--line); cursor: pointer;
    }
    .header .burger span {
      display:block; width: 18px; height: 2px; background: var(--white);
      transition: all .3s;
    }
    .header .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .header .burger.open span:nth-child(2) { opacity: 0; }
    .header .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* HERO */
    .hero { min-height: auto !important; padding: 60px 0 !important; }
    .hero h1 { font-size: 52px !important; }
    .hero .hero-bg { background-position: center right !important; }
    .hero p[style*="font-size:19px"] { font-size: 16px !important; }

    /* SAMPLE */
    .sample { padding: 56px 0; }
    .sample .container { flex-direction: column; gap: 36px; }
    .sample .form { flex: 0 0 100%; width: 100%; }
    .sample h2 { font-size: 34px; }

    /* SECTION TITLES */
    .section { padding: 70px 0; }
    .section-title { font-size: 36px !important; }
    .section-sub { font-size: 15px !important; margin-bottom: 40px; }

    /* ABOUT */
    .about-grid { grid-template-columns: 1fr; gap: 36px; }
    .about-images .img-tall { height: 360px; grid-row: auto; }
    .about-images .img-small { height: 220px; }

    /* CATALOG */
    .catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

    /* PRICES */
    .prices-grid { grid-template-columns: 1fr; gap: 18px; }

    /* FEEDBACK */
    .feedback .grid { grid-template-columns: 1fr; gap: 40px; }
    .feedback .form-card { padding: 28px; }
    .feedback .info .contact-list .val { font-size: 16px; }

    /* DELIVERY */
    .delivery { grid-template-columns: 1fr; gap: 32px; }
    .delivery-img img { height: 340px; }
    .delivery-options { grid-template-columns: 1fr 1fr; }

    /* ADVANTAGES */
    .adv-grid { grid-template-columns: repeat(2, 1fr); }

    /* PROCESS */
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
    .process-grid::before { display:none; }
    .process-step .circle { width: 60px; height: 60px; font-size: 22px; }

    /* PROJECTS */
    .projects-grid { grid-template-columns: 1fr; gap: 16px; }
    .project-card { height: 320px; }

    /* GUARANTEES */
    .guar-grid { grid-template-columns: repeat(2, 1fr); }

    /* CERTIFICATES */
    .cert-grid { grid-template-columns: repeat(2, 1fr); }

    /* CLIENTS */
    .clients-grid { grid-template-columns: repeat(3, 1fr); }

    /* ARTICLES */
    .articles-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

    /* FOOTER */
    .footer { padding: 56px 0 0; }
    .footer .grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer .about-blk { grid-column: span 2; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .footer-bottom a { margin: 0 8px; }
  }

  /* ===== LARGE MOBILE (576–768px) ===== */
  @media (max-width: 768px) {
    .container { padding: 0 20px; }

    /* HERO */
    .hero { padding: 48px 0 !important; }
    .hero h1 { font-size: 40px !important; }
    .hero h1 br { display: none; }
    .hero p[style*="font-size:19px"] { font-size: 14px !important; margin-bottom: 32px !important; }

    /* HERO STATS */
    .hero div[style*="grid-template-columns: repeat(4, 1fr); gap:0"] {
      grid-template-columns: repeat(2, 1fr) !important;
    }
    .hero div[style*="grid-template-columns: repeat(4, 1fr); gap:0"] > div {
      padding: 18px 0 18px 16px !important;
      border-bottom: 1px solid var(--line);
    }
    .hero div[style*="grid-template-columns: repeat(4, 1fr); gap:0"] > div:nth-child(2) { border-right: none; }
    .hero div[style*="grid-template-columns: repeat(4, 1fr); gap:0"] > div:nth-child(3) { border-right: 1px solid var(--line); }
    .hero div[style*="grid-template-columns: repeat(4, 1fr); gap:0"] > div:nth-child(4) { border-right: none; }
    .hero div[style*="font-family:'Oswald'; font-size:42px"] { font-size: 32px !important; }

    /* HERO ADVANTAGES */
    .hero div[style*="grid-template-columns: repeat(4, 1fr); gap:20px"] {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 16px !important;
    }
    .hero div[style*="grid-template-columns: repeat(4, 1fr); gap:20px"] > div {
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 8px !important;
    }
    .hero div[style*="grid-template-columns: repeat(4, 1fr); gap:20px"] > div > div:last-child > div:first-child { font-size: 13px; }
    .hero div[style*="grid-template-columns: repeat(4, 1fr); gap:20px"] > div > div:last-child > div:last-child { font-size: 11px; }

    /* HERO CTA */
    .hero div[style*="display:flex; gap:16px; flex-wrap:wrap"] {
      flex-direction: column !important;
      gap: 12px !important;
    }
    .hero .btn { width: 100%; justify-content: center; padding: 14px 20px !important; }

    /* SAMPLE */
    .sample { padding: 48px 0; }
    .sample .text > div[style*="display:flex; gap:24px"] {
      flex-wrap: wrap;
      gap: 18px;
    }
    .sample .text > div[style*="display:flex; gap:24px"] > div > div:first-child { font-size: 28px; }
    .sample h2 { font-size: 28px; }
    .sample p { font-size: 15px; }
    .sample .form { padding: 24px; }

    /* SECTION */
    .section { padding: 56px 0; }
    .section-title { font-size: 28px !important; }
    .section-sub { font-size: 14px !important; margin-bottom: 32px; }

    /* ABOUT */
    .about-images { grid-template-columns: 1fr; gap: 10px; }
    .about-images .img-tall { height: 280px; }
    .about-images .img-small { height: 200px; }
    .about-text p { font-size: 14px; }
    .about-text ul li { font-size: 13px; }

    /* CATALOG */
    .catalog-grid { grid-template-columns: 1fr; gap: 12px; }
    .cat-card .img-wrap { height: 220px; }

    /* PRICES */
    .price-card { padding: 28px 24px; }
    .price-card .amount { font-size: 36px; }

    /* FEEDBACK */
    .feedback .grid2 { grid-template-columns: 1fr !important; gap: 0 !important; }
    .feedback .form-card { padding: 24px; }
    .feedback .form-card h3, .feedback .form-card .form-title { font-size: 22px; }

    /* DELIVERY */
    .delivery-img img { height: 280px; }
    .delivery-img .badge { padding: 14px 18px; bottom: 16px; left: 16px; }
    .delivery-img .badge .big { font-size: 24px; }
    .delivery-options { grid-template-columns: 1fr; }

    /* ADVANTAGES */
    .adv-grid { grid-template-columns: 1fr; gap: 14px; }
    .adv-card { padding: 28px 22px; }
    .adv-card .num { font-size: 38px; }

    /* PROCESS */
    .process-grid { grid-template-columns: 1fr; gap: 28px; }
    .process-step { padding: 0; }
    .process-step .circle { width: 56px; height: 56px; font-size: 20px; }
    .process-step h3 { font-size: 17px; }

    /* PROJECTS */
    .project-card { height: 300px; }
    .project-card .info { padding: 22px; }
    .project-card h3 { font-size: 20px; }
    .project-card .stats { gap: 16px; }
    .project-card .stats .s .v { font-size: 20px; }

    /* GUARANTEES */
    .guar-grid { grid-template-columns: 1fr; gap: 14px; }
    .guar-card { padding: 28px 22px; }

    /* CERTIFICATES */
    .cert-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .cert-card { padding: 16px; }
    .cert-card img { height: 180px; }
    .cert-card h4, .cert-card .cert-card-title { font-size: 13px; }

    /* CLIENTS */
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .client-cell { aspect-ratio: 5 / 2; }
    .client-cell .name { font-size: 14px; }

    /* ARTICLES */
    .articles-grid { grid-template-columns: 1fr; gap: 16px; }

    /* FOOTER */
    .footer { padding: 48px 0 0; }
    .footer .grid { grid-template-columns: 1fr; gap: 32px; }
    .footer .about-blk { grid-column: auto; }
    .footer h4, .footer .footer-heading { font-size: 13px; margin-bottom: 16px; }
    .footer ul li { margin-bottom: 8px; }
    .footer ul li a { font-size: 13px; }

    /* Buttons */
    .btn { padding: 12px 20px; font-size: 12px; }
    .btn svg { width: 12px; height: 12px; }
  }

  /* ===== SMALL MOBILE (<576px) ===== */
  @media (max-width: 576px) {
    .container { padding: 0 16px; }

    .topbar { font-size: 11px; }
    .topbar .container { gap: 8px 14px; padding: 8px 16px; }
    .topbar .item { font-size: 11px; }
    .topbar .item:nth-child(3) { display: none; } /* hide email on tiny screens */

    .header .container { height: 64px; gap: 12px; }
    .header .logo { font-size: 24px !important; }
    .header .logo-tag { display: none; }
    .header .phone { font-size: 14px; }
    .header .btn-primary { display: none; }
    .header .burger { width: 36px; height: 36px; }
    .header .burger span { width: 16px; }

    /* HERO */
    .hero { padding: 36px 0 !important; }
    .hero h1 { font-size: 32px !important; }
    .hero p[style*="font-size:19px"] { font-size: 13px !important; margin-bottom: 24px !important; }
    .hero div[style*="display:flex; align-items:center; gap:14px; margin-bottom:24px"] { margin-bottom: 18px !important; }
    .hero div[style*="display:flex; align-items:center; gap:14px; margin-bottom:24px"] span:last-child { font-size: 11px; }

    .hero div[style*="font-family:'Oswald'; font-size:42px"] { font-size: 26px !important; }
    .hero div[style*="font-family:'Oswald'; font-size:42px"] span { font-size: 18px !important; }
    .hero div[style*="grid-template-columns: repeat(4, 1fr); gap:0"] > div { padding: 14px 0 14px 12px !important; }
    .hero div[style*="grid-template-columns: repeat(4, 1fr); gap:20px"] { gap: 12px !important; }

    /* SAMPLE */
    .sample { padding: 36px 0; }
    .sample h2 { font-size: 24px; line-height: 1.15; }
    .sample p { font-size: 14px; }
    .sample .text > div[style*="display:flex; gap:24px"] { gap: 14px; }
    .sample .text > div[style*="display:flex; gap:24px"] > div > div:first-child { font-size: 24px; }
    .sample .form { padding: 20px; }

    /* SECTION */
    .section { padding: 48px 0; }
    .section-title { font-size: 24px !important; line-height: 1.15 !important; }
    .section-sub { font-size: 13px !important; margin-bottom: 28px; }
    .section-eyebrow { margin-bottom: 14px; }
    .section-eyebrow .label { font-size: 11px; }

    /* ABOUT */
    .about-images .img-tall { height: 220px; }
    .about-images .img-small { height: 160px; }

    /* CATALOG */
    .cat-card .img-wrap { height: 200px; }
    .cat-card .body { padding: 18px; }
    .cat-card h3 { font-size: 18px; }

    /* PRICES */
    .price-card { padding: 24px 20px; }
    .price-card h3 { font-size: 20px; }
    .price-card .amount { font-size: 32px; }
    .price-card .tag { left: 20px; }

    /* FEEDBACK */
    .feedback .form-card { padding: 20px; }
    .feedback .form-card h3, .feedback .form-card .form-title { font-size: 20px; }

    /* DELIVERY */
    .delivery-img img { height: 220px; }
    .delivery-img .badge { padding: 12px 14px; bottom: 12px; left: 12px; }
    .delivery-img .badge .big { font-size: 22px; }

    /* ADVANTAGES */
    .adv-card { padding: 24px 18px; }
    .adv-card .num { font-size: 32px; margin-bottom: 12px; }
    .adv-card .ico { width: 42px; height: 42px; margin-bottom: 14px; }
    .adv-card svg { width: 20px; height: 20px; }
    .adv-card h3, .adv-card .adv-card-title { font-size: 17px; }
    .adv-card p { font-size: 13px; }

    /* PROCESS */
    .process-step .circle { width: 50px; height: 50px; font-size: 18px; margin-bottom: 14px; }
    .process-step h3 { font-size: 16px; }

    /* PROJECTS */
    .project-card { height: 280px; }
    .project-card .info { padding: 18px; }
    .project-card h3 { font-size: 18px; }
    .project-card p { font-size: 12px; }
    .project-card .stats .s .v { font-size: 18px; }

    /* GUARANTEES */
    .guar-card { padding: 24px 18px; }
    .guar-card .ico { width: 52px; height: 52px; }
    .guar-card svg { width: 24px; height: 24px; }
    .guar-card h3 { font-size: 17px; }
    .guar-card p { font-size: 13px; }

    /* CERTIFICATES */
    .cert-grid { grid-template-columns: 1fr; gap: 10px; }
    .cert-card img { height: 200px; }

    /* CLIENTS */
    .client-cell { aspect-ratio: 2 / 1; padding: 14px; }
    .client-cell .name { font-size: 13px; }

    /* ARTICLES */
    .article-card .img-wrap { height: 170px; }
    .article-card .body { padding: 18px; }
    .article-card h3 { font-size: 16px; }
    .article-card p { font-size: 12px; }

    /* FOOTER */
    .footer { padding: 40px 0 0; }
    .footer .grid { gap: 28px; }
    .footer .about-blk .logo { font-size: 24px; }
    .footer .about-blk p { font-size: 12px; }
    .footer .social-blk a { width: 32px; height: 32px; }
    .footer-bottom { font-size: 11px; padding: 18px 0; }

    .btn { padding: 11px 18px; font-size: 11px; }
  }

  /* ===== EXTRA SMALL (<380px) ===== */
  @media (max-width: 380px) {
    .hero h1 { font-size: 26px !important; }
    .section-title { font-size: 21px !important; }
    .sample h2 { font-size: 21px; }
    .price-card .amount { font-size: 28px; }
    .hero div[style*="grid-template-columns: repeat(4, 1fr); gap:0"] > div > div:first-child { font-size: 22px !important; }
  }

  /* Smooth font scaling for very wide screens */
  @media (min-width: 1600px) {
    .container { max-width: 1400px; }
  }

  /* ===== LIGHT THEME OVERRIDES ===== */
  :root {
    --line: rgba(0,0,0,0.10);
    --black-2: #ffffff;
    --black-3: #f0f5f8;
    --gray-2: #4d5f6a;
    --gray-3: #7d8b94;
  }
  body { background: #ffffff; color: #22343f; }

  .topbar { background: #f2f6f8; color: #5a6b76; border-bottom: 1px solid rgba(0,0,0,0.08); }
  .topbar .social a { border-color: rgba(0,0,0,0.14); }
  .topbar .social svg { stroke: #5a6b76; }
  .topbar .social a:hover svg { stroke: #ffffff; }

  .header { background: rgba(255,255,255,0.97); border-bottom: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 14px rgba(22,48,60,0.07); }
  .header nav a { color: #4d5f6a; }
  .header nav a:hover { color: #16303c; }
  .header .logo .b, .header .logo .k, .header .logo .o, .header .logo .r { color: #16303c; }
  .header .logo .e-wrap::before, .header .logo .e-wrap::after, .header .logo .e-wrap .stem { background: #16303c; }
  .header .logo-bk-svg .lf { fill: #16303c; }
  .header .phone { color: #16303c; }
  .header .burger span { background: #16303c; }

  .dropdown-menu { background: #ffffff; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 24px 48px rgba(22,48,60,0.14); }
  .dropdown-menu a { color: #4d5f6a; }
  .dropdown-menu a:hover { background: rgba(var(--accent-rgb),0.10); color: #16303c; }

  .btn-outline { color: #16303c; border-color: rgba(22,48,60,0.35); }
  .btn-ghost { background: rgba(var(--accent-rgb),0.08); color: #16303c; border: 1px solid rgba(var(--accent-rgb),0.35); }

  .section-light { background: #f3f6f8; }
  .section-dark { background: #ffffff; color: #22343f; }
  .section-darker { background: #eef4f7; color: #22343f; }
  .section-dark .section-sub { color: #55676f; }

  .cat-card { border: 1px solid #e2e9ee; box-shadow: 0 4px 18px rgba(22,48,60,0.06); }
  .cat-card .arrow { color: #16303c; }

  .adv-card { border: 1px solid #e2e9ee; box-shadow: 0 4px 18px rgba(22,48,60,0.05); }
  .adv-card:hover { background: #f6fafc; }

  .process-step .circle { background: #ffffff; }

  .feedback { background: linear-gradient(135deg, #f2f6f8 0%, #dfeaf0 100%); }
  .feedback::before { opacity: 0.10; }
  .feedback h2 { color: #16303c; }
  .feedback .info { color: #4d5f6a; }
  .feedback .info .contact-list li { border-bottom: 1px solid rgba(0,0,0,0.08); }
  .feedback .info .contact-list .val { color: #16303c; }
  .feedback .form-card { box-shadow: 0 16px 40px rgba(22,48,60,0.10); }

  .cert-card { border: 1px solid #e2e9ee; box-shadow: 0 4px 18px rgba(22,48,60,0.05); }

  .clients-grid { border: 1px solid rgba(0,0,0,0.10); }
  .client-cell { border-right: 1px solid rgba(0,0,0,0.10); border-bottom: 1px solid rgba(0,0,0,0.10); }
  .client-cell .name { color: #4d5f6a; }

  .footer { background: #1d3d4d; --line: rgba(255,255,255,0.14); --gray-2: #c9d8e0; --gray-3: #8fa6b2; }
  .footer .logo-bk-svg .lf { fill: #ffffff; }

  @media (max-width: 992px) {
    .header nav { background: rgba(255,255,255,0.98); }
    .dropdown-menu { background: rgba(0,0,0,0.04); box-shadow: none; border: none; }
  }

  /* ===== CONTRAST BOOST ===== */
  :root { --gray-2: #3d4f5a; --gray-3: #5c6e78; }
  body { color: #1e2f39; }
  .topbar { color: #43545e; }
  .header nav a { color: #3d4f5a; }
  .section-dark .section-sub, .section-light .section-sub { color: #46575f; }
  .client-cell .name { color: #3d4f5a; }
  .dropdown-menu a { color: #3d4f5a; }
  .feedback .info { color: #3d4f5a; }
  .footer { --gray-2: #d5e2e9; --gray-3: #9fb6c2; }

  /* ===== MOBILE RESPONSIVE FIXES ===== */
  .hero-stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-bottom:48px; border:1px solid var(--line); border-left:none; border-right:none; }
  .hero-adv-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:48px; }
  .cta-grid { display:grid; grid-template-columns:1.2fr 1fr; gap:80px; align-items:center; }
  @media (max-width: 992px) {
    .hero-stats-grid { grid-template-columns:repeat(2,1fr); }
    .hero-stats-grid > div { border-bottom:1px solid var(--line); }
    .hero-adv-grid { grid-template-columns:repeat(2,1fr); }
    .cta-grid { grid-template-columns:1fr; gap:40px; }
  }
  @media (max-width: 576px) {
    .hero-adv-grid { grid-template-columns:1fr; gap:12px; }
  }


  /* ===== CLIENT DESIGN REVISION ===== */
  .header .container {
    height: 92px;
    gap: 28px;
  }
  .header .brand {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
  .header .logo-bk-svg {
    width: 180px;
  }
  .brand-subtitle {
    width: 180px;
    color: #5c6e78;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.075em;
    text-align: center;
  }
  .brand-subtitle span {
    display: block;
  }
  .header nav {
    gap: 14px;
  }
  .header nav > a,
  .header nav > .nav-item > a {
    font-size: 12.5px;
    white-space: nowrap;
  }

  .hero h1 {
    max-width: 1050px;
    font-size: 64px !important;
    line-height: 1.06 !important;
    letter-spacing: -0.015em !important;
  }
  .hero .container > p {
    max-width: 960px !important;
  }
  .hero-adv-grid {
    max-width: 1120px;
    margin-bottom: 40px;
  }
  .hero-adv-grid > div {
    padding: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(var(--accent-rgb),0.18);
    box-shadow: 0 8px 24px rgba(22,48,60,0.06);
  }

  .sample {
    background: linear-gradient(135deg, #edf1f4 0%, #ffffff 70%);
    color: #1e2f39;
    border-top: 1px solid #dce4e9;
    border-bottom: 1px solid #dce4e9;
  }
  .sample::before {
    background: rgba(var(--accent-rgb),0.08);
  }
  .sample::after {
    background: rgba(var(--accent-rgb),0.05);
  }
  .sample .badge {
    background: var(--orange);
    color: #ffffff;
  }
  .sample p {
    color: #46575f;
    opacity: 1;
  }
  .sample .text svg {
    stroke: var(--orange) !important;
  }
  .sample .text > div:last-child {
    border-top-color: rgba(var(--accent-rgb),0.18) !important;
  }
  .sample .text > div:last-child > div > div:first-child {
    color: var(--orange);
  }
  .sample .form {
    border: 1px solid #dfe7ec;
    box-shadow: 0 18px 50px rgba(22,48,60,0.12);
  }

  @media (max-width: 1200px) {
    .header .container { gap: 18px; }
    .header .logo-bk-svg { width: 160px; }
    .brand-subtitle { width: 160px; font-size: 8px; }
    .header nav { gap: 14px; }
    .hero h1 { font-size: 58px !important; }
  }

  @media (max-width: 992px) {
    .header .container { height: 78px; }
    .header nav { top: 78px; }
    .header nav.open { max-height: calc(100vh - 78px); }
    .header .logo-bk-svg { width: 150px; }
    .brand-subtitle { width: 150px; font-size: 8px; }
    .hero h1 { font-size: 48px !important; }
  }

  @media (max-width: 576px) {
    .header .container { height: 70px; }
    .header nav { top: 70px; }
    .header nav.open { max-height: calc(100vh - 70px); }
    .header .logo-bk-svg { width: 125px; }
    .brand-subtitle { width: 125px; font-size: 7px; letter-spacing: 0.04em; }
    .hero h1 { font-size: 38px !important; }
    .hero-adv-grid > div { padding: 14px; }
  }


  /* ===== HEADER LANGUAGE, COLOR TOOL AND FINAL ADAPTIVE POLISH ===== */
  .hero-title-accent { display: block; color: var(--orange); }

  .lang-switch {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    height: 36px;
    padding: 3px;
    border: 1px solid rgba(22,48,60,0.16);
    border-radius: 999px;
    background: #f3f7f9;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  }
  .lang-option {
    min-width: 34px;
    height: 28px;
    padding: 0 8px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #60717a;
    font: 700 11px/1 'Inter', sans-serif;
    letter-spacing: 0.08em;
    cursor: default;
  }
  .lang-option.is-active {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 4px 12px rgba(var(--accent-rgb),0.22);
  }
  .lang-divider { width: 1px; height: 14px; background: rgba(22,48,60,0.12); }

  .sample .container { align-items: stretch; }
  .sample .text { display: flex; flex-direction: column; justify-content: center; }
  .sample-benefits { gap: 24px !important; }
  .sample-benefits ul { display: grid; gap: 10px; }
  .sample-benefits li { margin-bottom: 0 !important; }
  .sample-benefits li svg { stroke: var(--orange) !important; }
  .sample-facts {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px !important;
    padding-top: 22px !important;
    border-top: 1px solid rgba(var(--accent-rgb),0.18) !important;
  }
  .sample-facts > div {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(var(--accent-rgb),0.14);
    background: rgba(255,255,255,0.72);
  }
  .sample-facts strong {
    display: block;
    margin-bottom: 4px;
    color: var(--orange);
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 600;
  }
  .sample-facts span { display: block; color: #5b6c75; font-size: 12px; line-height: 1.45; }
  .sample .form .hint { line-height: 1.5; }

  @media (max-width: 1320px) {
    .header .container { height: 82px; }
    .header .logo-bk-svg { width: 165px; }
    .brand-subtitle { width: 165px; }
    .header nav {
      position: fixed;
      top: 82px;
      left: 0;
      right: 0;
      z-index: 90;
      display: flex;
      flex-direction: column;
      gap: 0;
      max-height: 0;
      padding: 0;
      overflow: hidden;
      background: rgba(255,255,255,0.99);
      border-bottom: 1px solid rgba(0,0,0,0.1);
      box-shadow: 0 18px 40px rgba(22,48,60,0.12);
      transition: max-height .32s ease;
    }
    .header nav.open { max-height: calc(100vh - 82px); overflow-y: auto; }
    .header nav > a,
    .header nav > .nav-item > a {
      width: 100%;
      padding: 14px 28px;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      font-size: 14px;
    }
    .header nav a::after { display: none; }
    .nav-item { width: 100%; flex-direction: column; align-items: stretch; }
    .nav-item > a { justify-content: space-between; }
    .header .dropdown-menu {
      position: static;
      min-width: 0;
      max-height: 0;
      padding: 0;
      overflow: hidden;
      opacity: 1;
      visibility: visible;
      transform: none;
      border: 0;
      background: #f3f6f8;
      box-shadow: none;
      transition: max-height .3s ease, padding .3s ease;
    }
    .header .nav-item.submenu-open .dropdown-menu { max-height: 760px; padding: 5px 0 8px; }
    .header .dropdown-menu a {
      padding: 11px 28px 11px 46px;
      border-bottom: 1px solid rgba(0,0,0,0.055);
      font-size: 13px;
      white-space: normal;
    }
    .header .nav-item.submenu-open .caret { transform: rotate(180deg) !important; }
    .header .burger {
      display: inline-flex !important;
      flex: 0 0 42px;
      width: 42px;
      height: 42px;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      border: 1px solid rgba(22,48,60,0.16);
      border-radius: 10px;
      background: #f5f8f9;
      cursor: pointer;
    }
    .header .burger span { display: block; width: 18px; height: 2px; background: #16303c; transition: all .3s; }
    .header .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .header .burger.open span:nth-child(2) { opacity: 0; }
    .header .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .header .phone { margin-left: auto; }
  }

  @media (max-width: 1080px) {
    .header-cta { display: none !important; }
    .sample-facts { grid-template-columns: 1fr; }
  }

  @media (max-width: 820px) {
    .topbar .item:first-child { flex-basis: 100%; }
    .header .container { height: 76px; gap: 12px; }
    .header nav { top: 76px; }
    .header nav.open { max-height: calc(100vh - 76px); }
    .header .logo-bk-svg { width: 145px; }
    .brand-subtitle { width: 145px; font-size: 7.5px; }
    .header .phone { font-size: 14px; }
    .lang-switch { height: 34px; }
    .lang-option { min-width: 31px; height: 26px; padding: 0 6px; }
  }

  @media (max-width: 640px) {
    .header .phone { display: none; }
    .header .brand { margin-right: auto; }
    .sample-benefits { display: block !important; }
    .sample-benefits img { width: 100%; max-width: 260px; margin: 22px auto 0; }
  }

  @media (max-width: 480px) {
    .header .container { height: 70px; padding-left: 14px; padding-right: 14px; }
    .header nav { top: 70px; }
    .header nav.open { max-height: calc(100vh - 70px); }
    .header .logo-bk-svg { width: 120px; }
    .brand-subtitle { width: 120px; font-size: 6.8px; line-height: 1.15; letter-spacing: .035em; }
    .lang-switch { height: 32px; padding: 2px; }
    .lang-option { min-width: 27px; height: 26px; padding: 0 5px; font-size: 10px; }
    .lang-divider { height: 12px; }
    .header .burger { flex-basis: 38px; width: 38px; height: 38px; }
    .hero-title-accent { display: inline; }
    .sample-facts > div { padding: 12px; }
  }


  /* Final desktop header fit and mobile caret state. */
  .header .container {
    width: 100%;
    max-width: 1320px;
    padding-left: 32px;
    padding-right: 32px;
    gap: 14px;
  }
  .header .brand { min-width: 0; }
  .header .logo-bk-svg { width: 165px; }
  .brand-subtitle { width: 165px; }
  .header nav {
    min-width: 0;
    gap: 8px;
    justify-content: space-between;
  }
  .header nav > a,
  .header nav > .nav-item > a { font-size: 11.5px; }
  .header .phone { font-size: 15px; }
  .header .phone .small { font-size: 10px; }
  .lang-switch { height: 34px; }
  .lang-option { min-width: 31px; height: 26px; padding: 0 6px; }
  .header-cta {
    padding: 11px 13px;
    font-size: 11px;
    white-space: nowrap;
  }
  @media (max-width: 1320px) {
    .header .container {
      max-width: 1320px;
      padding-left: 24px;
      padding-right: 24px;
    }
    .header .nav-item .caret { transform: none !important; }
    .header .nav-item.submenu-open .caret { transform: rotate(180deg) !important; }
  }
  @media (max-width: 480px) {
    .header .container {
      padding-left: 14px;
      padding-right: 14px;
    }
  }


  /* ===== SAMPLE BLOCK COMPACT LAYOUT ===== */
  .sample {
    padding: 56px 0;
  }
  .sample .container {
    align-items: stretch;
    gap: 40px;
  }
  .sample-content {
    flex: 1 1 auto;
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 30px;
    align-items: start;
  }
  .sample-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .sample-eyebrow {
    margin-bottom: 16px;
  }
  .sample-eyebrow .label {
    color: var(--orange);
  }
  .sample h2 {
    max-width: 590px;
    margin-bottom: 14px;
    font-size: 40px;
    line-height: 1.08;
  }
  .sample p {
    max-width: 590px;
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.6;
  }
  .sample-list {
    display: grid;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
  }
  .sample-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: #263a45;
    font-size: 14px;
    line-height: 1.45;
  }
  .sample-list svg {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    fill: none;
    stroke: var(--orange) !important;
    stroke-width: 2.5;
  }
  .sample-image {
    align-self: start;
    min-width: 0;
    padding-top: 2px;
  }
  .sample-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    max-height: 360px;
    margin: 0 auto;
    object-fit: contain;
  }
  .sample-facts {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px !important;
    margin-top: auto;
    padding-top: 18px !important;
    border-top: 1px solid rgba(var(--accent-rgb), 0.18) !important;
  }
  .sample-facts > div {
    padding: 12px;
  }
  .sample-facts strong {
    font-size: 15px;
  }
  .sample .form {
    flex: 0 0 390px;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
  }

  @media (max-width: 1180px) {
    .sample .container { gap: 28px; }
    .sample-content {
      grid-template-columns: minmax(0, 1fr) minmax(210px, 260px);
      gap: 22px;
    }
    .sample h2 { font-size: 35px; }
    .sample .form { flex-basis: 350px; }
  }

  @media (max-width: 992px) {
    .sample { padding: 48px 0; }
    .sample .container { gap: 28px; }
    .sample-content {
      width: 100%;
      grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
      gap: 28px;
    }
    .sample h2 { font-size: 34px; }
    .sample .form {
      flex-basis: auto;
      width: 100%;
      max-width: none;
    }
  }

  @media (max-width: 700px) {
    .sample-content {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .sample-image {
      order: 2;
      padding-top: 0;
    }
    .sample-image img {
      max-width: 280px;
      max-height: 280px;
    }
    .sample-facts {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 480px) {
    .sample { padding: 40px 0; }
    .sample-eyebrow { margin-bottom: 13px; }
    .sample h2 {
      margin-bottom: 12px;
      font-size: 27px;
    }
    .sample p {
      margin-bottom: 18px;
      font-size: 14px;
    }
    .sample-list { margin-bottom: 18px; }
    .sample-list li { font-size: 13px; }
    .sample-image img { max-width: 240px; }
    .sample .form { padding: 22px 18px; }
  }


  /* ===== HEADER WIDTH, TOPBAR LANGUAGE AND NAV SIZE REVISION ===== */
  .header nav > a,
  .header nav > .nav-item > a {
    font-size: 12.5px;
  }

  .topbar .lang-switch {
    height: 32px;
    padding: 2px;
    background: #ffffff;
    border-color: rgba(22,48,60,0.14);
    box-shadow: 0 2px 8px rgba(22,48,60,0.06);
  }
  .topbar .lang-option {
    min-width: 30px;
    height: 26px;
    padding: 0 6px;
    font-size: 10px;
  }
  .topbar .lang-divider {
    height: 12px;
  }

  @media (min-width: 1600px) {
    .header .container {
      max-width: 1400px;
    }
  }

  @media (max-width: 1200px) {
    .header nav > a,
    .header nav > .nav-item > a {
      font-size: 12px;
    }
  }

  @media (max-width: 992px) {
    .header nav > a,
    .header nav > .nav-item > a {
      font-size: 15px;
    }
    .topbar .lang-switch {
      margin-left: auto;
    }
  }

  @media (max-width: 576px) {
    .topbar .lang-switch {
      order: 8;
      margin-left: 0;
    }
    .topbar .social {
      order: 9;
    }
  }


  /* ===== FINAL HEADER SPACING, TOPBAR ORDER AND SAMPLE IMAGE ALIGNMENT ===== */
  @media (min-width: 1321px) {
    .header nav {
      margin-left: 12px;
      margin-right: 12px;
    }
  }

  .topbar .social {
    order: 8;
  }
  .topbar .lang-switch {
    order: 9;
    margin-left: 0;
  }

  .sample-content {
    align-items: stretch;
  }
  .sample-image {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
  }

  @media (max-width: 1320px) {
    .header nav {
      margin-left: 0;
      margin-right: 0;
    }
  }


  /* ===== FINAL HEADER SCALE, SAMPLE IMAGE AND FAQ ===== */
  .brand-subtitle {
    width: 172px;
    margin-top: 4px;
    font-size: 12px !important;
    line-height: 1.12;
    letter-spacing: .035em;
  }
  .brand-subtitle span { display: block; white-space: nowrap; }

  .topbar .social { gap: 11px; }
  .topbar .social a {
    width: 30px;
    height: 30px;
  }
  .topbar .social svg {
    width: 15px;
    height: 15px;
    stroke-width: 1.8;
  }

  .header .phone .small {
    margin-top: 2px;
    font-size: 12.5px;
    line-height: 1.25;
    letter-spacing: .025em;
  }

  .sample-image {
    overflow: visible;
  }
  .sample-image img {
    display: block;
    width: 100%;
    max-width: 340px;
    max-height: none;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  @media (min-width: 1600px) {
    .header nav { gap: 9px; }
    .header nav > a,
    .header nav > .nav-item > a { font-size: 14.5px; }
  }

  @media (min-width: 1321px) and (max-width: 1599px) {
    .header nav { gap: 7px; }
    .header nav > a,
    .header nav > .nav-item > a { font-size: 13.5px; }
  }

  @media (max-width: 1320px) {
    .header nav > a,
    .header nav > .nav-item > a { font-size: 16px; }
    .header .phone .small { font-size: 12px; }
  }

  @media (max-width: 820px) {
    .brand-subtitle {
      width: 150px;
      font-size: 12px !important;
      line-height: 1.08;
      letter-spacing: .025em;
    }
    .topbar .social a { width: 29px; height: 29px; }
    .topbar .social svg { width: 15px; height: 15px; }
    .sample-image img { max-width: 330px; }
  }

  @media (max-width: 480px) {
    .brand-subtitle {
      width: 150px;
      font-size: 12px !important;
      line-height: 1.06;
      letter-spacing: .015em;
    }
    .topbar .social a { width: 28px; height: 28px; }
    .topbar .social svg { width: 14px; height: 14px; }
    .sample-image img { max-width: 300px; }
  }


  .topbar .social svg {
    width: 15px;
    height: 15px;
    stroke: none;
    fill: #5a6b76;
  }
  .topbar .social a:hover svg { fill: #ffffff; }

  .header .phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.15;
  }
  .header .phone .phone-main,
  .header .phone .small {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    letter-spacing: 0.02em;
    text-align: right;
    min-width: 172px;
  }
  .header .phone .phone-main { font-weight: 500; color: #16303c; }
  .header .phone .small {
    margin-top: 2px;
    font-weight: 400;
    color: #667883;
    line-height: 1.15;
  }
  .sample-image img {
    max-width: 390px;
  }

  @media (max-width: 1200px) {
    .header .phone .phone-main,
    .header .phone .small { font-size: 16px; min-width: 154px; }
  }
  @media (max-width: 1320px) {
    .sample-image img { max-width: 360px; }
  }
  @media (max-width: 820px) {
    .sample-image img { max-width: 330px; }
  }
  @media (max-width: 480px) {
    .sample-image img { max-width: 300px; }
  }

  .faq-section {
    background: #f1f4f6;
    color: var(--black);
    border-top: 1px solid rgba(22,48,60,.07);
    border-bottom: 1px solid rgba(22,48,60,.07);
  }
  .faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: 64px;
    align-items: start;
  }
  .faq-intro .section-sub {
    max-width: 460px;
    margin-bottom: 28px;
  }
  .faq-note {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    max-width: 430px;
    padding: 18px 20px;
    border: 1px solid rgba(var(--accent-rgb), .18);
    background: rgba(255,255,255,.72);
    color: #536670;
    font-size: 13px;
    line-height: 1.55;
  }
  .faq-note svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 1.8;
  }
  .faq-list {
    display: grid;
    gap: 12px;
  }
  .faq-item {
    overflow: hidden;
    border: 1px solid #dbe3e7;
    background: #fff;
    transition: border-color .25s ease, box-shadow .25s ease;
  }
  .faq-item:hover,
  .faq-item.is-open {
    border-color: rgba(var(--accent-rgb), .48);
    box-shadow: 0 12px 30px rgba(22,48,60,.07);
  }
  .faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: #1d303a;
    font: 600 17px/1.35 'Inter', sans-serif;
    text-align: left;
    cursor: pointer;
  }
  .faq-icon {
    position: relative;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(var(--accent-rgb), .23);
    background: rgba(var(--accent-rgb), .07);
  }
  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    left: 9px;
    right: 9px;
    top: 50%;
    height: 2px;
    background: var(--orange);
    transform: translateY(-50%);
    transition: transform .25s ease;
  }
  .faq-icon::after { transform: translateY(-50%) rotate(90deg); }
  .faq-item.is-open .faq-icon::after { transform: translateY(-50%) rotate(0); }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease;
  }
  .faq-answer-inner {
    padding: 0 76px 22px 24px;
    color: #5b6d76;
    font-size: 15px;
    line-height: 1.7;
  }
  .faq-item.is-open .faq-answer { max-height: 260px; }

  @media (max-width: 992px) {
    .faq-layout {
      grid-template-columns: 1fr;
      gap: 34px;
    }
    .faq-intro .section-sub { margin-bottom: 22px; }
  }

  @media (max-width: 640px) {
    .faq-layout { gap: 26px; }
    .faq-question {
      gap: 16px;
      padding: 18px;
      font-size: 15px;
    }
    .faq-icon {
      flex-basis: 30px;
      width: 30px;
      height: 30px;
    }
    .faq-icon::before,
    .faq-icon::after { left: 8px; right: 8px; }
    .faq-answer-inner {
      padding: 0 18px 18px;
      font-size: 14px;
    }
    .faq-note { padding: 16px; }
  }


  /* ===== PHONE AND TOPBAR TEXT REFINEMENT ===== */
  .header .phone .phone-main,
  .header .phone .small {
    display: block;
    width: 172px;
    font-family: 'Oswald', sans-serif;
    font-size: 18px !important;
    line-height: 1.15;
    letter-spacing: 0.02em;
    white-space: nowrap;
    text-align: right;
    box-sizing: border-box;
  }
  .header .phone .phone-main { font-weight: 500; }
  .header .phone .small {
    margin-top: 2px;
    font-weight: 400;
    transform: scaleX(0.965);
    transform-origin: right center;
  }

  .topbar .item {
    font-size: 14px;
    line-height: 1.35;
  }

  @media (max-width: 1200px) {
    .header .phone .phone-main,
    .header .phone .small {
      width: 154px;
      font-size: 16px !important;
    }
    .topbar .item { font-size: 13px; }
  }

  @media (max-width: 992px) {
    .topbar .item { font-size: 12.5px; }
  }

  @media (max-width: 640px) {
    .topbar .item { font-size: 12px; }
  }


  /* ===== ABOUT COMPANY PAGE ===== */
  .header nav a.is-active { color: #16303c; }
  .header nav a.is-active::after { width: 100%; }
  .company-page { background: #fff; }
  .company-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #173442;
    color: #fff;
  }
  .company-hero-media { position: absolute; inset: 0; }
  .company-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 52%; }
  .company-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,35,48,.92) 0%, rgba(17,52,69,.76) 48%, rgba(17,52,69,.24) 100%);
  }
  .company-hero .container { position: relative; z-index: 2; width: 100%; padding-top: 86px; padding-bottom: 62px; }
  .breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 22px; color: rgba(255,255,255,.76); font-size: 13px; }
  .breadcrumbs a { transition: color .2s; }
  .breadcrumbs a:hover { color: #fff; }
  .breadcrumbs svg { width: 13px; height: 13px; fill: none; stroke: rgba(255,255,255,.55); stroke-width: 2; }
  .company-hero h1 { max-width: 770px; margin-bottom: 16px; font-family: 'Oswald', sans-serif; font-size: 58px; line-height: 1.03; font-weight: 600; }
  .company-hero p { max-width: 720px; color: rgba(255,255,255,.86); font-size: 18px; line-height: 1.6; }
  .hero-kicker { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 15px; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
  .hero-kicker::before { content: ''; width: 34px; height: 2px; background: var(--orange); }

  .company-story { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(420px,.98fr); gap: 72px; align-items: center; }
  .company-story-copy p { margin-bottom: 18px; color: #50616b; font-size: 16px; line-height: 1.78; }
  .company-story-copy .lead { color: #243842; font-size: 19px; line-height: 1.65; }
  .company-story-media { position: relative; min-height: 560px; }
  .company-story-media .main-photo { width: calc(100% - 96px); height: 500px; object-fit: cover; box-shadow: 0 22px 55px rgba(22,48,60,.16); }
  .company-story-media .detail-photo { position: absolute; right: 0; bottom: 0; width: 48%; height: 260px; object-fit: cover; border: 12px solid #f3f6f8; box-shadow: 0 18px 40px rgba(22,48,60,.16); }
  .company-note { position: absolute; right: 28px; top: 28px; max-width: 230px; padding: 20px; background: var(--orange); color: #fff; box-shadow: 0 16px 36px rgba(var(--accent-rgb),.25); }
  .company-note strong { display: block; margin-bottom: 4px; font-family: 'Oswald'; font-size: 22px; font-weight: 600; }
  .company-note span { font-size: 12px; line-height: 1.45; opacity: .92; }
  .company-capabilities { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 30px; }
  .company-capability { padding: 18px; border: 1px solid #dfe7eb; background: #fff; }
  .company-capability svg { width: 22px; height: 22px; margin-bottom: 12px; fill: none; stroke: var(--orange); stroke-width: 1.8; }
  .company-capability strong { display: block; margin-bottom: 5px; color: #1f343f; font-size: 14px; }
  .company-capability span { color: #71818a; font-size: 12px; line-height: 1.5; }

  .about-delivery-lead { max-width: 780px; }
  .delivery-options.company-delivery-options { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .delivery-options.company-delivery-options .opt { min-height: 146px; }
  .delivery-footnote { margin-top: 18px; padding-left: 18px; border-left: 3px solid var(--orange); color: #667780; font-size: 13px; line-height: 1.6; }

  .certificates-intro { display: flex; align-items: end; justify-content: space-between; gap: 36px; margin-bottom: 44px; }
  .certificates-intro .section-sub { margin-bottom: 0; }
  .cert-card { height: 100%; }
  .cert-card img { background: #f4f6f7; }

  .gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 16px; }
  .gallery-item { position: relative; grid-column: span 4; min-height: 280px; overflow: hidden; background: #dfe7eb; }
  .gallery-item.wide { grid-column: span 8; }
  .gallery-item.tall { min-height: 440px; }
  .gallery-item img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .55s ease; }
  .gallery-item::after { content: ''; position: absolute; inset: 35% 0 0; background: linear-gradient(180deg, transparent, rgba(8,29,40,.88)); }
  .gallery-item:hover img { transform: scale(1.055); }
  .gallery-caption { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 2; color: #fff; }
  .gallery-caption span { display: block; margin-bottom: 7px; color: #a9c7d8; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
  .gallery-caption strong { font-family: 'Oswald'; font-size: 19px; font-weight: 500; line-height: 1.25; }

  .about-feedback .info p { max-width: 540px; }
  .about-feedback .form-card button { border-radius: 0; }

  @media (max-width: 1100px) {
    .company-story { grid-template-columns: 1fr; gap: 48px; }
    .company-story-media { max-width: 760px; }
    .company-hero h1 { font-size: 50px; }
  }
  @media (max-width: 992px) {
    .header nav a.is-active::after { display: none; }
    .company-hero { min-height: 370px; }
    .company-hero .container { padding-top: 72px; padding-bottom: 48px; }
    .company-hero h1 { font-size: 44px; }
    .certificates-intro { align-items: flex-start; flex-direction: column; }
    .gallery-item, .gallery-item.wide { grid-column: span 6; }
  }
  @media (max-width: 680px) {
    .company-hero { min-height: 340px; }
    .company-hero-media::after { background: linear-gradient(90deg, rgba(11,35,48,.94), rgba(17,52,69,.58)); }
    .company-hero h1 { font-size: 36px; }
    .company-hero p { font-size: 15px; }
    .company-story { gap: 34px; }
    .company-story-copy .lead { font-size: 17px; }
    .company-story-media { min-height: 410px; }
    .company-story-media .main-photo { width: calc(100% - 48px); height: 380px; }
    .company-story-media .detail-photo { width: 52%; height: 190px; border-width: 8px; }
    .company-note { right: 0; top: 18px; max-width: 190px; padding: 16px; }
    .company-note strong { font-size: 19px; }
    .company-capabilities { grid-template-columns: 1fr; }
    .delivery-options.company-delivery-options { grid-template-columns: 1fr; }
    .gallery-item, .gallery-item.wide { grid-column: span 12; min-height: 260px; }
    .gallery-item.tall { min-height: 320px; }
  }


  /* Final compact mobile header correction. */
  @media (max-width: 640px) {
    .header .phone { display: none !important; }
    .header .logo-bk-svg { width: 120px !important; }
    .brand-subtitle { width: 120px !important; font-size: 6.8px !important; line-height: 1.15; letter-spacing: .035em; }
    .header .brand { margin-right: auto; }
    .header .burger { margin-left: auto; }
  }


/* WordPress theme integration. */
body.admin-bar .header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .header { top: 46px; } }
.screen-reader-text { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.logo-image { width:140px; height:auto; display:block; }
.footer .logo-image { width:130px; }
.header nav .current-menu-item > a,
.header nav .current_page_item > a { color:var(--white); }
.header nav .current-menu-item > a::after,
.header nav .current_page_item > a::after { width:100%; }
.bekor-notice { padding:12px 16px; margin-bottom:18px; border:1px solid rgba(255,255,255,.18); background:rgba(255,255,255,.08); font-size:14px; }
.bekor-notice.success { border-color:rgba(76,175,80,.55); }
.bekor-notice.error { border-color:rgba(244,67,54,.55); }
.form-card textarea, .sample .form textarea { min-height:105px; resize:vertical; }
.form-card select, .sample .form select,
.form-card textarea, .sample .form textarea {
  width:100%; padding:12px 14px; font-size:14px; border:1px solid #d4d2d0; background:#fafafa; font-family:inherit; color:var(--black);
}
.form-card select:focus, .sample .form select:focus,
.form-card textarea:focus, .sample .form textarea:focus { outline:none; border-color:var(--orange); background:#fff; }
.bekor-hp { position:absolute !important; left:-9999px !important; opacity:0 !important; pointer-events:none !important; }
.block-empty { padding:36px; border:1px dashed currentColor; opacity:.7; }
.wp-block-image img, .entry-content img { height:auto; }
.page-generic { background:#f6f5f3; color:var(--black); min-height:60vh; }
.page-generic .container { padding-top:80px; padding-bottom:80px; }
.page-generic h1 { font-family:'Oswald',sans-serif; font-size:48px; margin-bottom:28px; }
.entry-content { font-size:17px; line-height:1.75; }
.entry-content > * + * { margin-top:1.2em; }
.bekor-section-off { display:none !important; }
.hero .btn, .feedback .btn, .sample .btn { text-decoration:none; }
.hero-title-accent { color:var(--orange); }
.hero-bg { background-size:cover !important; background-position:center !important; }
.company-hero-media img { width:100%; height:100%; object-fit:cover; }
.gallery-item img { width:100%; height:100%; object-fit:cover; }
.article-card .img-wrap img, .project-card > img { width:100%; height:100%; object-fit:cover; }
.footer-menu, .footer-menu ul { list-style:none; padding:0; margin:0; }
.footer-menu li { margin:0 0 10px; }
.mobile-menu-open { overflow:hidden; }
.form-status-anchor { scroll-margin-top:120px; }
.cta-stats { display:flex; gap:32px; flex-wrap:wrap; }
.cta-stats > div { min-width:130px; }
.cta-stats strong { display:block; font-family:'Oswald',sans-serif; font-size:36px; color:var(--orange); font-weight:600; }
.cta-stats span { display:block; font-size:12px; color:var(--gray-3); text-transform:uppercase; letter-spacing:.1em; }
.section-button { margin-top:36px; text-align:center; }
.entry-meta { color:#777; margin:-14px 0 24px; }
.entry-cover { margin-bottom:32px; }
.entry-cover img { width:100%; height:auto; }

/* Typography lock for the approved Bekor mockup. */
body.bekor-theme,
body.bekor-theme button,
body.bekor-theme input,
body.bekor-theme textarea,
body.bekor-theme select {
  font-family: 'Inter', Arial, sans-serif !important;
}
body.bekor-theme h1,
body.bekor-theme h2,
body.bekor-theme h3,
body.bekor-theme h4,
body.bekor-theme .section-title,
body.bekor-theme .hero h1,
body.bekor-theme .company-hero h1,
body.bekor-theme .phone,
body.bekor-theme .price,
body.bekor-theme .amount,
body.bekor-theme .delivery-img .big,
body.bekor-theme .contact-list .val,
body.bekor-theme .gallery-caption strong,
body.bekor-theme .company-note strong {
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif !important;
}
.contact-socials { display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }
.footer-menu { list-style:none; padding:0; margin:0; }
.article-card .read { display:inline-flex; align-items:center; gap:8px; margin-top:16px; color:var(--orange); font-size:12px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; }

/* menu state, dropdown and language alignment. */
.header nav > a.is-active,
.header nav > .nav-item > a.is-active {
  color: #16303c;
}
.header nav > a.is-active::after,
.header nav > .nav-item > a.is-active::after {
  width: 100%;
}

/* Keep the approved light dropdown appearance from the HTML mockup. */
.header .dropdown-menu {
  min-width: 288px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0;
  box-shadow: 0 24px 48px rgba(22,48,60,0.14);
}
.header .dropdown-menu a,
.header .dropdown-menu a.is-active {
  display: block;
  padding: 11px 14px;
  color: #4d5f6a;
  background: transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  white-space: nowrap;
}
.header .dropdown-menu a:hover,
.header .dropdown-menu a:focus-visible {
  color: #16303c;
  background: rgba(var(--accent-rgb),0.10);
}

/* Buttons and links use the same centering model inside the language switch. */
.lang-option,
.topbar .lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  vertical-align: middle;
}

@media (max-width: 1320px) {
  .header .dropdown-menu {
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #f3f6f8;
    box-shadow: none;
  }
  .header .nav-item.submenu-open .dropdown-menu {
    padding: 5px 0 8px;
  }
  .header .dropdown-menu a,
  .header .dropdown-menu a.is-active {
    padding: 11px 28px 11px 46px;
    border-bottom: 1px solid rgba(0,0,0,0.055);
    border-radius: 0;
    font-size: 13px;
    white-space: normal;
  }
}

/* unified vertical rhythm for page sections. */
:root {
  --bekor-section-space: 100px;
}

/* All regular content blocks use the same top and bottom spacing. */
body.bekor-theme .section,
body.bekor-theme .sample {
  padding-top: var(--bekor-section-space) !important;
  padding-bottom: var(--bekor-section-space) !important;
}

/* Do not let margins of the first or last inner element distort section edges. */
body.bekor-theme .section > .container > :first-child,
body.bekor-theme .sample > .container > :first-child {
  margin-top: 0;
}
body.bekor-theme .section > .container > :last-child,
body.bekor-theme .sample > .container > :last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  :root { --bekor-section-space: 70px; }
}

@media (max-width: 640px) {
  :root { --bekor-section-space: 56px; }
}

@media (max-width: 420px) {
  :root { --bekor-section-space: 48px; }
}

/* about gallery slider and full-width home hero content. */
body.bekor-theme .hero > .container {
  width: 100%;
}
body.bekor-theme .hero h1,
body.bekor-theme .hero .container > p,
body.bekor-theme .hero-adv-grid {
  max-width: none !important;
  width: 100%;
}

body.bekor-theme .gallery-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 40px;
}
body.bekor-theme .gallery-heading-copy {
  min-width: 0;
}
body.bekor-theme .gallery-heading-copy > :last-child {
  margin-bottom: 0;
}
body.bekor-theme .gallery-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
body.bekor-theme .gallery-arrow {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 48, 60, 0.2);
  background: #fff;
  color: #183744;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}
body.bekor-theme .gallery-arrow:hover:not(:disabled) {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}
body.bekor-theme .gallery-arrow:disabled {
  opacity: .35;
  cursor: default;
}
body.bekor-theme .gallery-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
body.bekor-theme .gallery-viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  outline: none;
}
body.bekor-theme .gallery-viewport::-webkit-scrollbar {
  display: none;
}
body.bekor-theme .gallery-track {
  width: 100%;
  display: flex;
  gap: 18px;
}
body.bekor-theme .gallery-slide {
  position: relative;
  flex: 0 0 calc((100% - 54px) / 4);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dfe7eb;
  scroll-snap-align: start;
}
body.bekor-theme .gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
body.bekor-theme .gallery-slide:hover img {
  transform: scale(1.045);
}

@media (max-width: 992px) {
  body.bekor-theme .gallery-slide {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  body.bekor-theme .gallery-heading-row {
    align-items: flex-start;
    margin-bottom: 28px;
  }
  body.bekor-theme .gallery-arrow {
    width: 42px;
    height: 42px;
  }
  body.bekor-theme .gallery-slide {
    flex-basis: 100%;
  }
}


/* image lightbox for gallery and certificates. */
body.bekor-theme .bekor-lightbox-trigger {
  position: relative;
  display: block;
  width: 100%;
  cursor: zoom-in;
  text-decoration: none;
}
body.bekor-theme .bekor-lightbox-trigger::after {
  content: '';
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(10,31,42,.72) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cpath d='m16 16 4 4M11 8v6M8 11h6'/%3E%3C/svg%3E") center/18px no-repeat;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease, background-color .2s ease;
  pointer-events: none;
}
body.bekor-theme .bekor-lightbox-trigger:hover::after,
body.bekor-theme .bekor-lightbox-trigger:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
body.bekor-theme .cert-lightbox-trigger {
  margin-bottom: 16px;
  overflow: hidden;
}
body.bekor-theme .cert-lightbox-trigger img {
  margin-bottom: 0;
}
body.bekor-theme .gallery-lightbox-trigger {
  height: 100%;
}
body.bekor-theme .gallery-lightbox-trigger img {
  display: block;
}
body.bekor-lightbox-open {
  overflow: hidden;
}
.bekor-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.bekor-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.bekor-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,18,26,.92);
  backdrop-filter: blur(5px);
}
.bekor-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px minmax(0,1fr) 52px;
  align-items: center;
  gap: 18px;
  width: min(1240px, 100%);
  max-height: calc(100vh - 56px);
}
.bekor-lightbox-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-height: calc(100vh - 56px);
}
.bekor-lightbox-media img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 56px);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 70px rgba(0,0,0,.38);
}
.bekor-lightbox-close,
.bekor-lightbox-nav {
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}
.bekor-lightbox-close:hover,
.bekor-lightbox-nav:hover {
  border-color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.16);
}
.bekor-lightbox-close:focus-visible,
.bekor-lightbox-nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}
.bekor-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  z-index: 2;
}
.bekor-lightbox-close span {
  position: absolute;
  left: 13px;
  top: 22px;
  width: 20px;
  height: 2px;
  background: currentColor;
}
.bekor-lightbox-close span:first-child { transform: rotate(45deg); }
.bekor-lightbox-close span:last-child { transform: rotate(-45deg); }
.bekor-lightbox-nav {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bekor-lightbox-nav[hidden] { display: none; }
.bekor-lightbox-nav svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
@media (max-width: 700px) {
  .bekor-lightbox {
    padding: 64px 14px 18px;
  }
  .bekor-lightbox-dialog {
    display: flex;
    width: 100%;
    max-height: calc(100vh - 82px);
  }
  .bekor-lightbox-media {
    width: 100%;
    max-height: calc(100vh - 82px);
  }
  .bekor-lightbox-media img {
    max-height: calc(100vh - 82px);
  }
  .bekor-lightbox-nav {
    position: fixed;
    top: 50%;
    z-index: 3;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
    background: rgba(4,18,26,.68);
  }
  .bekor-lightbox-prev { left: 8px; }
  .bekor-lightbox-next { right: 8px; }
  .bekor-lightbox-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
  }
  .bekor-lightbox-close span {
    left: 10px;
    top: 19px;
  }
}

/* inner-page hero uses the global vertical rhythm. */
body.bekor-theme .company-hero > .container {
  padding-top: var(--bekor-section-space) !important;
  padding-bottom: var(--bekor-section-space) !important;
}


/* explicit alternating section backgrounds. */
body.bekor-theme {
  --bekor-bg-white: #ffffff;
  --bekor-bg-soft: #f3f6f8;
  --bekor-bg-tint: #eaf2f6;
}
body.bekor-theme .section-bg-white {
  background-color: var(--bekor-bg-white) !important;
}
body.bekor-theme .section-bg-soft {
  background-color: var(--bekor-bg-soft) !important;
}
body.bekor-theme .section-bg-tint {
  background-color: var(--bekor-bg-tint) !important;
}
body.bekor-theme .section-bg-white + .section-bg-white,
body.bekor-theme .section-bg-soft + .section-bg-soft,
body.bekor-theme .section-bg-tint + .section-bg-tint {
  border-top: 1px solid rgba(22, 48, 60, 0.08);
}

/* about form matches the first form on the home page. */
body.bekor-theme .about-feedback .form {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: var(--white);
  color: var(--black);
  border: 1px solid #dfe7ec;
  box-shadow: 0 18px 50px rgba(22,48,60,0.12);
}
body.bekor-theme .about-feedback .form h3 {
  margin: 0 0 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}
body.bekor-theme .about-feedback .form .hint {
  margin-bottom: 20px;
  color: #777;
  font-size: 13px;
  line-height: 1.5;
}
body.bekor-theme .about-feedback .form .row {
  margin-bottom: 12px;
}
body.bekor-theme .about-feedback .form label {
  display: block;
  margin-bottom: 6px;
  color: #666;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
body.bekor-theme .about-feedback .form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d4d2d0;
  background: #fafafa;
  color: var(--black);
  font-family: inherit;
  font-size: 14px;
}
body.bekor-theme .about-feedback .form input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
body.bekor-theme .about-feedback .form .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 14px;
  margin-top: 8px;
}
body.bekor-theme .about-feedback .form .agree {
  margin-top: 12px;
  color: #888;
  font-size: 11px;
  line-height: 1.4;
}
@media (max-width: 640px) {
  body.bekor-theme .about-feedback .form {
    padding: 22px 18px;
  }
}


/* ===== CATEGORY PRODUCT PAGE 3.1.0 ===== */
.category-hero .category-hero-button { margin-top: 28px; }
.category-products .section-sub { max-width: 820px; }
.product-series + .product-series { margin-top: 54px; }
.product-series-heading { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:20px; padding-bottom:14px; border-bottom:1px solid #dfe7ec; }
.product-series-heading h3 { margin:0; font-family:'Oswald',sans-serif; font-size:28px; font-weight:600; color:var(--black); }
.product-series-heading span { color:#687881; font-size:13px; }
.product-card-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.product-position-card { display:flex; flex-direction:column; min-height:255px; padding:24px; border:1px solid #dfe7ec; background:#fff; box-shadow:0 8px 26px rgba(22,48,60,.06); transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease; }
.product-position-card:hover { transform:translateY(-3px); border-color:rgba(var(--accent-rgb),.55); box-shadow:0 14px 38px rgba(22,48,60,.10); }
.product-position-top { display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:24px; }
.product-series-badge { padding:6px 9px; background:rgba(var(--accent-rgb),.10); color:var(--orange); font-size:11px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; }
.product-size { color:#60717b; font-size:13px; font-weight:600; }
.product-position-card h4, .product-position-card .product-position-title { margin:0 0 20px; font-family:'Oswald',sans-serif; font-size:20px; line-height:1.3; font-weight:600; color:var(--black); }
.product-price { margin-top:auto; margin-bottom:18px; font-family:'Oswald',sans-serif; font-size:27px; font-weight:700; color:var(--orange); }
.product-position-card .btn { width:100%; justify-content:center; }
.category-note { margin-top:28px; padding:16px 18px; border-left:3px solid var(--orange); background:#f3f6f8; color:#566871; font-size:13px; line-height:1.6; }
.category-content-list { display:grid; gap:34px; }
.category-content-row { display:grid; grid-template-columns:minmax(0,1fr) minmax(0,1fr); align-items:stretch; min-height:390px; background:#f3f6f8; }
.category-content-row.image-right .category-content-media { order:2; }
.category-content-row.image-right .category-content-copy { order:1; }
.category-content-media { min-height:360px; overflow:hidden; }
.category-content-media img { width:100%; height:100%; object-fit:cover; }
.category-content-copy { display:flex; flex-direction:column; justify-content:center; padding:48px; }
.category-content-copy h3 { margin:0 0 18px; font-family:'Oswald',sans-serif; font-size:31px; line-height:1.15; color:var(--black); }
.category-content-copy p { margin:0 0 14px; color:#53656f; font-size:16px; line-height:1.75; }
.category-tab-buttons { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-bottom:20px; }
.category-tab-button { min-width:0; padding:18px; border:1px solid #dfe7ec; background:#fff; color:var(--black); text-align:left; cursor:pointer; transition:.2s ease; }
.category-tab-button strong,.category-tab-button span { display:block; }
.category-tab-button strong { font-family:'Oswald',sans-serif; font-size:20px; font-weight:600; }
.category-tab-button span { margin-top:5px; color:#71818a; font-size:12px; line-height:1.4; }
.category-tab-button:hover,.category-tab-button.is-active { border-color:var(--orange); background:var(--black); color:#fff; }
.category-tab-button.is-active span,.category-tab-button:hover span { color:rgba(255,255,255,.7); }
.category-tab-panel { display:none; grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr); min-height:430px; background:var(--black); color:#fff; }
.category-tab-panel.is-active { display:grid; }
.category-tab-media { min-height:430px; overflow:hidden; }
.category-tab-media img { width:100%; height:100%; object-fit:cover; }
.category-tab-copy { display:flex; flex-direction:column; justify-content:center; padding:52px; }
.category-tab-kicker { color:var(--orange); font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; }
.category-tab-copy h3 { margin:12px 0 18px; font-family:'Oswald',sans-serif; font-size:38px; line-height:1.1; }
.category-tab-copy p { margin:0; color:rgba(255,255,255,.74); font-size:16px; line-height:1.7; }
.category-tab-copy ul { display:grid; grid-template-columns:1fr 1fr; gap:12px 18px; margin:28px 0 0; padding:0; list-style:none; }
.category-tab-copy li { position:relative; padding-left:18px; color:rgba(255,255,255,.88); font-size:14px; }
.category-tab-copy li::before { content:''; position:absolute; left:0; top:.55em; width:7px; height:7px; background:var(--orange); }
.material-card-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.material-card { overflow:hidden; border:1px solid #dfe7ec; background:#fff; box-shadow:0 8px 26px rgba(22,48,60,.05); }
.material-card-media { height:210px; overflow:hidden; }
.material-card-media img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.material-card:hover .material-card-media img { transform:scale(1.04); }
.material-card-body { padding:24px; }
.material-card-body > span { color:var(--orange); font-size:11px; font-weight:700; letter-spacing:.09em; text-transform:uppercase; }
.material-card-body h3, .material-card-body .material-card-title { margin:9px 0 12px; font-family:'Oswald',sans-serif; font-size:21px; color:var(--black); }
.material-card-body p { margin:0; color:#60717b; font-size:14px; line-height:1.65; }
.category-project-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.category-project-card { display:flex; flex-direction:column; overflow:hidden; border:1px solid #dfe7ec; background:#fff; }
.category-project-media { height:235px; overflow:hidden; }
.category-project-media img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.category-project-card:hover img { transform:scale(1.04); }
.category-project-body { display:flex; flex:1; flex-direction:column; padding:25px; }
.category-project-body h3 { margin:0 0 11px; font-family:'Oswald',sans-serif; font-size:22px; line-height:1.3; color:var(--black); }
.category-project-body p { margin:0 0 22px; color:#60717b; font-size:14px; line-height:1.6; }
.category-project-body .more { margin-top:auto; color:var(--orange); font-size:13px; font-weight:700; text-decoration:none; }
.clients-grid-logos .client-cell { min-height:118px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; padding:18px; text-decoration:none; }
.clients-grid-logos .client-logo { display:block; max-width:125px; max-height:46px; width:auto; height:auto; object-fit:contain; filter:grayscale(1); opacity:.78; transition:.2s ease; }
.clients-grid-logos .client-cell:hover .client-logo { filter:none; opacity:1; }
.clients-grid-logos .client-cell.has-logo .name { font-size:11px; color:#6d7c84; }
.category-gallery .gallery-slide { flex:0 0 calc((100% - 54px)/4); aspect-ratio:1.16/1; }
.category-gallery .gallery-slide img { width:100%; height:100%; object-fit:cover; }
@media (max-width:1100px) {
  .product-card-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .material-card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .category-project-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .category-tab-buttons { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:820px) {
  .product-card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .category-content-row,.category-tab-panel.is-active { grid-template-columns:1fr; }
  .category-content-row.image-right .category-content-media,.category-content-row.image-right .category-content-copy { order:initial; }
  .category-content-media,.category-tab-media { min-height:300px; }
  .category-content-copy,.category-tab-copy { padding:34px; }
  .category-gallery .gallery-slide { flex-basis:calc((100% - 18px)/2); }
}
@media (max-width:600px) {
  .product-card-grid,.material-card-grid,.category-project-grid,.category-tab-buttons { grid-template-columns:1fr; }
  .product-position-card { min-height:230px; padding:20px; }
  .product-series-heading { align-items:flex-end; }
  .product-series-heading h3 { font-size:24px; }
  .category-content-copy,.category-tab-copy { padding:26px 20px; }
  .category-content-copy h3 { font-size:25px; }
  .category-tab-copy h3 { font-size:30px; }
  .category-tab-copy ul { grid-template-columns:1fr; }
  .category-gallery .gallery-slide { flex-basis:100%; }
}

/* category admin flexibility and layout refinements. */
body.bekor-theme .category-hero .category-hero-media-inner {
  width: 100%;
  max-width: 1320px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
}
body.bekor-theme .category-hero .category-hero-media-inner img {
  width: 58%;
  height: 100%;
  margin-left: auto;
  object-fit: contain;
  object-position: right center;
}

body.bekor-theme .product-position-card {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}
body.bekor-theme .product-position-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #edf2f5 0%, #dce7ec 100%);
}
body.bekor-theme .product-position-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform .35s ease;
}
body.bekor-theme .product-position-card:hover .product-position-media img {
  transform: scale(1.035);
}
body.bekor-theme .product-position-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}
body.bekor-theme .product-position-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 10px;
  margin-top: 0;
}
body.bekor-theme .product-position-actions .product-detail-button {
  width: auto;
  min-width: 0;
  padding-right: 16px;
  padding-left: 16px;
}
body.bekor-theme .product-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
body.bekor-theme .product-order-button:hover {
  border-color: var(--black);
  background: var(--black);
  transform: translateY(-1px);
}
body.bekor-theme .product-order-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .category-tab-button {
  border-color: #d9e2e7;
  background: #fff;
  color: #203641;
  box-shadow: 0 8px 22px rgba(22,48,60,.04);
}
body.bekor-theme .category-tab-button:hover {
  border-color: rgba(var(--accent-rgb),.48);
  background: #eef4f7;
  color: #203641;
}
body.bekor-theme .category-tab-button.is-active {
  border-color: var(--orange);
  background: #eaf2f6;
  color: #203641;
  box-shadow: inset 0 -3px 0 var(--orange);
}
body.bekor-theme .category-tab-button.is-active span,
body.bekor-theme .category-tab-button:hover span {
  color: #667983;
}
body.bekor-theme .category-tab-panel {
  grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
  min-height: 0;
  align-items: stretch;
  border: 1px solid #dce5e9;
  background: #f3f6f8;
  color: #203641;
}
body.bekor-theme .category-tab-media {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #dfe8ec;
}
body.bekor-theme .category-tab-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.bekor-theme .category-tab-copy {
  justify-content: flex-start;
  padding: 38px 42px;
}
body.bekor-theme .category-tab-copy h3 {
  color: #203641;
}
body.bekor-theme .category-tab-copy p {
  color: #586b75;
}
body.bekor-theme .category-tab-copy li {
  color: #415660;
}

body.bekor-theme .category-faq .faq-intro {
  position: sticky;
  top: 138px;
  align-self: start;
}

@media (max-width: 992px) {
  body.bekor-theme .category-faq .faq-intro {
    position: static;
  }
}
@media (max-width: 820px) {
  body.bekor-theme .category-hero .category-hero-media-inner {
    padding: 0 24px;
  }
  body.bekor-theme .category-hero .category-hero-media-inner img {
    width: 100%;
    opacity: .5;
    object-position: 72% center;
  }
  body.bekor-theme .category-tab-media {
    min-height: 280px;
  }
}
@media (max-width: 600px) {
  body.bekor-theme .category-hero .category-hero-media-inner {
    padding: 0 16px;
  }
  body.bekor-theme .product-position-body {
    padding: 18px;
  }
  body.bekor-theme .product-position-actions {
    grid-template-columns: minmax(0,1fr) 46px;
  }
  body.bekor-theme .product-order-button {
    width: 46px;
    height: 46px;
  }
  body.bekor-theme .category-tab-copy {
    padding: 28px 20px;
  }
  body.bekor-theme .category-tab-media {
    min-height: 235px;
  }
}


/* category hero alignment and text-only content rows. */
body.bekor-theme .category-hero .category-hero-media-inner {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}
body.bekor-theme .category-hero .category-hero-media-inner img {
  flex: 0 0 58%;
  width: 58%;
  margin: 0;
  object-position: right center;
}
body.bekor-theme .category-content-row.no-image {
  display: block;
  min-height: 0;
}
body.bekor-theme .category-content-row.no-image .category-content-copy {
  width: 100%;
  max-width: none;
  padding: 48px;
}
@media (max-width: 820px) {
  body.bekor-theme .category-hero .category-hero-media-inner {
    justify-content: flex-end;
  }
  body.bekor-theme .category-hero .category-hero-media-inner img {
    flex-basis: 100%;
    width: 100%;
  }
  body.bekor-theme .category-content-row.no-image .category-content-copy {
    padding: 34px;
  }
}
@media (max-width: 600px) {
  body.bekor-theme .category-content-row.no-image .category-content-copy {
    padding: 26px 20px;
  }
}

/* mobile tabs and clients. */
@media (max-width: 768px) {
  body.bekor-theme .category-tabs-section .category-tab-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
  }

  body.bekor-theme .category-tabs-section .category-tab-button {
    min-height: 82px;
    padding: 14px 12px;
  }

  body.bekor-theme .category-tabs-section .category-tab-button strong {
    font-size: 18px;
  }

  body.bekor-theme .category-tabs-section .category-tab-panel.is-active {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  body.bekor-theme .category-tabs-section .category-tab-media {
    order: 1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  body.bekor-theme .category-tabs-section .category-tab-media img {
    position: static;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body.bekor-theme .category-tabs-section .category-tab-copy {
    order: 2;
    width: 100%;
    padding: 28px 22px 30px;
  }

  body.bekor-theme .category-tabs-section .category-tab-copy h3 {
    margin-top: 8px;
    font-size: 30px;
  }

  body.bekor-theme .category-tabs-section .category-tab-copy ul {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  body.bekor-theme .universal-clients-block .clients-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border: 0;
  }

  body.bekor-theme .universal-clients-block .client-cell {
    min-width: 0;
    min-height: 104px;
    aspect-ratio: auto;
    padding: 14px 10px;
    border: 1px solid rgba(32, 54, 65, 0.10);
    background: #fff;
    overflow: hidden;
  }

  body.bekor-theme .universal-clients-block .client-logo {
    max-width: min(100%, 108px);
    max-height: 38px;
  }

  body.bekor-theme .universal-clients-block .client-cell .name,
  body.bekor-theme .universal-clients-block .client-cell.has-logo .name {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body.bekor-theme .category-tabs-section .category-tab-buttons {
    grid-template-columns: 1fr;
  }

  body.bekor-theme .category-tabs-section .category-tab-button {
    min-height: 0;
    padding: 13px 14px;
  }

  body.bekor-theme .category-tabs-section .category-tab-media {
    aspect-ratio: 4 / 3;
  }

  body.bekor-theme .category-tabs-section .category-tab-copy {
    padding: 24px 18px 26px;
  }

  body.bekor-theme .category-tabs-section .category-tab-copy h3 {
    font-size: 27px;
  }

  body.bekor-theme .universal-clients-block .clients-grid {
    gap: 8px;
  }

  body.bekor-theme .universal-clients-block .client-cell {
    min-height: 94px;
    padding: 12px 8px;
  }

  body.bekor-theme .universal-clients-block .client-logo {
    max-width: min(100%, 92px);
    max-height: 34px;
  }
}

@media (max-width: 350px) {
  body.bekor-theme .universal-clients-block .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* complete mobile audit and form rhythm. */
@media (max-width: 768px) {
  html,
  body.bekor-theme {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.bekor-theme .container,
  body.bekor-theme .feedback .grid > *,
  body.bekor-theme .delivery > *,
  body.bekor-theme .category-content-row > *,
  body.bekor-theme .category-tab-panel > * {
    min-width: 0;
  }

  body.bekor-theme .section-title,
  body.bekor-theme .company-hero h1,
  body.bekor-theme .product-position-card h3,
  body.bekor-theme .product-position-card .product-position-title,
  body.bekor-theme .category-tab-copy h3,
  body.bekor-theme .project-card h3,
  body.bekor-theme .delivery-options .name,
  body.bekor-theme .client-cell .name,
  body.bekor-theme .footer .contact-item .v {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  body.bekor-theme .section-eyebrow {
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  body.bekor-theme .section-eyebrow .label {
    line-height: 1.35;
    letter-spacing: .22em;
  }

  body.bekor-theme .btn {
    min-height: 44px;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  /* Universal contact and other feedback forms. */
  body.bekor-theme .feedback .grid {
    gap: 32px;
  }

  body.bekor-theme .feedback .info,
  body.bekor-theme .feedback .form-card {
    width: 100%;
    min-width: 0;
  }

  body.bekor-theme .feedback .form-card .grid2 {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-bottom: 12px !important;
  }

  body.bekor-theme .feedback .form-card .grid2 > .row {
    margin: 0 !important;
  }

  body.bekor-theme .feedback .form-card .row {
    min-width: 0;
    margin-bottom: 12px;
  }

  body.bekor-theme .feedback .form-card label,
  body.bekor-theme .sample .form label {
    margin-bottom: 7px;
    line-height: 1.35;
  }

  body.bekor-theme .feedback .form-card input,
  body.bekor-theme .feedback .form-card select,
  body.bekor-theme .feedback .form-card textarea,
  body.bekor-theme .sample .form input,
  body.bekor-theme .sample .form select,
  body.bekor-theme .sample .form textarea {
    min-width: 0;
    min-height: 46px;
    font-size: 16px !important;
    line-height: 1.35;
  }

  body.bekor-theme .feedback .form-card textarea,
  body.bekor-theme .sample .form textarea {
    min-height: 110px;
  }

  body.bekor-theme .feedback .form-card .btn-primary,
  body.bekor-theme .sample .form .btn-primary {
    min-height: 48px;
    margin-top: 4px;
  }

  body.bekor-theme .feedback .info .contact-list li > div:last-child {
    min-width: 0;
  }

  body.bekor-theme .feedback .info .contact-list .val {
    overflow-wrap: anywhere;
  }

  /* Grids and cards that can contain long content. */
  body.bekor-theme .delivery-options .opt,
  body.bekor-theme .cert-card,
  body.bekor-theme .product-position-card,
  body.bekor-theme .material-card,
  body.bekor-theme .client-cell {
    min-width: 0;
  }

  body.bekor-theme .project-card .stats {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  body.bekor-theme .gallery-heading-row {
    gap: 16px;
  }

  body.bekor-theme .gallery-heading-copy {
    min-width: 0;
  }
}

@media (max-width: 576px) {
  body.bekor-theme .topbar .container {
    height: auto;
    min-height: 44px;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 7px;
  }

  body.bekor-theme .topbar .spacer {
    display: none;
  }

  body.bekor-theme .topbar .item {
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  body.bekor-theme .feedback .info p {
    margin-bottom: 24px;
    font-size: 14px;
  }

  body.bekor-theme .feedback .info .contact-list {
    margin-bottom: 24px;
  }

  body.bekor-theme .feedback .info .contact-list li {
    gap: 12px;
    padding: 12px 0;
  }

  body.bekor-theme .feedback .info .contact-list .ico {
    width: 38px;
    height: 38px;
  }

  body.bekor-theme .feedback .form-card {
    padding: 22px 18px;
  }

  body.bekor-theme .feedback .form-card .hint {
    margin-bottom: 20px;
    line-height: 1.45;
  }

  body.bekor-theme .feedback .form-card .agree,
  body.bekor-theme .sample .form .agree {
    font-size: 10.5px;
    line-height: 1.5;
  }

  body.bekor-theme .product-position-actions .product-detail-button {
    min-width: 0;
    padding-right: 12px;
    padding-left: 12px;
  }

  body.bekor-theme .project-card .stats {
    gap: 12px 16px;
  }

  body.bekor-theme .project-card .stats .s {
    min-width: 0;
  }

  body.bekor-theme .cert-card img {
    object-fit: contain;
  }
}

@media (max-width: 380px) {
  body.bekor-theme .feedback .form-card,
  body.bekor-theme .sample .form {
    padding-right: 14px;
    padding-left: 14px;
  }

  body.bekor-theme .gallery-heading-row {
    flex-direction: column;
    align-items: flex-start;
  }

  body.bekor-theme .gallery-controls {
    align-self: flex-start;
  }

  body.bekor-theme .product-position-actions {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
  }

  body.bekor-theme .product-order-button {
    width: 44px;
    height: 44px;
  }
}

/* required policy consent and mobile navigation. */
.form-consent {
  position: relative;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 16px 0 18px;
  color: #6a777e;
  font-size: 11px;
  line-height: 1.5;
  cursor: pointer;
}
.form-consent-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.form-consent-box {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1px solid #b7c1c7;
  border-radius: 4px;
  background: #fff;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.form-consent-box::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(.7);
  transition: opacity .16s ease, transform .16s ease;
}
.form-consent-input:checked + .form-consent-box {
  border-color: var(--orange);
  background: var(--orange);
}
.form-consent-input:checked + .form-consent-box::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
.form-consent-input:focus-visible + .form-consent-box {
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .2);
}
.form-consent-input:invalid:not(:focus) + .form-consent-box {
  border-color: #c7b8b4;
}
.form-consent-text {
  min-width: 0;
}
.form-consent-text a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent-text a:hover,
.form-consent-text a:focus-visible {
  text-decoration-thickness: 2px;
}
.sample .form-consent,
.feedback .form-consent,
.form-card .form-consent {
  color: #69777f;
}

.mobile-feedback-button,
.mobile-nav-meta {
  display: none;
}

.header .submenu-toggle {
  display: inline-flex;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #40525d;
  cursor: pointer;
}
.header .submenu-toggle .caret {
  width: 12px;
  height: 12px;
}
.header .nav-item > .menu-parent-link {
  min-width: 0;
}

@media (max-width: 1320px) {
  body.bekor-theme .topbar {
    display: none;
  }

  .header .container {
    top: 0;
  }

  .mobile-feedback-button {
    display: inline-flex;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(22, 48, 60, .16);
    border-radius: 10px;
    background: var(--orange);
    color: #fff;
    box-shadow: 0 8px 18px rgba(var(--accent-rgb), .2);
  }
  .mobile-feedback-button svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .mobile-feedback-button:hover,
  .mobile-feedback-button:focus-visible {
    background: var(--orange-bright);
    color: #fff;
  }

  .header .burger {
    margin-left: 0 !important;
  }

  .header nav > .nav-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    width: 100%;
  }
  .header nav > .nav-item > .menu-parent-link {
    grid-column: 1;
    width: 100%;
    min-height: 50px;
    padding: 14px 12px 14px 28px;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
  }
  .header nav > .nav-item > .submenu-toggle {
    grid-column: 2;
    width: 54px;
    height: 100%;
    min-height: 50px;
    border-left: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    border-radius: 0;
    background: #f7f9fa;
  }
  .header nav > .nav-item > .submenu-toggle:hover,
  .header nav > .nav-item > .submenu-toggle:focus-visible {
    background: rgba(var(--accent-rgb), .1);
    color: var(--orange);
  }
  .header nav > .nav-item > .dropdown-menu {
    grid-column: 1 / -1;
  }
  .header .nav-item.submenu-open > .submenu-toggle {
    color: var(--orange);
    background: rgba(var(--accent-rgb), .1);
  }
  .header .nav-item.submenu-open > .submenu-toggle .caret {
    transform: rotate(180deg) !important;
  }

  .mobile-nav-meta {
    display: block;
    margin-top: auto;
    padding: 20px 28px 24px;
    background: #edf2f5;
    border-top: 1px solid rgba(22, 48, 60, .1);
  }
  .mobile-nav-meta-list {
    display: grid;
    gap: 11px;
  }
  .mobile-nav-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    min-width: 0;
    color: #465963 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.45;
    white-space: normal !important;
  }
  .mobile-nav-meta-item::after {
    display: none !important;
  }
  .mobile-nav-meta-item svg {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 1.7;
  }
  .mobile-nav-phone {
    font-family: 'Oswald', sans-serif !important;
    font-size: 16px !important;
  }
  .mobile-nav-meta-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(22, 48, 60, .1);
  }
  .mobile-nav-social {
    display: inline-flex;
    gap: 8px;
  }
  .mobile-nav-social a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border: 1px solid rgba(22, 48, 60, .14) !important;
    border-radius: 50%;
    background: #fff;
    color: #40525d !important;
  }
  .mobile-nav-social a::after {
    display: none !important;
  }
  .mobile-nav-social svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
  }
  .mobile-nav-language {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px;
    border: 1px solid rgba(22, 48, 60, .14);
    border-radius: 999px;
    background: #fff;
  }
  .mobile-nav-language span,
  .mobile-nav-language a {
    display: inline-flex;
    min-width: 32px;
    height: 28px;
    align-items: center;
    justify-content: center;
    padding: 0 7px !important;
    border-radius: 999px;
    color: #5e7079 !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    line-height: 1;
    letter-spacing: .07em;
  }
  .mobile-nav-language a::after {
    display: none !important;
  }
  .mobile-nav-language .is-active {
    background: var(--orange);
    color: #fff !important;
  }
}

@media (max-width: 820px) {
  .header .phone {
    display: none !important;
  }
  .header .brand {
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .mobile-feedback-button,
  .header .burger {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }
  .mobile-feedback-button svg {
    width: 18px;
    height: 18px;
  }
  .mobile-nav-meta {
    padding: 18px 18px 22px;
  }
  .mobile-nav-meta-footer {
    align-items: flex-start;
  }
  .form-consent {
    grid-template-columns: 19px minmax(0, 1fr);
    gap: 9px;
    margin-top: 14px;
    margin-bottom: 16px;
    font-size: 10.5px;
  }
  .form-consent-box {
    width: 19px;
    height: 19px;
  }
}

@media (max-width: 360px) {
  .header .logo-bk-svg {
    width: 108px !important;
  }
  .brand-subtitle {
    display: none;
  }
  .mobile-nav-meta-footer {
    flex-wrap: wrap;
  }
}

/* robust consent and fixed mobile header. */
body.bekor-theme label.form-consent {
  position: relative;
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  gap: 8px !important;
  align-items: start !important;
  margin: 14px 0 16px !important;
  padding: 0 !important;
  color: #6a777e !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  line-height: 1.42 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-transform: none !important;
  cursor: pointer !important;
}
body.bekor-theme .form-consent-input {
  -webkit-appearance: none !important;
  appearance: none !important;
  position: relative !important;
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  border: 1px solid #aebbc2 !important;
  border-radius: 4px !important;
  background-color: #fff !important;
  background-image: none !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 13px 13px !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
body.bekor-theme .form-consent-input:checked {
  border-color: var(--orange) !important;
  background-color: var(--orange) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.2 8.4 6.4 11.4 12.8 4.7' fill='none' stroke='%23fff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
}
body.bekor-theme .form-consent-input:focus-visible {
  outline: 0 !important;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .2) !important;
}
body.bekor-theme .form-consent-text {
  min-width: 0;
  padding-top: 2px;
}
body.bekor-theme .form-consent-text a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
body.bekor-theme .form-consent-text a:hover,
body.bekor-theme .form-consent-text a:focus-visible {
  text-decoration-thickness: 2px;
}

@media (max-width: 1320px) {
  body.bekor-theme {
    --bekor-mobile-header-height: 82px;
    padding-top: var(--bekor-mobile-header-height);
  }
  body.bekor-theme .header {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
  }
  body.bekor-theme .header nav {
    top: var(--bekor-mobile-header-height) !important;
  }
  body.bekor-theme .header nav.open {
    max-height: calc(100dvh - var(--bekor-mobile-header-height)) !important;
  }
  body.admin-bar.bekor-theme .header {
    top: 32px;
  }
  body.admin-bar.bekor-theme .header nav {
    top: calc(var(--bekor-mobile-header-height) + 32px) !important;
  }
  body.admin-bar.bekor-theme .header nav.open {
    max-height: calc(100dvh - var(--bekor-mobile-header-height) - 32px) !important;
  }

  /* The compact feedback control appears only when the full CTA is hidden. */
  .mobile-feedback-button,
  .mobile-call-button {
    display: none !important;
  }

  /* Neat card-style contact details inside the mobile menu. */
  .mobile-nav-meta {
    margin-top: auto;
    padding: 18px 20px 22px;
    background: linear-gradient(180deg, #f5f8fa 0%, #edf2f5 100%);
    border-top: 1px solid rgba(22, 48, 60, .1);
  }
  .mobile-nav-meta-list {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(22, 48, 60, .1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(22, 48, 60, .06);
  }
  .mobile-nav-meta-item {
    display: grid !important;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center !important;
    gap: 11px !important;
    min-height: 54px;
    padding: 9px 13px !important;
    border-bottom: 1px solid rgba(22, 48, 60, .08);
    color: #40525d !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
  }
  .mobile-nav-meta-item:last-child {
    border-bottom: 0;
  }
  .mobile-nav-meta-item svg {
    box-sizing: border-box;
    width: 36px !important;
    height: 36px !important;
    margin: 0 !important;
    padding: 9px;
    border-radius: 10px;
    background: rgba(var(--accent-rgb), .1);
    stroke: var(--orange) !important;
  }
  .mobile-nav-phone {
    font-size: 15px !important;
    letter-spacing: .01em;
  }
  .mobile-nav-meta-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 12px;
    padding: 12px 13px;
    border: 1px solid rgba(22, 48, 60, .1);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(22, 48, 60, .05);
  }
  .mobile-nav-social {
    gap: 7px;
  }
  .mobile-nav-social a {
    width: 36px;
    height: 36px;
    border-color: rgba(22, 48, 60, .12) !important;
    background: #f6f8f9;
  }
  .mobile-nav-language {
    height: 36px;
    padding: 3px;
    border-color: rgba(22, 48, 60, .12);
    background: #f6f8f9;
  }
  .mobile-nav-language span,
  .mobile-nav-language a {
    min-width: 32px;
    height: 28px;
  }
}

@media (max-width: 1080px) {
  .header-cta {
    display: none !important;
  }
  .mobile-feedback-button {
    display: inline-flex !important;
  }
  .mobile-call-button {
    display: none !important;
  }
}

@media (max-width: 820px) {
  body.bekor-theme {
    --bekor-mobile-header-height: 76px;
  }
  .mobile-call-button {
    display: inline-flex !important;
  }
  .brand-subtitle {
    width: 145px !important;
    font-size: 8.5px !important;
    line-height: 1.24 !important;
    letter-spacing: .045em !important;
  }
}

@media (max-width: 782px) {
  body.admin-bar.bekor-theme .header {
    top: 46px;
  }
  body.admin-bar.bekor-theme .header nav {
    top: calc(var(--bekor-mobile-header-height) + 46px) !important;
  }
  body.admin-bar.bekor-theme .header nav.open {
    max-height: calc(100dvh - var(--bekor-mobile-header-height) - 46px) !important;
  }
}

@media (max-width: 576px) {
  body.bekor-theme label.form-consent {
    grid-template-columns: 20px minmax(0, 1fr) !important;
    gap: 8px !important;
    margin: 13px 0 15px !important;
    font-size: 9.5px !important;
    line-height: 1.4 !important;
  }
  .mobile-nav-meta {
    padding: 14px 14px 18px;
  }
  .mobile-nav-meta-item {
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 50px;
    padding: 8px 11px !important;
    font-size: 12px !important;
  }
  .mobile-nav-meta-item svg {
    width: 34px !important;
    height: 34px !important;
    padding: 8px;
  }
  .mobile-nav-meta-footer {
    align-items: center;
    padding: 10px 11px;
  }
}

@media (max-width: 480px) {
  body.bekor-theme {
    --bekor-mobile-header-height: 70px;
  }
  .brand-subtitle {
    display: block !important;
    width: 120px !important;
    font-size: 8px !important;
    line-height: 1.22 !important;
    letter-spacing: .04em !important;
  }
}

@media (max-width: 360px) {
  .brand-subtitle {
    display: block !important;
    width: 108px !important;
    font-size: 7.5px !important;
    line-height: 1.2 !important;
    letter-spacing: .025em !important;
  }
  .mobile-nav-meta-footer {
    align-items: center;
  }
}


/* 3.1.8 – mobile call action and undistorted social icons. */
.mobile-call-button {
  display: none;
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(var(--accent-rgb), .22);
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .08);
  color: var(--accent);
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.mobile-call-button:hover,
.mobile-call-button:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.mobile-call-button svg {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1320px) {
  .mobile-nav-social {
    display: flex !important;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    min-width: max-content;
  }
  .mobile-nav-social .mobile-social-link {
    box-sizing: border-box;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    flex: 0 0 38px !important;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }
  .mobile-nav-social .mobile-social-link svg {
    display: block !important;
    box-sizing: content-box;
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    max-width: none !important;
    flex: 0 0 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    vector-effect: non-scaling-stroke;
  }
  .mobile-nav-social .mobile-social-telegram svg,
  .mobile-nav-social .mobile-social-vk svg {
    fill: currentColor !important;
    stroke: none !important;
  }
  .mobile-nav-social .mobile-social-max svg {
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.7 !important;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

@media (max-width: 1080px) {
  .header .container {
    column-gap: 9px;
  }
  .mobile-call-button,
  .mobile-feedback-button,
  .burger {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex: 0 0 44px !important;
  }
}

@media (max-width: 480px) {
  .header .container {
    column-gap: 7px;
  }
  .mobile-call-button,
  .mobile-feedback-button,
  .burger {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    flex-basis: 42px !important;
  }
  .mobile-nav-social .mobile-social-link {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    flex-basis: 36px !important;
  }
}

/* 3.1.9 – keep both compact header actions visually identical and stable after tap. */
@media (max-width: 1080px) {
  body.bekor-theme .mobile-call-button,
  body.bekor-theme .mobile-call-button:link,
  body.bekor-theme .mobile-call-button:visited,
  body.bekor-theme .mobile-call-button:hover,
  body.bekor-theme .mobile-call-button:focus,
  body.bekor-theme .mobile-call-button:focus-visible,
  body.bekor-theme .mobile-call-button:active,
  body.bekor-theme .mobile-feedback-button,
  body.bekor-theme .mobile-feedback-button:link,
  body.bekor-theme .mobile-feedback-button:visited,
  body.bekor-theme .mobile-feedback-button:hover,
  body.bekor-theme .mobile-feedback-button:focus,
  body.bekor-theme .mobile-feedback-button:focus-visible,
  body.bekor-theme .mobile-feedback-button:active {
    display: inline-flex !important;
    box-sizing: border-box !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    flex: 0 0 44px !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    border: 1px solid rgba(22, 48, 60, .16) !important;
    border-radius: 10px !important;
    background: var(--orange) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-decoration: none !important;
    transform: none !important;
    box-shadow: 0 8px 18px rgba(var(--accent-rgb), .2) !important;
    -webkit-tap-highlight-color: transparent;
  }
  body.bekor-theme .mobile-call-button:hover,
  body.bekor-theme .mobile-call-button:focus-visible,
  body.bekor-theme .mobile-call-button:active,
  body.bekor-theme .mobile-feedback-button:hover,
  body.bekor-theme .mobile-feedback-button:focus-visible,
  body.bekor-theme .mobile-feedback-button:active {
    background: var(--orange-bright) !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
  }
  body.bekor-theme .mobile-call-button svg,
  body.bekor-theme .mobile-feedback-button svg {
    display: block !important;
    width: 19px !important;
    height: 19px !important;
    min-width: 19px !important;
    flex: 0 0 19px !important;
    margin: 0 !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    opacity: 1 !important;
  }
}

@media (max-width: 480px) {
  body.bekor-theme .mobile-call-button,
  body.bekor-theme .mobile-call-button:link,
  body.bekor-theme .mobile-call-button:visited,
  body.bekor-theme .mobile-call-button:hover,
  body.bekor-theme .mobile-call-button:focus,
  body.bekor-theme .mobile-call-button:focus-visible,
  body.bekor-theme .mobile-call-button:active,
  body.bekor-theme .mobile-feedback-button,
  body.bekor-theme .mobile-feedback-button:link,
  body.bekor-theme .mobile-feedback-button:visited,
  body.bekor-theme .mobile-feedback-button:hover,
  body.bekor-theme .mobile-feedback-button:focus,
  body.bekor-theme .mobile-feedback-button:focus-visible,
  body.bekor-theme .mobile-feedback-button:active {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    min-height: 42px !important;
    flex-basis: 42px !important;
  }
}

/* 3.1.10 – show the compact call action only when header phone numbers are hidden. */


/* 3.1.11 – call action follows the exact phone visibility breakpoint. */
@media (min-width: 821px) {
  body.bekor-theme .mobile-call-button,
  body.bekor-theme .mobile-call-button:link,
  body.bekor-theme .mobile-call-button:visited,
  body.bekor-theme .mobile-call-button:hover,
  body.bekor-theme .mobile-call-button:focus,
  body.bekor-theme .mobile-call-button:focus-visible,
  body.bekor-theme .mobile-call-button:active {
    display: none !important;
  }
}

@media (max-width: 820px) {
  body.bekor-theme .header .phone {
    display: none !important;
  }
  body.bekor-theme .mobile-call-button,
  body.bekor-theme .mobile-call-button:link,
  body.bekor-theme .mobile-call-button:visited,
  body.bekor-theme .mobile-call-button:hover,
  body.bekor-theme .mobile-call-button:focus,
  body.bekor-theme .mobile-call-button:focus-visible,
  body.bekor-theme .mobile-call-button:active {
    display: inline-flex !important;
  }
}

/* ===== PRODUCT DETAIL PAGE 3.2.0 ===== */
body.bekor-theme .product-detail-hero {
  padding: 52px 0 var(--bekor-section-space);
  background: #fff;
}
body.bekor-theme .product-breadcrumbs {
  margin-bottom: 34px;
}
body.bekor-theme .product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
  gap: 58px;
  align-items: start;
}
body.bekor-theme .product-detail-media,
body.bekor-theme .product-detail-copy {
  min-width: 0;
}
body.bekor-theme .product-main-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #dfe7ec;
  background: #f3f6f8;
  text-decoration: none;
}
body.bekor-theme .product-main-image-element {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 510px;
  object-fit: contain;
  transition: transform .3s ease;
}
body.bekor-theme .product-main-image:hover .product-main-image-element {
  transform: scale(1.025);
}
body.bekor-theme .product-image-zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(22, 48, 60, .12);
  border-radius: 12px;
  background: rgba(255,255,255,.92);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(22,48,60,.10);
}
body.bekor-theme .product-image-zoom svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.bekor-theme .product-thumb-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
body.bekor-theme .product-thumb {
  min-width: 0;
  height: 92px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid #dfe7ec;
  border-radius: 0;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
body.bekor-theme .product-thumb:hover,
body.bekor-theme .product-thumb.is-active {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 1px var(--orange);
}
body.bekor-theme .product-thumb:hover {
  transform: translateY(-2px);
}
body.bekor-theme .product-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.bekor-theme .product-detail-copy {
  padding-top: 6px;
}
body.bekor-theme .product-detail-kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
body.bekor-theme .product-detail-kicker {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
body.bekor-theme .product-detail-status {
  padding: 7px 10px;
  background: rgba(36,90,147,.09);
  color: #245a93;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}
body.bekor-theme .product-detail-copy h1 {
  margin: 0 0 14px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--black);
}
body.bekor-theme .product-detail-copy h1 .accent {
  color: var(--orange);
}
body.bekor-theme .product-detail-sku {
  margin-bottom: 22px;
  color: #6a7a83;
  font-size: 13px;
}
body.bekor-theme .product-detail-sku strong {
  color: var(--black);
}
body.bekor-theme .product-detail-description {
  color: #53656f;
  font-size: 16px;
  line-height: 1.72;
}
body.bekor-theme .product-detail-description p {
  margin: 0 0 12px;
}
body.bekor-theme .product-detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 26px 0;
  background: #dfe7ec;
  border: 1px solid #dfe7ec;
}
body.bekor-theme .product-detail-fact {
  min-width: 0;
  padding: 17px 14px;
  background: #f7f9fa;
}
body.bekor-theme .product-detail-fact strong,
body.bekor-theme .product-detail-fact span {
  display: block;
}
body.bekor-theme .product-detail-fact strong {
  margin-bottom: 5px;
  font-family: 'Oswald', sans-serif;
  color: var(--black);
  font-size: 19px;
  line-height: 1.2;
}
body.bekor-theme .product-detail-fact span {
  color: #708089;
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .05em;
}
body.bekor-theme .product-detail-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
body.bekor-theme .product-detail-features li {
  display: flex;
  min-width: 0;
  gap: 9px;
  align-items: flex-start;
  color: #465a64;
  font-size: 13px;
  line-height: 1.45;
}
body.bekor-theme .product-detail-features svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.bekor-theme .product-detail-price {
  display: flex;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 22px;
}
body.bekor-theme .product-detail-price span {
  color: #6a7a83;
  font-size: 14px;
  font-weight: 600;
}
body.bekor-theme .product-detail-price strong {
  font-family: 'Oswald', sans-serif;
  color: var(--orange);
  font-size: 42px;
  line-height: 1;
}
body.bekor-theme .product-detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
body.bekor-theme .product-detail-actions .btn {
  width: 100%;
  justify-content: center;
}
body.bekor-theme .product-detail-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--orange);
  background: #f3f6f8;
  color: #667780;
  font-size: 12px;
  line-height: 1.55;
}

body.bekor-theme .product-info-section .section-sub {
  max-width: 820px;
}
body.bekor-theme .product-info-tabs {
  margin-top: 36px;
}
body.bekor-theme .product-info-tab-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid #d5dfe4;
}
body.bekor-theme .product-info-tab {
  position: relative;
  min-width: 0;
  min-height: 66px;
  padding: 16px 18px;
  border: 1px solid #d5dfe4;
  border-bottom: 0;
  background: #eef3f6;
  color: #4b606a;
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
body.bekor-theme .product-info-tab + .product-info-tab {
  border-left: 0;
}
body.bekor-theme .product-info-tab::after {
  content: '';
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -1px;
  height: 3px;
  background: transparent;
}
body.bekor-theme .product-info-tab:hover,
body.bekor-theme .product-info-tab.is-active {
  background: #fff;
  color: var(--black);
}
body.bekor-theme .product-info-tab.is-active::after {
  background: var(--orange);
}
body.bekor-theme .product-info-panels {
  border: 1px solid #d5dfe4;
  border-top: 0;
  background: #fff;
}
body.bekor-theme .product-info-panel {
  display: none;
  padding: 42px;
}
body.bekor-theme .product-info-panel.is-active {
  display: block;
}
body.bekor-theme .product-rich-text {
  max-width: 960px;
  color: #53656f;
  font-size: 16px;
  line-height: 1.75;
}
body.bekor-theme .product-rich-text p {
  margin: 0 0 16px;
}
body.bekor-theme .product-rich-text p:last-child {
  margin-bottom: 0;
}
body.bekor-theme .product-spec-list {
  margin: 0;
}
body.bekor-theme .product-spec-list > div {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 15px 18px;
  border-bottom: 1px solid #e3e9ec;
}
body.bekor-theme .product-spec-list > div:nth-child(odd) {
  background: #f7f9fa;
}
body.bekor-theme .product-spec-list dt,
body.bekor-theme .product-spec-list dd {
  margin: 0;
  min-width: 0;
}
body.bekor-theme .product-spec-list dt {
  color: #657680;
  font-size: 13px;
}
body.bekor-theme .product-spec-list dd {
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
}
body.bekor-theme .product-tab-note {
  margin-top: 20px;
  padding: 14px 16px;
  border-left: 3px solid var(--orange);
  background: #f3f6f8;
  color: #60717b;
  font-size: 13px;
  line-height: 1.6;
}
body.bekor-theme .product-document-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body.bekor-theme .product-document-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px;
  border: 1px solid #dfe7ec;
  background: #f7f9fa;
}
body.bekor-theme .product-document-icon,
body.bekor-theme .product-tab-icon {
  display: flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: rgba(36,90,147,.10);
  color: #245a93;
}
body.bekor-theme .product-document-icon svg,
body.bekor-theme .product-tab-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.bekor-theme .product-document-title,
body.bekor-theme .product-delivery-title {
  margin: 18px 0 10px;
  font-family: 'Oswald', sans-serif;
  color: var(--black);
  font-size: 22px;
  line-height: 1.25;
}
body.bekor-theme .product-document-card p {
  margin: 0 0 22px;
  color: #62737c;
  font-size: 13px;
  line-height: 1.6;
}
body.bekor-theme .product-document-card a {
  margin-top: auto;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
body.bekor-theme .product-delivery-payment {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
body.bekor-theme .product-delivery-payment > div {
  min-width: 0;
  padding: 28px;
  border: 1px solid #dfe7ec;
  background: #f7f9fa;
}
body.bekor-theme .product-delivery-payment p {
  margin: 0 0 12px;
  color: #5d6f78;
  font-size: 14px;
  line-height: 1.68;
}
body.bekor-theme .product-delivery-payment p:last-child {
  margin-bottom: 0;
}

body.bekor-theme .product-application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
body.bekor-theme .product-application-card {
  min-width: 0;
  padding: 27px;
  border: 1px solid #dfe7ec;
  background: #fff;
  box-shadow: 0 8px 26px rgba(22,48,60,.05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
body.bekor-theme .product-application-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), .45);
  box-shadow: 0 14px 34px rgba(22,48,60,.09);
}
body.bekor-theme .product-application-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
body.bekor-theme .product-application-head > span {
  flex: 0 0 auto;
  font-family: 'Oswald', sans-serif;
  color: rgba(22,48,60,.23);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}
body.bekor-theme .product-application-card h3 {
  min-width: 0;
  margin: 0;
  font-family: 'Oswald', sans-serif;
  color: var(--black);
  font-size: 22px;
  line-height: 1.25;
}
body.bekor-theme .product-application-card p {
  margin: 0;
  color: #60717b;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  body.bekor-theme .product-detail-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }
  body.bekor-theme .product-detail-media {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
  }
  body.bekor-theme .product-detail-copy {
    max-width: 820px;
  }
  body.bekor-theme .product-document-grid,
  body.bekor-theme .product-application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body.bekor-theme .product-detail-hero {
    padding-top: 34px;
  }
  body.bekor-theme .product-breadcrumbs {
    margin-bottom: 24px;
  }
  body.bekor-theme .product-detail-grid {
    gap: 30px;
  }
  body.bekor-theme .product-main-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 22px;
  }
  body.bekor-theme .product-main-image-element {
    max-height: none;
  }
  body.bekor-theme .product-thumb-list {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 1px 1px 6px;
    scroll-snap-type: x proximity;
  }
  body.bekor-theme .product-thumb {
    flex: 0 0 82px;
    height: 76px;
    scroll-snap-align: start;
  }
  body.bekor-theme .product-detail-kicker-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }
  body.bekor-theme .product-detail-copy h1 {
    font-size: clamp(32px, 9vw, 43px);
  }
  body.bekor-theme .product-detail-facts {
    margin: 22px 0;
  }
  body.bekor-theme .product-detail-fact {
    padding: 14px 10px;
  }
  body.bekor-theme .product-detail-fact strong {
    font-size: 17px;
    overflow-wrap: anywhere;
  }
  body.bekor-theme .product-detail-features {
    grid-template-columns: 1fr;
  }
  body.bekor-theme .product-detail-price strong {
    font-size: 38px;
  }
  body.bekor-theme .product-info-tabs {
    margin-top: 28px;
  }
  body.bekor-theme .product-info-tab-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    border-bottom: 0;
  }
  body.bekor-theme .product-info-tab,
  body.bekor-theme .product-info-tab + .product-info-tab {
    min-height: 58px;
    padding: 13px 12px;
    border: 1px solid #d5dfe4;
    font-size: 15px;
  }
  body.bekor-theme .product-info-tab::after {
    bottom: 0;
  }
  body.bekor-theme .product-info-panels {
    margin-top: 10px;
    border-top: 1px solid #d5dfe4;
  }
  body.bekor-theme .product-info-panel {
    padding: 28px 22px;
  }
  body.bekor-theme .product-spec-list > div {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 16px;
    padding: 14px 12px;
  }
  body.bekor-theme .product-document-grid,
  body.bekor-theme .product-delivery-payment,
  body.bekor-theme .product-application-grid {
    grid-template-columns: 1fr;
  }
  body.bekor-theme .product-document-card,
  body.bekor-theme .product-delivery-payment > div,
  body.bekor-theme .product-application-card {
    padding: 22px;
  }
}

@media (max-width: 520px) {
  body.bekor-theme .product-detail-hero {
    padding-top: 26px;
  }
  body.bekor-theme .product-main-image {
    padding: 16px;
  }
  body.bekor-theme .product-image-zoom {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
  }
  body.bekor-theme .product-detail-description {
    font-size: 14px;
  }
  body.bekor-theme .product-detail-facts {
    grid-template-columns: 1fr;
    gap: 0;
  }
  body.bekor-theme .product-detail-fact + .product-detail-fact {
    border-top: 1px solid #dfe7ec;
  }
  body.bekor-theme .product-detail-fact {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    gap: 14px;
    align-items: center;
  }
  body.bekor-theme .product-detail-fact strong {
    margin: 0;
  }
  body.bekor-theme .product-detail-actions {
    grid-template-columns: 1fr;
  }
  body.bekor-theme .product-info-tab-list {
    grid-template-columns: 1fr;
  }
  body.bekor-theme .product-info-tab {
    justify-content: flex-start;
    min-height: 50px;
    text-align: left;
  }
  body.bekor-theme .product-info-panel {
    padding: 24px 16px;
  }
  body.bekor-theme .product-rich-text {
    font-size: 14px;
  }
  body.bekor-theme .product-spec-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  body.bekor-theme .product-spec-list dt {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
}

/* ===== PRODUCT DETAIL PAGE 3.2.1 ===== */
body.bekor-theme .product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #73838c;
  font-size: 13px;
  line-height: 1.45;
}
body.bekor-theme .product-breadcrumbs a {
  color: #52656f;
  text-decoration: none;
  transition: color .2s ease;
}
body.bekor-theme .product-breadcrumbs a:hover {
  color: var(--orange);
}
body.bekor-theme .product-breadcrumbs span[aria-current="page"] {
  min-width: 0;
  color: var(--black);
  font-weight: 600;
}
body.bekor-theme .product-detail-copy h1 {
  font-size: clamp(34px, 3.25vw, 46px);
  line-height: 1.12;
}
body.bekor-theme .product-main-image-frame {
  position: relative;
}
body.bekor-theme .product-gallery-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(22,48,60,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.94);
  color: var(--black);
  box-shadow: 0 8px 24px rgba(22,48,60,.12);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
body.bekor-theme .product-gallery-arrow:hover,
body.bekor-theme .product-gallery-arrow:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}
body.bekor-theme .product-gallery-arrow:active {
  transform: translateY(-50%) scale(.96);
}
body.bekor-theme .product-gallery-prev {
  left: 16px;
}
body.bekor-theme .product-gallery-next {
  right: 16px;
}
body.bekor-theme .product-purchase-panel {
  display: grid;
  grid-template-columns: minmax(150px, .72fr) minmax(190px, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid #dfe7ec;
  background: #f7f9fa;
}
body.bekor-theme .product-purchase-panel .product-detail-price {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 0 8px;
}
body.bekor-theme .product-purchase-panel .product-detail-price span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
body.bekor-theme .product-purchase-panel .product-detail-price strong {
  font-size: 38px;
  white-space: nowrap;
}
body.bekor-theme .product-purchase-panel .btn {
  width: 100%;
  min-height: 58px;
  justify-content: center;
}
body.bekor-theme .product-purchase-panel .product-sample-main {
  grid-column: 1 / -1;
  background: #fff;
}
body.bekor-theme .product-related-section .section-sub {
  max-width: 720px;
}
body.bekor-theme .product-related-grid {
  margin-top: 36px;
}
body.bekor-theme .product-related-card .product-position-title {
  margin: 0 0 20px;
  font-family: 'Oswald', sans-serif;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
body.bekor-theme .product-related-card .product-position-media {
  background: #fff;
}

@media (max-width: 768px) {
  body.bekor-theme .product-breadcrumbs {
    gap: 6px;
    margin-bottom: 22px;
    font-size: 12px;
  }
  body.bekor-theme .product-detail-copy h1 {
    font-size: clamp(29px, 8vw, 38px);
  }
  body.bekor-theme .product-gallery-arrow {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  body.bekor-theme .product-gallery-prev {
    left: 10px;
  }
  body.bekor-theme .product-gallery-next {
    right: 10px;
  }
  body.bekor-theme .product-purchase-panel {
    grid-template-columns: minmax(135px, .7fr) minmax(170px, 1fr);
  }
  body.bekor-theme .product-related-grid {
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  body.bekor-theme .product-breadcrumbs span[aria-current="page"] {
    flex-basis: 100%;
  }
  body.bekor-theme .product-gallery-arrow {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }
  body.bekor-theme .product-purchase-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  body.bekor-theme .product-purchase-panel .product-detail-price {
    align-items: flex-start;
    padding: 2px 4px 8px;
  }
  body.bekor-theme .product-purchase-panel .product-detail-price strong {
    font-size: 36px;
  }
  body.bekor-theme .product-purchase-panel .product-sample-main {
    grid-column: auto;
  }
}

/* ===== PRODUCT DETAIL PAGE 3.2.2 ===== */
body.bekor-theme .product-detail-copy h1 {
  font-size: clamp(29px, 2.75vw, 39px);
  line-height: 1.14;
}

body.bekor-theme .product-main-image-frame {
  aspect-ratio: 4 / 3;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #dfe7ec;
  background: #f4f7f8;
}
body.bekor-theme .product-main-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 30px;
  border: 0;
  background: transparent;
}
body.bekor-theme .product-main-image-element {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
}
body.bekor-theme .product-gallery-arrow {
  opacity: 1;
  visibility: visible;
}
body.bekor-theme .product-gallery-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .product-detail-features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
body.bekor-theme .product-detail-features li {
  min-height: 68px;
  align-items: center;
  padding: 12px 13px;
  border: 1px solid #dfe7ec;
  background: #f7f9fa;
  color: #344b56;
  font-weight: 600;
}
body.bekor-theme .product-detail-features svg {
  flex-basis: 20px;
  width: 20px;
  height: 20px;
}

body.bekor-theme .product-purchase-panel {
  grid-template-columns: minmax(150px, .72fr) minmax(190px, 1fr);
}

body.bekor-theme .product-rich-layout {
  width: 100%;
}
body.bekor-theme .product-rich-layout.has-image {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: stretch;
}
body.bekor-theme .product-rich-layout.image-right .product-rich-media {
  order: 2;
}
body.bekor-theme .product-rich-layout.image-right .product-rich-text {
  order: 1;
}
body.bekor-theme .product-rich-media {
  min-width: 0;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: #f3f6f8;
}
body.bekor-theme .product-rich-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}
body.bekor-theme .product-rich-text {
  width: 100%;
  max-width: none;
}

body.bekor-theme .product-document-heading,
body.bekor-theme .product-delivery-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
body.bekor-theme .product-document-heading .product-document-icon,
body.bekor-theme .product-delivery-heading .product-tab-icon {
  flex: 0 0 44px;
}
body.bekor-theme .product-document-heading .product-document-title,
body.bekor-theme .product-delivery-heading .product-delivery-title {
  min-width: 0;
  margin: 0;
}
body.bekor-theme .product-document-card > p {
  margin-top: 0;
}

@media (min-width: 1081px) {
  body.bekor-theme .product-detail-media {
    position: sticky;
    top: 104px;
    align-self: start;
  }
}

@media (max-width: 1080px) {
  body.bekor-theme .product-main-image-frame {
    min-height: 0;
  }
  body.bekor-theme .product-rich-layout.has-image {
    grid-template-columns: minmax(220px, .72fr) minmax(0, 1.28fr);
    gap: 26px;
  }
}

@media (max-width: 768px) {
  body.bekor-theme .product-detail-copy h1 {
    font-size: clamp(26px, 7vw, 33px);
  }
  body.bekor-theme .product-main-image-frame {
    aspect-ratio: 1 / 1;
  }
  body.bekor-theme .product-main-image {
    aspect-ratio: auto;
    padding: 20px;
  }
  body.bekor-theme .product-detail-features {
    grid-template-columns: 1fr;
  }
  body.bekor-theme .product-detail-features li {
    min-height: 0;
  }
  body.bekor-theme .product-rich-layout.has-image {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  body.bekor-theme .product-rich-layout.image-right .product-rich-media,
  body.bekor-theme .product-rich-layout.image-right .product-rich-text {
    order: initial;
  }
  body.bekor-theme .product-rich-media,
  body.bekor-theme .product-rich-media img {
    min-height: 0;
  }
  body.bekor-theme .product-rich-media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 520px) {
  body.bekor-theme .product-detail-copy h1 {
    font-size: clamp(24px, 7.7vw, 30px);
  }
  body.bekor-theme .product-main-image {
    padding: 14px;
  }
  body.bekor-theme .product-purchase-panel {
    grid-template-columns: 1fr;
  }
  body.bekor-theme .product-document-heading,
  body.bekor-theme .product-delivery-heading {
    align-items: flex-start;
    gap: 12px;
  }
}


/* ===== PRODUCT DETAIL PAGE 3.2.3 ===== */
body.bekor-theme .product-main-image {
  cursor: zoom-in;
}
body.bekor-theme .product-main-image::after {
  content: '';
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 10px;
  background: rgba(10,31,42,.74) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8'%3E%3Ccircle cx='11' cy='11' r='6'/%3E%3Cpath d='m16 16 4 4M11 8v6M8 11h6'/%3E%3C/svg%3E") center/19px no-repeat;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
body.bekor-theme .product-main-image:hover::after,
body.bekor-theme .product-main-image:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
body.bekor-theme .product-lightbox-items {
  display: none !important;
}
body.bekor-theme .product-gallery-arrow {
  z-index: 5;
  opacity: 1 !important;
  visibility: visible !important;
}
.bekor-lightbox.is-product-gallery .bekor-lightbox-dialog {
  width: min(1380px, 100%);
}
.bekor-lightbox.is-product-gallery .bekor-lightbox-media {
  width: 100%;
  height: min(82vh, 880px);
  padding: 24px;
  background: #f4f7f8;
}
.bekor-lightbox.is-product-gallery .bekor-lightbox-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
}
body.bekor-theme .product-detail-features {
  display: grid;
}
body.bekor-theme .product-detail-features li {
  display: flex;
}

@media (max-width: 700px) {
  .bekor-lightbox.is-product-gallery .bekor-lightbox-media {
    height: calc(100vh - 110px);
    padding: 8px;
  }
}


/* typography, cart and icon clarity. */
body.bekor-theme {
  --type-caption: 13px;
  --type-small: 14px;
  --type-body: 16px;
  --type-lead: 17px;
  font-size: var(--type-body);
}
body.bekor-theme .section-eyebrow .label,
body.bekor-theme .sample-eyebrow .label,
body.bekor-theme .hero-kicker {
  font-size: var(--type-caption) !important;
  line-height: 1.35;
}
body.bekor-theme .section-sub,
body.bekor-theme .sample p,
body.bekor-theme .universal-contact-block .info > p {
  font-size: var(--type-lead) !important;
  line-height: 1.7;
}
body.bekor-theme .adv-card p,
body.bekor-theme .product-application-card p,
body.bekor-theme .material-card-body p,
body.bekor-theme .category-project-body p,
body.bekor-theme .faq-answer-inner,
body.bekor-theme .category-content-copy,
body.bekor-theme .product-rich-text,
body.bekor-theme .product-delivery-payment p,
body.bekor-theme .product-document-card p {
  font-size: 15px !important;
  line-height: 1.68;
}
body.bekor-theme .sample-list li,
body.bekor-theme .product-detail-features li,
body.bekor-theme .category-note,
body.bekor-theme .product-detail-note,
body.bekor-theme .product-tab-note {
  font-size: var(--type-small) !important;
}
body.bekor-theme .sample-facts span,
body.bekor-theme .product-detail-fact span,
body.bekor-theme .product-detail-sku,
body.bekor-theme .product-series-badge,
body.bekor-theme .product-size {
  font-size: 12.5px !important;
}
body.bekor-theme .sample .form .hint,
body.bekor-theme .feedback .form-card .hint,
body.bekor-theme .form-card .hint {
  font-size: var(--type-small) !important;
}
body.bekor-theme label.form-consent {
  font-size: 11.5px !important;
  line-height: 1.48 !important;
}

.header-cart-button {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(22,48,60,.16);
  border-radius: 10px;
  background: #fff;
  color: var(--orange);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.header-cart-button:hover,
.header-cart-button:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
  transform: translateY(-1px);
}
.header-cart-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.header-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: flex;
  min-width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #ef5b3f;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}
.header-cart-count.is-empty { display: none; }
body.bekor-theme .product-order-button { padding: 0; cursor: pointer; }
body.bekor-theme .product-order-main svg { width: 18px; height: 18px; }
body.bekor-theme [data-cart-add].is-added { background: #2e7d5b !important; border-color: #2e7d5b !important; color: #fff !important; }

.cart-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(440px, calc(100vw - 32px));
  padding: 16px;
  border: 1px solid #d8e2e7;
  background: #fff;
  color: #263e49;
  box-shadow: 0 20px 60px rgba(14,34,45,.22);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.cart-toast.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cart-toast-icon {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(var(--accent-rgb), .1);
  color: var(--orange);
}
.cart-toast-icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.cart-toast-copy strong { display: block; margin-bottom: 2px; font-size: 15px; color: var(--black); }
.cart-toast-copy span { display: block; color: #63757e; font-size: 13px; }
.cart-toast-actions { display: flex; align-items: center; gap: 10px; }
.cart-toast-link { color: var(--orange); font-size: 13px; font-weight: 700; white-space: nowrap; }
.cart-toast-close { width: 30px; height: 30px; border: 0; background: transparent; color: #74858d; font-size: 22px; cursor: pointer; }

.cart-page { padding: 52px 0 var(--bekor-section-space); color: #263e49; }
.cart-breadcrumbs { margin-bottom: 28px; }
.cart-page-title { margin: 0 0 16px; font-family: 'Oswald', sans-serif; color: var(--black); font-size: clamp(42px, 5vw, 64px); line-height: 1.06; }
.cart-page-intro { max-width: 780px; margin: 0 0 42px; color: #60727c; font-size: 17px; line-height: 1.7; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; align-items: start; }
.cart-items-panel { min-width: 0; border: 1px solid #dce5e9; background: #fff; }
.cart-items-head { display: grid; grid-template-columns: minmax(0, 1fr) 150px 140px; gap: 20px; padding: 15px 22px; border-bottom: 1px solid #dce5e9; background: #f5f8f9; color: #708089; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cart-item { display: grid; grid-template-columns: minmax(0, 1fr) 150px 140px; gap: 20px; align-items: center; padding: 20px 22px; border-bottom: 1px solid #e5ebee; }
.cart-item:last-child { border-bottom: 0; }
.cart-item-product { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 18px; align-items: center; min-width: 0; }
.cart-item-image { display: flex; width: 92px; height: 78px; align-items: center; justify-content: center; padding: 8px; background: #f3f6f8; }
.cart-item-image img { width: 100%; height: 100%; object-fit: contain; }
.cart-item-copy { min-width: 0; }
.cart-item-title { display: inline-block; margin-bottom: 6px; color: var(--black); font-family: 'Oswald', sans-serif; font-size: 18px; line-height: 1.3; }
.cart-item-meta { color: #788991; font-size: 13px; }
.cart-item-remove { display: inline-flex; margin-top: 9px; padding: 0; border: 0; background: transparent; color: #a34b3d; font-size: 12px; cursor: pointer; }
.cart-quantity { display: grid; grid-template-columns: 38px 48px 38px; align-items: center; width: max-content; border: 1px solid #d5dfe4; }
.cart-quantity button { width: 38px; height: 38px; border: 0; background: #f5f8f9; color: #27424e; font-size: 20px; cursor: pointer; }
.cart-quantity input { width: 48px; height: 38px; border: 0; border-right: 1px solid #d5dfe4; border-left: 1px solid #d5dfe4; background: #fff; color: var(--black); font-weight: 700; text-align: center; appearance: textfield; }
.cart-quantity input::-webkit-outer-spin-button, .cart-quantity input::-webkit-inner-spin-button { margin: 0; appearance: none; }
.cart-item-sum { min-width: 0; color: var(--orange); font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; line-height: 1.2; overflow-wrap: anywhere; }
.cart-summary { position: sticky; top: 106px; }
.cart-summary-card { padding: 26px; border: 1px solid #dce5e9; background: #f5f8f9; }
.cart-summary-label { display: block; margin-bottom: 7px; color: #74858e; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.cart-summary-card > strong { display: block; color: var(--black); font-family: 'Oswald', sans-serif; font-size: 25px; }
.cart-summary-total { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin: 24px 0 18px; padding-top: 20px; border-top: 1px solid #d6e0e4; }
.cart-summary-total span { max-width: 130px; color: #677983; font-size: 13px; line-height: 1.35; }
.cart-summary-total strong { min-width: 0; color: var(--orange); font-family: 'Oswald', sans-serif; font-size: clamp(23px, 2vw, 28px); line-height: 1.1; text-align: right; white-space: normal; overflow-wrap: anywhere; }
.cart-summary-card p { margin: 0 0 22px; color: #6a7b84; font-size: 13px; line-height: 1.6; }
.cart-summary-card .btn { width: 100%; justify-content: center; }
.cart-clear-button {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 11px 16px;
  border: 1px solid #d6e0e4;
  background: #fff;
  color: #9b463c;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease;
}
.cart-clear-button:hover,
.cart-clear-button:focus-visible {
  border-color: #9b463c;
  background: #fff4f2;
  color: #7f3028;
}
.cart-empty { padding: 70px 30px; border: 1px solid #dce5e9; background: #f7f9fa; text-align: center; }
.cart-empty-icon { display: flex; width: 70px; height: 70px; align-items: center; justify-content: center; margin: 0 auto 20px; border-radius: 18px; background: rgba(var(--accent-rgb), .1); color: var(--orange); }
.cart-empty-icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.cart-empty h2 { margin: 0 0 10px; font-family: 'Oswald', sans-serif; color: var(--black); font-size: 30px; }
.cart-empty p { margin: 0 0 24px; color: #667983; }
.cart-order-section { display: grid; grid-template-columns: minmax(0, .82fr) minmax(420px, 1fr); gap: 56px; align-items: start; margin-top: 70px; padding-top: 70px; border-top: 1px solid #dce5e9; }
.cart-order-copy h2 { margin: 0 0 15px; font-family: 'Oswald', sans-serif; color: var(--black); font-size: clamp(32px, 4vw, 46px); line-height: 1.1; }
.cart-order-copy p { max-width: 520px; color: #60727c; font-size: 16px; line-height: 1.7; }
.cart-order-form { padding: 34px; background: #f5f8f9; color: var(--black); }
.cart-order-form h3 { margin: 0 0 6px; font-family: 'Oswald', sans-serif; font-size: 26px; }
.cart-order-form .hint { margin-bottom: 22px; color: #77878f; }
.cart-order-form .grid2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 14px; }
.cart-order-form .row { margin-bottom: 14px; }
.cart-order-form label:not(.form-consent) { display: block; margin-bottom: 7px; color: #52656f; font-size: 12px; font-weight: 600; }
.cart-order-form input,
.cart-order-form textarea { width: 100%; padding: 13px 14px; border: 1px solid #d0dce1; background: #fff; color: var(--black); font: inherit; }
.cart-order-form input:focus,
.cart-order-form textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .10); }
.cart-order-form textarea { min-height: 112px; resize: vertical; }
.cart-order-form .btn { width: 100%; justify-content: center; }
.cart-noscript { margin-top: 30px; padding: 14px; background: #fff4e8; color: #704b27; }

.topbar .social a,
.footer .social-blk a,
.mobile-nav-social a {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px;
  flex: 0 0 38px;
  border: 0 !important;
  border-radius: 10px !important;
  color: #fff !important;
  box-shadow: 0 7px 18px rgba(0,0,0,.14);
}
.topbar .social svg,
.footer .social-blk svg,
.mobile-nav-social svg {
  width: 19px !important;
  height: 19px !important;
  fill: currentColor !important;
  stroke: none !important;
}
.social-telegram, .mobile-social-telegram { background: #229ed9 !important; }
.social-vk, .mobile-social-vk { background: #0077ff !important; }
.topbar .social .social-vk svg,
.mobile-nav-social .mobile-social-vk svg {
  width: 20px !important;
  height: 18px !important;
  overflow: visible;
}
.social-youtube { background: #ff0033 !important; }
.social-max, .mobile-social-max { background: linear-gradient(135deg, #471aff 0%, #9500ff 55%, #00bfff 100%) !important; }
.social-max svg, .mobile-social-max svg { fill: none !important; stroke: #fff !important; stroke-width: 1.8 !important; }
.topbar .social a:hover,
.footer .social-blk a:hover,
.mobile-nav-social a:hover { filter: brightness(.92); transform: translateY(-1px); }
.footer .contact-item .l { font-size: 12px !important; }
.footer .contact-item .v { font-size: 14.5px !important; }
.footer .footer-menu a { font-size: 14px !important; }
.footer .about-blk p { font-size: 14px !important; line-height: 1.7; }
.footer .contact-item svg,
.footer .contact svg,
.footer .contact-blk svg,
.footer .item svg { width: 21px !important; height: 21px !important; stroke: #7fb2e4 !important; stroke-width: 1.9 !important; }

@media (max-width: 1320px) {
  .header-cart-button { border-color: rgba(22,48,60,.16); background: #fff; color: var(--orange); box-shadow: 0 8px 18px rgba(22,48,60,.08); }
}
@media (max-width: 1080px) {
  .header-cart-button { width: 44px; height: 44px; flex-basis: 44px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .cart-order-section { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 768px) {
  body.bekor-theme { --type-caption: 12px; --type-small: 14px; --type-body: 16px; --type-lead: 16px; }
  body.bekor-theme .section-sub { font-size: 16px !important; }
  body.bekor-theme label.form-consent { font-size: 11px !important; }
  .cart-page { padding-top: 34px; }
  .cart-page-intro { margin-bottom: 30px; font-size: 16px; }
  .cart-items-head { display: none; }
  .cart-item { grid-template-columns: minmax(0, 1fr) auto; gap: 16px; padding: 18px; }
  .cart-item-product { grid-column: 1 / -1; }
  .cart-item-sum { justify-self: end; }
  .cart-order-section { margin-top: 48px; padding-top: 48px; }
}
@media (max-width: 576px) {
  .header-cart-button,
  body.bekor-theme .mobile-call-button,
  body.bekor-theme .mobile-feedback-button,
  .header .burger { width: 40px !important; height: 40px !important; min-width: 40px !important; flex-basis: 40px !important; }
  .header .container { column-gap: 6px !important; }
  body.bekor-theme label.form-consent { font-size: 10.5px !important; }
  .cart-toast { right: 16px; bottom: 16px; grid-template-columns: 38px minmax(0, 1fr); }
  .cart-toast-actions { grid-column: 1 / -1; justify-content: flex-end; }
  .cart-item { grid-template-columns: 1fr; }
  .cart-item-product { grid-template-columns: 74px minmax(0, 1fr); }
  .cart-item-image { width: 74px; height: 68px; }
  .cart-quantity { justify-self: start; }
  .cart-item-sum { justify-self: start; }
  .cart-summary-card { padding: 22px 18px; }
  .cart-order-form { padding: 24px 18px !important; }
  .cart-order-form .grid2 { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
}
@media (max-width: 420px) {
  .header .brand { flex-direction: column; align-items: flex-start; gap: 2px; margin-right: auto; }
  .brand-subtitle { display: block !important; width: auto !important; font-size: 7.5px !important; line-height: 1.12 !important; letter-spacing: .025em !important; }
  .header .logo-bk-svg { width: 94px !important; }
  .header-cart-button,
  body.bekor-theme .mobile-call-button,
  body.bekor-theme .mobile-feedback-button,
  .header .burger { width: 38px !important; height: 38px !important; min-width: 38px !important; flex-basis: 38px !important; }
}

/* minimum readable content typography. */
body.bekor-theme {
  --type-caption: 14px;
  --type-small: 14px;
}

/* Home hero benefit cards. */
body.bekor-theme .hero-adv-grid > div > div:last-child > div:first-child {
  font-size: 16px !important;
  line-height: 1.4 !important;
}
body.bekor-theme .hero-adv-grid > div > div:last-child > div:last-child {
  font-size: 14px !important;
  line-height: 1.55 !important;
}

/* Universal free-sample facts. */
body.bekor-theme .sample-facts strong {
  font-size: 18px !important;
  line-height: 1.3 !important;
}
body.bekor-theme .sample-facts span {
  font-size: 14px !important;
  line-height: 1.55 !important;
}
body.bekor-theme .sample-list li {
  font-size: 15px !important;
  line-height: 1.55 !important;
}

/* Small readable copy across reusable site blocks. */
body.bekor-theme .section-eyebrow .label,
body.bekor-theme .sample-eyebrow .label,
body.bekor-theme .hero-kicker,
body.bekor-theme .cat-card .desc,
body.bekor-theme .cat-card .price-from,
body.bekor-theme .price-card .sub,
body.bekor-theme .price-card .from,
body.bekor-theme .feedback .info .contact-list .lbl,
body.bekor-theme .feedback .form-card .hint,
body.bekor-theme .sample .form .hint,
body.bekor-theme .form-card .hint,
body.bekor-theme .delivery-img .badge .small,
body.bekor-theme .delivery-options .opt .desc,
body.bekor-theme .process-step p,
body.bekor-theme .process-step .tag,
body.bekor-theme .project-card .stats .s .l,
body.bekor-theme .cert-card .meta,
body.bekor-theme .article-card .meta,
body.bekor-theme .article-card p,
body.bekor-theme .article-card .read,
body.bekor-theme .footer .about-blk p,
body.bekor-theme .footer .contact-item .l,
body.bekor-theme .footer-bottom,
body.bekor-theme .company-note span,
body.bekor-theme .company-capability span,
body.bekor-theme .delivery-footnote,
body.bekor-theme .gallery-caption span,
body.bekor-theme .cta-stats span,
body.bekor-theme .category-note,
body.bekor-theme .product-series-heading span,
body.bekor-theme .product-series-badge,
body.bekor-theme .product-size,
body.bekor-theme .category-tab-button span,
body.bekor-theme .category-tab-kicker,
body.bekor-theme .product-detail-fact span,
body.bekor-theme .product-detail-sku,
body.bekor-theme .cart-toast-copy span,
body.bekor-theme .cart-toast-link,
body.bekor-theme .cart-items-head,
body.bekor-theme .cart-item-meta,
body.bekor-theme .cart-item-remove,
body.bekor-theme .cart-summary-label,
body.bekor-theme .cart-summary-total span,
body.bekor-theme .cart-summary-card p,
body.bekor-theme .cart-order-form label:not(.form-consent),
body.bekor-theme label.form-consent {
  font-size: 14px !important;
}

body.bekor-theme .btn,
body.bekor-theme button.btn,
body.bekor-theme a.btn {
  font-size: 14px !important;
}

@media (max-width: 768px) {
  body.bekor-theme {
    --type-caption: 14px;
    --type-small: 14px;
  }
  body.bekor-theme .hero-adv-grid > div > div:last-child > div:first-child {
    font-size: 15px !important;
  }
  body.bekor-theme .sample-facts strong {
    font-size: 17px !important;
  }
  body.bekor-theme label.form-consent {
    font-size: 14px !important;
  }
}

/* Interface copy follows the same 14 px readability floor. */
body.bekor-theme .topbar .item,
body.bekor-theme .header nav a,
body.bekor-theme .header .phone .small,
body.bekor-theme .dropdown-menu a,
body.bekor-theme .breadcrumbs,
body.bekor-theme .sample .form label:not(.form-consent),
body.bekor-theme .feedback .form-card label:not(.form-consent),
body.bekor-theme .form-card label:not(.form-consent),
body.bekor-theme .delivery-options .opt .name,
body.bekor-theme .about-text ul li span,
body.bekor-theme .cert-card h4,
body.bekor-theme .cert-card .cert-card-title,
body.bekor-theme .footer h4,
body.bekor-theme .footer .footer-heading,
body.bekor-theme .footer ul li a,
body.bekor-theme .footer .contact-item .v {
  font-size: 14px !important;
}


/* clients block container alignment. */
body.bekor-theme .universal-clients-block {
  overflow: hidden;
}

body.bekor-theme .universal-clients-block .container {
  min-width: 0;
}

body.bekor-theme .universal-clients-block .clients-grid {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

body.bekor-theme .universal-clients-block .client-cell {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

body.bekor-theme .universal-clients-block .client-logo {
  max-width: 100%;
}

body.bekor-theme .universal-clients-block .client-cell .name {
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 1100px) {
  body.bekor-theme .universal-clients-block .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body.bekor-theme .universal-clients-block .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 350px) {
  body.bekor-theme .universal-clients-block .clients-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Cart empty state: keep only the empty message visible. */
.cart-page .cart-layout[hidden],
.cart-page .cart-order-section[hidden] {
  display: none !important;
}


/* header, advantages, modal forms and clickable products. */

/* Header social icons return to the restrained outline style. Footer icons keep brand colors. */
body.bekor-theme .topbar .social a,
body.bekor-theme .mobile-nav-social .mobile-social-link {
  border: 1px solid rgba(22, 48, 60, .18) !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: #5a6b76 !important;
  box-shadow: none !important;
  filter: none;
}
body.bekor-theme .topbar .social a {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px;
  flex-basis: 32px;
}
body.bekor-theme .mobile-nav-social .mobile-social-link {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  flex-basis: 40px !important;
}
body.bekor-theme .topbar .social svg,
body.bekor-theme .mobile-nav-social svg {
  width: 17px !important;
  height: 17px !important;
  fill: currentColor !important;
  stroke: none !important;
}
body.bekor-theme .topbar .social .social-max svg,
body.bekor-theme .mobile-nav-social .mobile-social-max svg {
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
}
body.bekor-theme .topbar .social a:hover,
body.bekor-theme .mobile-nav-social .mobile-social-link:hover {
  border-color: var(--orange) !important;
  background: var(--orange) !important;
  color: #fff !important;
  filter: none;
  transform: translateY(-1px);
}

/* The second phone remains regular-weight but is easier to read. */
body.bekor-theme .header .phone .small {
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 1200px) {
  body.bekor-theme .header .phone .small { font-size: 17px; }
}

/* Advantage cards: number + title, then icon + description. */
body.bekor-theme .adv-card-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
}
body.bekor-theme .adv-card-title-row { align-items: center; }
body.bekor-theme .adv-card-copy-row {
  align-items: start;
  margin-top: 18px;
}
body.bekor-theme .adv-card .num,
body.bekor-theme .adv-card .ico,
body.bekor-theme .adv-card h3,
body.bekor-theme .adv-card .adv-card-title,
body.bekor-theme .adv-card p {
  margin: 0 !important;
}
body.bekor-theme .adv-card h3,
body.bekor-theme .adv-card .adv-card-title { align-self: center; }
body.bekor-theme .adv-card p { padding-top: 2px; }
@media (max-width: 600px) {
  body.bekor-theme .adv-card-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
  }
  body.bekor-theme .adv-card-copy-row { margin-top: 15px; }
}

/* Home category price prefix and value share one baseline. */
body.bekor-theme .cat-card-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}
body.bekor-theme .cat-card-price .price-from,
body.bekor-theme .cat-card-price .price {
  margin: 0;
}

/* Whole product cards are links without interfering with their internal actions. */
body.bekor-theme .is-clickable-card { cursor: pointer; }
body.bekor-theme .is-clickable-card:focus-visible {
  outline: 3px solid rgba(var(--accent-rgb), .28);
  outline-offset: 4px;
}
body.bekor-theme .is-clickable-card:hover .product-position-media img {
  transform: scale(1.025);
}
body.bekor-theme .product-position-media img {
  transition: transform .3s ease;
}

/* Shared popup request form. */
body.request-modal-open { overflow: hidden; }
.request-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.request-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.request-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 31, .72);
  backdrop-filter: blur(4px);
}
.request-modal-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px;
  background: #fff;
  color: var(--black);
  box-shadow: 0 28px 80px rgba(8, 24, 33, .28);
  transform: translateY(12px);
  transition: transform .22s ease;
}
.request-modal.is-open .request-modal-panel { transform: translateY(0); }
.request-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid #d9e3e7;
  border-radius: 50%;
  background: #f6f9fa;
  cursor: pointer;
}
.request-modal-close span {
  position: absolute;
  top: 20px;
  left: 12px;
  width: 18px;
  height: 2px;
  background: #304955;
}
.request-modal-close span:first-child { transform: rotate(45deg); }
.request-modal-close span:last-child { transform: rotate(-45deg); }
.request-modal-eyebrow {
  margin-bottom: 10px;
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.request-modal .request-modal-title {
  max-width: 500px;
  margin: 0 52px 12px 0;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
}
.request-modal .request-modal-title + p {
  max-width: 520px;
  margin: 0 0 24px;
  color: #62757f;
  font-size: 15px;
  line-height: 1.65;
}
.request-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.request-modal-form .row { margin-bottom: 14px; }
.request-modal-form label:not(.form-consent) {
  display: block;
  margin-bottom: 7px;
  color: #4f626c;
  font-size: 14px;
  font-weight: 600;
}
.request-modal-form input,
.request-modal-form textarea {
  width: 100%;
  border: 1px solid #cfdae0;
  background: #f8fafb;
  color: var(--black);
  font: inherit;
}
.request-modal-form input { min-height: 50px; padding: 12px 14px; }
.request-modal-form textarea { min-height: 108px; padding: 13px 14px; resize: vertical; }
.request-modal-form input:focus,
.request-modal-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), .1);
}
.request-modal-form .form-consent { margin: 2px 0 18px; }
.request-modal-form .btn { width: 100%; justify-content: center; }
@media (max-width: 620px) {
  .request-modal { align-items: flex-end; padding: 0; }
  .request-modal-panel {
    width: 100%;
    max-height: 92vh;
    padding: 30px 20px 24px;
  }
  .request-modal-grid { grid-template-columns: 1fr; gap: 0; }
  .request-modal .request-modal-title { margin-right: 44px; font-size: 30px; }
  .request-modal-close { top: 12px; right: 12px; }
}


/* The additional header phone is almost the same size as the primary one. */
body.bekor-theme .header .phone .phone-main {
  font-size: 21px !important;
}
body.bekor-theme .header .phone .small {
  margin-top: 1px;
  font-size: 20px !important;
  line-height: 1.08;
}
@media (min-width: 821px) and (max-width: 1200px) {
  body.bekor-theme .header .phone .phone-main {
    font-size: 17px !important;
  }
  body.bekor-theme .header .phone .small {
    font-size: 16.5px !important;
  }
}

/* Quick order actions in product cards and the main product card. */
body.bekor-theme .product-quick-order-button {
  grid-column: 1 / -1;
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-color: rgba(36, 90, 147, .24);
  background: rgba(36, 90, 147, .06);
  color: #244b6f;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
body.bekor-theme .product-quick-order-button svg,
body.bekor-theme .product-quick-order-main svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.bekor-theme .product-quick-order-button:hover,
body.bekor-theme .product-quick-order-button:focus-visible {
  border-color: var(--orange);
  background: rgba(var(--accent-rgb), .1);
  color: var(--orange);
}
body.bekor-theme .product-purchase-panel .product-quick-order-main {
  grid-column: 1 / -1;
  background: #fff;
  color: #244b6f;
  border-color: rgba(36, 90, 147, .28);
}
body.bekor-theme .product-purchase-panel .product-quick-order-main:hover,
body.bekor-theme .product-purchase-panel .product-quick-order-main:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

/* Mobile request form remains centered instead of becoming a bottom sheet. */
@media (max-width: 620px) {
  body.bekor-theme .request-modal {
    align-items: center;
    padding: 16px;
  }
  body.bekor-theme .request-modal-panel {
    width: 100%;
    max-height: calc(100dvh - 32px);
    padding: 30px 20px 24px;
    border-radius: 16px;
  }
}

/* Delivery and payment page */
body.bekor-theme .delivery-page-hero {
  min-height: 390px;
}
body.bekor-theme .delivery-page-hero .company-hero-media img {
  object-position: center 58%;
}
body.bekor-theme .delivery-page-hero .company-hero-media::after {
  background: linear-gradient(90deg, rgba(11,35,48,.96) 0%, rgba(11,35,48,.82) 48%, rgba(11,35,48,.34) 100%);
}
body.bekor-theme .delivery-page-hero h1 {
  max-width: 720px;
  font-size: 54px;
}
body.bekor-theme .delivery-page-hero p {
  max-width: 760px;
}
body.bekor-theme .delivery-page-hero .delivery-hero-button {
  margin-top: 28px;
}

body.bekor-theme .delivery-method-grid,
body.bekor-theme .delivery-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}
body.bekor-theme .delivery-method-card,
body.bekor-theme .delivery-payment-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(14,53,72,.12);
  background: #fff;
  box-shadow: 0 18px 42px rgba(20,54,69,.07);
}
body.bekor-theme .delivery-payment-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
body.bekor-theme .delivery-method-card {
  position: relative;
  overflow: hidden;
}
body.bekor-theme .delivery-method-card::after {
  content: '';
  position: absolute;
  right: -34px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), .07);
}
body.bekor-theme .delivery-method-icon,
body.bekor-theme .delivery-payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  background: rgba(var(--accent-rgb), .10);
  border: 1px solid rgba(var(--accent-rgb), .24);
}
body.bekor-theme .delivery-method-icon svg,
body.bekor-theme .delivery-payment-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.bekor-theme .delivery-method-meta {
  margin: 22px 0 8px;
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.bekor-theme .delivery-method-card h3,
body.bekor-theme .delivery-payment-card h3,
body.bekor-theme .delivery-factor-card h3,
body.bekor-theme .delivery-process-step h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 23px;
  line-height: 1.2;
  font-weight: 600;
}
body.bekor-theme .delivery-method-card p,
body.bekor-theme .delivery-payment-card p,
body.bekor-theme .delivery-factor-card p,
body.bekor-theme .delivery-process-step p {
  margin: 0;
  color: #60727c;
  font-size: 15px;
  line-height: 1.68;
}

body.bekor-theme .delivery-factor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
body.bekor-theme .delivery-factor-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  min-width: 0;
  padding: 26px 28px;
  border: 1px solid rgba(14,53,72,.10);
  background: rgba(255,255,255,.82);
}
body.bekor-theme .delivery-factor-number {
  color: rgba(var(--accent-rgb), .42);
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
}
body.bekor-theme .delivery-factor-card h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

body.bekor-theme .delivery-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 40px;
}
body.bekor-theme .delivery-process-step {
  min-width: 0;
  padding-right: 28px;
}
body.bekor-theme .delivery-process-step-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
body.bekor-theme .delivery-process-step-head > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  background: var(--orange);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 600;
}
body.bekor-theme .delivery-process-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),.44), rgba(var(--accent-rgb),.08));
}
body.bekor-theme .delivery-process-step:last-child .delivery-process-line {
  display: none;
}
body.bekor-theme .delivery-process-step h3 {
  font-size: 20px;
}

body.bekor-theme .delivery-payment-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
body.bekor-theme .delivery-payment-title h3 {
  margin: 0;
}
body.bekor-theme .delivery-payment-card > p {
  margin-bottom: 26px;
}
body.bekor-theme .delivery-payment-card ul {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 132px;
  margin: auto 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(14,53,72,.11);
  list-style: none;
}
body.bekor-theme .delivery-payment-card li {
  position: relative;
  padding-left: 22px;
  color: #344f5d;
  font-size: 14px;
  line-height: 1.5;
}
body.bekor-theme .delivery-payment-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .52em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--orange);
  transform: rotate(45deg);
}

body.bekor-theme .delivery-faq .faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

@media (max-width: 1100px) {
  body.bekor-theme .delivery-method-grid,
  body.bekor-theme .delivery-payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.bekor-theme .delivery-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 0;
  }
  body.bekor-theme .delivery-process-step:nth-child(2) .delivery-process-line,
  body.bekor-theme .delivery-process-step:last-child .delivery-process-line {
    display: none;
  }
}

@media (max-width: 760px) {
  body.bekor-theme .delivery-page-hero {
    min-height: 340px;
  }
  body.bekor-theme .delivery-page-hero h1 {
    font-size: 36px;
  }
  body.bekor-theme .delivery-method-grid,
  body.bekor-theme .delivery-payment-grid,
  body.bekor-theme .delivery-factor-grid,
  body.bekor-theme .delivery-process-grid {
    grid-template-columns: 1fr;
  }
  body.bekor-theme .delivery-method-card,
  body.bekor-theme .delivery-payment-card {
    padding: 24px;
  }
  body.bekor-theme .delivery-payment-card ul {
    min-height: 0;
  }
  body.bekor-theme .delivery-factor-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 22px;
  }
  body.bekor-theme .delivery-factor-number {
    font-size: 34px;
  }
  body.bekor-theme .delivery-process-grid {
    gap: 26px;
  }
  body.bekor-theme .delivery-process-step {
    padding-right: 0;
  }
  body.bekor-theme .delivery-process-line,
  body.bekor-theme .delivery-process-step:nth-child(2) .delivery-process-line {
    display: none;
  }
  body.bekor-theme .delivery-faq .faq-intro {
    position: static;
  }
}

@media (max-width: 420px) {
  body.bekor-theme .delivery-page-hero h1 {
    font-size: 31px;
  }
  body.bekor-theme .delivery-method-card h3,
  body.bekor-theme .delivery-payment-card h3 {
    font-size: 20px;
  }
  body.bekor-theme .delivery-method-icon,
  body.bekor-theme .delivery-payment-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }
}

/* Certificates and licenses page */
body.bekor-theme .certificates-page-hero {
  min-height: 410px;
}
body.bekor-theme .certificates-page-hero .company-hero-media img {
  object-position: center 46%;
}
body.bekor-theme .certificates-page-hero .company-hero-media::after {
  background: linear-gradient(90deg, rgba(11,35,48,.97) 0%, rgba(11,35,48,.85) 48%, rgba(11,35,48,.36) 100%);
}
body.bekor-theme .certificates-page-hero h1 {
  max-width: 760px;
  font-size: 54px;
}
body.bekor-theme .certificates-page-hero p {
  max-width: 760px;
}
body.bekor-theme .certificates-hero-button {
  margin-top: 28px;
}

body.bekor-theme .certificates-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}
body.bekor-theme .certificates-scope-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(14,53,72,.11);
  background: #fff;
  box-shadow: 0 18px 42px rgba(20,54,69,.07);
}
body.bekor-theme .certificates-scope-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border: 1px solid rgba(var(--accent-rgb),.24);
  background: rgba(var(--accent-rgb),.09);
}
body.bekor-theme .certificates-scope-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.bekor-theme .certificates-scope-card h3,
body.bekor-theme .certificate-page-card h3,
body.bekor-theme .certificates-checklist-card h3,
body.bekor-theme .certificates-process-step h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 23px;
  line-height: 1.22;
  font-weight: 600;
}
body.bekor-theme .certificates-scope-card p,
body.bekor-theme .certificate-page-card p,
body.bekor-theme .certificates-checklist-card p,
body.bekor-theme .certificates-process-step p {
  margin: 0;
  color: #60727c;
  font-size: 15px;
  line-height: 1.68;
}

body.bekor-theme .certificates-documents-head,
body.bekor-theme .certificates-process-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}
body.bekor-theme .certificates-documents-head > div,
body.bekor-theme .certificates-process-head > div {
  min-width: 0;
}
body.bekor-theme .certificates-download-all {
  flex: 0 0 auto;
}
body.bekor-theme .certificates-download-all svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.bekor-theme .certificates-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}
body.bekor-theme .certificate-page-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(14,53,72,.12);
  background: #fff;
  box-shadow: 0 16px 38px rgba(20,54,69,.07);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
body.bekor-theme .certificate-page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb),.36);
  box-shadow: 0 22px 46px rgba(20,54,69,.11);
}
body.bekor-theme .certificate-page-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 18px;
  background: #f3f6f8;
}
body.bekor-theme .certificate-page-image img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  filter: none;
  transition: transform .28s ease;
}
body.bekor-theme .certificate-page-card:hover .certificate-page-image img {
  transform: scale(1.018);
}
body.bekor-theme .certificate-page-zoom {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(11,35,48,.88);
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}
body.bekor-theme .certificate-page-image:hover .certificate-page-zoom,
body.bekor-theme .certificate-page-image:focus-visible .certificate-page-zoom {
  opacity: 1;
  transform: translateY(0);
}
body.bekor-theme .certificate-page-zoom svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.bekor-theme .certificate-page-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}
body.bekor-theme .certificate-page-category {
  margin-bottom: 10px;
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.bekor-theme .certificate-page-card h3 {
  font-size: 21px;
}
body.bekor-theme .certificate-page-validity {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 6px 10px;
  background: rgba(63,142,94,.10);
  color: #2f754a;
  font-size: 14px;
  font-weight: 600;
}
body.bekor-theme .certificate-page-number {
  margin-bottom: 16px;
  color: #7b8a92;
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
body.bekor-theme .certificate-page-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}
body.bekor-theme .certificate-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
body.bekor-theme .certificate-action-link:hover,
body.bekor-theme .certificate-action-link:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}
body.bekor-theme .certificate-action-link.is-download {
  border-color: rgba(14,53,72,.14);
  background: #f5f7f8;
  color: #344f5d;
}

body.bekor-theme .certificates-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}
body.bekor-theme .certificates-checklist-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
  padding: 27px 28px;
  border: 1px solid rgba(14,53,72,.11);
  background: #fff;
}
body.bekor-theme .certificates-checklist-card > span {
  color: rgba(var(--accent-rgb),.42);
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
}
body.bekor-theme .certificates-checklist-card h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

body.bekor-theme .certificates-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}
body.bekor-theme .certificates-process-step {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(14,53,72,.11);
  background: #fff;
}
body.bekor-theme .certificates-process-number {
  margin-bottom: 24px;
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
}
body.bekor-theme .certificates-faq .faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

@media (max-width: 1100px) {
  body.bekor-theme .certificates-page-grid,
  body.bekor-theme .certificates-scope-grid,
  body.bekor-theme .certificates-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.bekor-theme .certificates-documents-head,
  body.bekor-theme .certificates-process-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  body.bekor-theme .certificates-page-hero {
    min-height: 350px;
  }
  body.bekor-theme .certificates-page-hero h1 {
    font-size: 36px;
  }
  body.bekor-theme .certificates-page-grid,
  body.bekor-theme .certificates-scope-grid,
  body.bekor-theme .certificates-checklist-grid,
  body.bekor-theme .certificates-process-grid {
    grid-template-columns: 1fr;
  }
  body.bekor-theme .certificate-page-image {
    aspect-ratio: 5 / 6;
  }
  body.bekor-theme .certificate-page-zoom {
    opacity: 1;
    transform: none;
  }
  body.bekor-theme .certificates-checklist-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    padding: 22px;
  }
  body.bekor-theme .certificates-checklist-card > span {
    font-size: 34px;
  }
  body.bekor-theme .certificates-faq .faq-intro {
    position: static;
  }
}

@media (max-width: 420px) {
  body.bekor-theme .certificates-page-hero h1 {
    font-size: 31px;
  }
  body.bekor-theme .certificate-page-body,
  body.bekor-theme .certificates-scope-card,
  body.bekor-theme .certificates-process-step {
    padding: 22px;
  }
  body.bekor-theme .certificate-page-actions {
    flex-direction: column;
  }
  body.bekor-theme .certificate-action-link {
    width: 100%;
  }
}

/* certificate open button alignment. */
body.bekor-theme .certificate-page-actions .certificate-open-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 42px;
  min-height: 42px;
  margin: 0;
  padding: 0 18px;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 420px) {
  body.bekor-theme .certificate-page-actions .certificate-open-button {
    width: 100%;
  }
}

/* prevent duplicate zoom icon on certificate previews. */
body.bekor-theme .certificate-page-image.bekor-lightbox-trigger::after {
  content: none;
  display: none;
}

/* desktop header fit from 1321 to 1600 px. */
@media (min-width: 1321px) and (max-width: 1600px) {
  body.bekor-theme .header .container {
    width: 100%;
    max-width: 1520px;
    padding-left: 24px;
    padding-right: 24px;
    gap: 10px;
  }

  body.bekor-theme .header .brand {
    flex: 0 0 150px;
  }

  body.bekor-theme .header .logo-bk-svg {
    width: 150px;
  }

  body.bekor-theme .brand-subtitle {
    width: 150px;
    font-size: 12px !important;
    letter-spacing: .025em;
  }

  body.bekor-theme .header nav {
    flex: 1 1 auto;
    min-width: 0;
    gap: 5px;
    margin-left: 4px;
    margin-right: 4px;
  }

  body.bekor-theme .header nav > a,
  body.bekor-theme .header nav > .nav-item > a,
  body.bekor-theme .header nav > .nav-item > .menu-parent-link {
    font-size: 12px !important;
    letter-spacing: 0;
  }

  body.bekor-theme .header .submenu-toggle {
    flex-basis: 22px;
    width: 22px;
    height: 28px;
  }

  body.bekor-theme .header .phone {
    flex: 0 0 160px;
    min-width: 160px;
  }

  body.bekor-theme .header .phone .phone-main,
  body.bekor-theme .header .phone .small {
    width: 160px;
    min-width: 160px;
    font-size: 17px !important;
  }

  body.bekor-theme .header-cart-button {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  body.bekor-theme .header-cta {
    gap: 7px;
    padding: 10px 11px;
    font-size: 12px !important;
  }
}

@media (min-width: 1321px) and (max-width: 1420px) {
  body.bekor-theme .header .container {
    padding-left: 18px;
    padding-right: 18px;
    gap: 8px;
  }

  body.bekor-theme .header .brand {
    flex-basis: 140px;
  }

  body.bekor-theme .header .logo-bk-svg,
  body.bekor-theme .brand-subtitle {
    width: 140px;
  }

  body.bekor-theme .header nav {
    gap: 3px;
    margin-left: 0;
    margin-right: 0;
  }

  body.bekor-theme .header nav > a,
  body.bekor-theme .header nav > .nav-item > a,
  body.bekor-theme .header nav > .nav-item > .menu-parent-link {
    font-size: 12px !important;
  }

  body.bekor-theme .header .phone {
    flex-basis: 154px;
    min-width: 154px;
  }

  body.bekor-theme .header .phone .phone-main,
  body.bekor-theme .header .phone .small {
    width: 154px;
    min-width: 154px;
    font-size: 16px !important;
  }

  body.bekor-theme .header-cta {
    padding-left: 9px;
    padding-right: 9px;
  }
}

/* restore readable desktop navigation spacing. */
@media (min-width: 1321px) and (max-width: 1600px) {
  body.bekor-theme .header .container {
    max-width: 1580px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 9px;
  }

  body.bekor-theme .header .brand {
    flex-basis: 154px;
    margin-right: 14px;
  }

  body.bekor-theme .header .logo-bk-svg,
  body.bekor-theme .brand-subtitle {
    width: 154px;
  }

  body.bekor-theme .header nav {
    gap: 5px;
    margin-left: 0;
    margin-right: 2px;
  }

  body.bekor-theme .header nav > a,
  body.bekor-theme .header nav > .nav-item > a,
  body.bekor-theme .header nav > .nav-item > .menu-parent-link {
    font-size: 14px !important;
    line-height: 1.2;
  }

  body.bekor-theme .header .submenu-toggle {
    flex-basis: 20px;
    width: 20px;
  }

  body.bekor-theme .header .phone {
    flex-basis: 158px;
    min-width: 158px;
  }

  body.bekor-theme .header .phone .phone-main,
  body.bekor-theme .header .phone .small {
    width: 158px;
    min-width: 158px;
  }

  body.bekor-theme .header-cta {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 1321px) and (max-width: 1420px) {
  body.bekor-theme .header .container {
    padding-left: 14px;
    padding-right: 14px;
    gap: 7px;
  }

  body.bekor-theme .header .brand {
    flex-basis: 146px;
    margin-right: 12px;
  }

  body.bekor-theme .header .logo-bk-svg,
  body.bekor-theme .brand-subtitle {
    width: 146px;
  }

  body.bekor-theme .header nav {
    gap: 3px;
    margin-right: 0;
  }

  body.bekor-theme .header .phone {
    flex-basis: 152px;
    min-width: 152px;
  }

  body.bekor-theme .header .phone .phone-main,
  body.bekor-theme .header .phone .small {
    width: 152px;
    min-width: 152px;
  }

  body.bekor-theme .header-cart-button {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  body.bekor-theme .header-cta {
    gap: 6px;
    padding-left: 8px;
    padding-right: 8px;
  }
}


/* equal mobile header icon glyphs. */
@media (max-width: 1320px) {
  body.bekor-theme .header-cart-button svg,
  body.bekor-theme .mobile-call-button svg,
  body.bekor-theme .mobile-feedback-button svg {
    display: block !important;
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    flex: 0 0 22px !important;
    margin: 0 !important;
  }

  body.bekor-theme .header .burger span {
    width: 22px !important;
  }
}


/* match compact mobile action button sizes. */
@media (max-width: 576px) {
  body.bekor-theme .mobile-call-button,
  body.bekor-theme .mobile-call-button:link,
  body.bekor-theme .mobile-call-button:visited,
  body.bekor-theme .mobile-call-button:hover,
  body.bekor-theme .mobile-call-button:focus,
  body.bekor-theme .mobile-call-button:focus-visible,
  body.bekor-theme .mobile-call-button:active,
  body.bekor-theme .mobile-feedback-button,
  body.bekor-theme .mobile-feedback-button:link,
  body.bekor-theme .mobile-feedback-button:visited,
  body.bekor-theme .mobile-feedback-button:hover,
  body.bekor-theme .mobile-feedback-button:focus,
  body.bekor-theme .mobile-feedback-button:focus-visible,
  body.bekor-theme .mobile-feedback-button:active {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    flex: 0 0 40px !important;
  }
}

@media (max-width: 420px) {
  body.bekor-theme .mobile-call-button,
  body.bekor-theme .mobile-call-button:link,
  body.bekor-theme .mobile-call-button:visited,
  body.bekor-theme .mobile-call-button:hover,
  body.bekor-theme .mobile-call-button:focus,
  body.bekor-theme .mobile-call-button:focus-visible,
  body.bekor-theme .mobile-call-button:active,
  body.bekor-theme .mobile-feedback-button,
  body.bekor-theme .mobile-feedback-button:link,
  body.bekor-theme .mobile-feedback-button:visited,
  body.bekor-theme .mobile-feedback-button:hover,
  body.bekor-theme .mobile-feedback-button:focus,
  body.bekor-theme .mobile-feedback-button:focus-visible,
  body.bekor-theme .mobile-feedback-button:active {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    flex: 0 0 38px !important;
  }
}


body.bekor-theme .topbar .social .social-vk svg,
body.bekor-theme .mobile-nav-social .mobile-social-vk svg,
body.bekor-theme .footer .social-blk .social-vk svg {
  display: block;
  overflow: visible;
  transform: none;
}

body.bekor-theme .footer .contact-item .v a:hover,
body.bekor-theme .footer .contact-item .v a:focus-visible {
  color: var(--orange);
}

/* supplied VK icon and synchronized footer navigation. */
body.bekor-theme .topbar .social .social-vk img.vk-icon,
body.bekor-theme .mobile-nav-social .mobile-social-vk img.vk-icon,
body.bekor-theme .footer .social-blk .social-vk img.vk-icon {
  display: block;
  width: 20px;
  height: 14px;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

body.bekor-theme .footer .grid {
  grid-template-columns: minmax(220px, 1.25fr) minmax(420px, 2.2fr) minmax(180px, 1fr) minmax(240px, 1.25fr);
  gap: 42px;
}

body.bekor-theme .footer .footer-catalog-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 0;
}

body.bekor-theme .footer .footer-catalog-menu li,
body.bekor-theme .footer .footer-company-menu li {
  min-width: 0;
}

body.bekor-theme .footer .footer-catalog-menu a,
body.bekor-theme .footer .footer-company-menu a {
  display: inline-block;
  line-height: 1.45;
}

@media (max-width: 1280px) {
  body.bekor-theme .footer .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 40px;
  }

  body.bekor-theme .footer .about-blk,
  body.bekor-theme .footer .footer-catalog-block {
    grid-column: 1 / -1;
  }

  body.bekor-theme .footer .contact-item,
  body.bekor-theme .footer .contact-item > div,
  body.bekor-theme .footer .contact-item .v {
    min-width: 0;
  }

  body.bekor-theme .footer .contact-item .v,
  body.bekor-theme .footer .contact-item .v a {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 768px) {
  body.bekor-theme .footer .grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.bekor-theme .footer .about-blk,
  body.bekor-theme .footer .footer-catalog-block {
    grid-column: auto;
  }
}

@media (max-width: 576px) {
  body.bekor-theme .footer .footer-catalog-menu {
    grid-template-columns: minmax(0, 1fr);
  }
}


body.bekor-theme .topbar .social .social-vk img.vk-icon,
body.bekor-theme .mobile-nav-social .mobile-social-vk img.vk-icon,
body.bekor-theme .footer .social-blk .social-vk img.vk-icon {
  display: block;
  width: 18px;
  height: 18px;
  max-width: 18px;
  object-fit: contain;
  object-position: center;
}

body.bekor-theme .topbar .social .social-vk:hover img.vk-icon,
body.bekor-theme .topbar .social .social-vk:focus-visible img.vk-icon,
body.bekor-theme .mobile-nav-social .mobile-social-vk:hover img.vk-icon,
body.bekor-theme .mobile-nav-social .mobile-social-vk:focus-visible img.vk-icon {
  filter: brightness(0) invert(1);
}

body.bekor-theme .footer .social-blk .social-vk img.vk-icon {
  filter: none;
}

/* Vacancies page */
body.bekor-theme .vacancies-page-hero {
  min-height: 430px;
}
body.bekor-theme .vacancies-page-hero .company-hero-media img {
  object-position: center 48%;
}
body.bekor-theme .vacancies-page-hero .company-hero-media::after {
  background: linear-gradient(90deg, rgba(11,35,48,.97) 0%, rgba(11,35,48,.86) 50%, rgba(11,35,48,.34) 100%);
}
body.bekor-theme .vacancies-page-hero h1 {
  max-width: 820px;
  font-size: 54px;
}
body.bekor-theme .vacancies-page-hero p {
  max-width: 760px;
}
body.bekor-theme .vacancies-hero-button {
  margin-top: 28px;
}

body.bekor-theme .vacancy-card {
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid rgba(14,53,72,.12);
  background: #fff;
  box-shadow: 0 22px 52px rgba(20,54,69,.08);
}
body.bekor-theme .vacancy-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  padding: 34px 36px 30px;
  border-bottom: 1px solid rgba(14,53,72,.1);
}
body.bekor-theme .vacancy-card-title-block {
  min-width: 0;
  max-width: 860px;
}
body.bekor-theme .vacancy-position-label {
  display: inline-flex;
  margin-bottom: 13px;
  padding: 6px 10px;
  border: 1px solid rgba(var(--accent-rgb),.24);
  background: rgba(var(--accent-rgb),.08);
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}
body.bekor-theme .vacancy-card h2 {
  margin: 0 0 12px;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  line-height: 1.16;
  font-weight: 600;
}
body.bekor-theme .vacancy-card-title-block p {
  margin: 0;
  color: #60727c;
  font-size: 16px;
  line-height: 1.65;
}
body.bekor-theme .vacancy-card-button {
  flex: 0 0 auto;
}

body.bekor-theme .vacancy-meta-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid rgba(14,53,72,.1);
  background: #f6f8f9;
}
body.bekor-theme .vacancy-meta-item {
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid rgba(14,53,72,.1);
}
body.bekor-theme .vacancy-meta-item:last-child {
  border-right: 0;
}
body.bekor-theme .vacancy-meta-label {
  margin-bottom: 6px;
  color: #81909a;
  font-size: 14px;
  line-height: 1.35;
}
body.bekor-theme .vacancy-meta-value {
  color: #17384a;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

body.bekor-theme .vacancy-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
body.bekor-theme .vacancy-detail-column {
  min-width: 0;
  padding: 34px 36px 36px;
}
body.bekor-theme .vacancy-detail-column + .vacancy-detail-column {
  border-left: 1px solid rgba(14,53,72,.1);
}
body.bekor-theme .vacancy-detail-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
body.bekor-theme .vacancy-detail-number {
  margin: 0;
  color: rgba(var(--accent-rgb),.42);
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 600;
}
body.bekor-theme .vacancy-detail-column h3 {
  margin: 0;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
}
body.bekor-theme .vacancy-detail-column ul,
body.bekor-theme .vacancy-additional ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.bekor-theme .vacancy-detail-column li,
body.bekor-theme .vacancy-additional li {
  position: relative;
  padding-left: 24px;
  color: #415d6b;
  font-size: 15px;
  line-height: 1.58;
}
body.bekor-theme .vacancy-detail-column li::before,
body.bekor-theme .vacancy-additional li::before {
  content: '';
  position: absolute;
  left: 1px;
  top: .53em;
  width: 8px;
  height: 8px;
  border: 2px solid var(--orange);
  transform: rotate(45deg);
}
body.bekor-theme .vacancy-additional {
  display: grid;
  grid-template-columns: minmax(180px, .36fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin: 0 36px 36px;
  padding: 24px 26px;
  border: 1px solid rgba(var(--accent-rgb),.16);
  background: rgba(var(--accent-rgb),.055);
}
body.bekor-theme .vacancy-additional-title {
  color: #17384a;
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

body.bekor-theme .vacancy-condition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}
body.bekor-theme .vacancy-condition-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(14,53,72,.1);
  background: #fff;
  box-shadow: 0 16px 34px rgba(20,54,69,.055);
}
body.bekor-theme .vacancy-condition-head {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 15px;
}
body.bekor-theme .vacancy-condition-head > span {
  color: rgba(var(--accent-rgb),.42);
  font-family: 'Oswald', sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 600;
}
body.bekor-theme .vacancy-condition-card h3 {
  margin: 1px 0 0;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 600;
}
body.bekor-theme .vacancy-condition-card p {
  margin: 0;
  color: #60727c;
  font-size: 15px;
  line-height: 1.65;
}

body.bekor-theme .vacancies-cta {
  padding-top: 0;
  background: #fff;
}
body.bekor-theme .vacancies-cta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  overflow: hidden;
  padding: 42px 46px;
  background: linear-gradient(120deg, #102f40 0%, #173f56 64%, #245a93 100%);
}
body.bekor-theme .vacancies-cta-box::after {
  content: '';
  position: absolute;
  right: -70px;
  top: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
body.bekor-theme .vacancies-cta-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 760px;
}
body.bekor-theme .vacancies-cta-box .section-eyebrow .label,
body.bekor-theme .vacancies-cta-box h2,
body.bekor-theme .vacancies-cta-box p {
  color: #fff;
}
body.bekor-theme .vacancies-cta-box h2 {
  margin: 8px 0 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  line-height: 1.16;
  font-weight: 600;
}
body.bekor-theme .vacancies-cta-box h2 .accent {
  color: #fff;
}
body.bekor-theme .vacancies-cta-box p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.68;
}
body.bekor-theme .vacancies-cta-box > .btn {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}
body.bekor-theme .vacancies-cta-box > .btn svg,
body.bekor-theme .vacancies-hero-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1100px) {
  body.bekor-theme .vacancy-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  body.bekor-theme .vacancy-meta-item:nth-child(3) {
    border-right: 0;
  }
  body.bekor-theme .vacancy-meta-item:nth-child(n+4) {
    border-top: 1px solid rgba(14,53,72,.1);
  }
  body.bekor-theme .vacancy-condition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.bekor-theme .vacancies-page-hero {
    min-height: 360px;
  }
  body.bekor-theme .vacancies-page-hero h1 {
    font-size: 36px;
  }
  body.bekor-theme .vacancy-card-head,
  body.bekor-theme .vacancies-cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
  body.bekor-theme .vacancy-card-head {
    padding: 28px 24px 24px;
  }
  body.bekor-theme .vacancy-card h2 {
    font-size: 29px;
  }
  body.bekor-theme .vacancy-card-button,
  body.bekor-theme .vacancies-cta-box > .btn {
    width: 100%;
  }
  body.bekor-theme .vacancy-meta-grid,
  body.bekor-theme .vacancy-details-grid,
  body.bekor-theme .vacancy-condition-grid {
    grid-template-columns: 1fr;
  }
  body.bekor-theme .vacancy-meta-item,
  body.bekor-theme .vacancy-meta-item:nth-child(3) {
    border-right: 0;
    border-top: 1px solid rgba(14,53,72,.1);
  }
  body.bekor-theme .vacancy-meta-item:first-child {
    border-top: 0;
  }
  body.bekor-theme .vacancy-detail-column {
    padding: 28px 24px;
  }
  body.bekor-theme .vacancy-detail-column + .vacancy-detail-column {
    border-top: 1px solid rgba(14,53,72,.1);
    border-left: 0;
  }
  body.bekor-theme .vacancy-additional {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0 24px 24px;
  }
  body.bekor-theme .vacancies-cta-box {
    padding: 34px 28px;
  }
  body.bekor-theme .vacancies-cta-box h2 {
    font-size: 30px;
  }
}

@media (max-width: 420px) {
  body.bekor-theme .vacancies-page-hero h1 {
    font-size: 31px;
  }
  body.bekor-theme .vacancy-card-head,
  body.bekor-theme .vacancy-detail-column,
  body.bekor-theme .vacancy-condition-card {
    padding: 22px;
  }
  body.bekor-theme .vacancy-additional {
    margin: 0 22px 22px;
    padding: 20px;
  }
  body.bekor-theme .vacancy-condition-head {
    grid-template-columns: 44px minmax(0, 1fr);
  }
  body.bekor-theme .vacancies-cta-box {
    padding: 28px 22px;
  }
}

/* partners, FAQ and works pages. */
body.bekor-theme .partners-page-hero,
body.bekor-theme .faq-page-hero,
body.bekor-theme .works-page-hero {
  min-height: 430px;
}
body.bekor-theme .partners-page-hero .company-hero-media::after,
body.bekor-theme .faq-page-hero .company-hero-media::after,
body.bekor-theme .works-page-hero .company-hero-media::after {
  background: linear-gradient(90deg, rgba(11,35,48,.97) 0%, rgba(11,35,48,.85) 52%, rgba(11,35,48,.35) 100%);
}
body.bekor-theme .partners-page-hero h1,
body.bekor-theme .faq-page-hero h1,
body.bekor-theme .works-page-hero h1 {
  max-width: 880px;
  font-size: 54px;
}
body.bekor-theme .partners-page-hero p,
body.bekor-theme .faq-page-hero p,
body.bekor-theme .works-page-hero p {
  max-width: 780px;
}
body.bekor-theme .partners-hero-button,
body.bekor-theme .faq-hero-button,
body.bekor-theme .works-hero-button {
  margin-top: 28px;
}
body.bekor-theme .partners-hero-button svg,
body.bekor-theme .faq-hero-button svg,
body.bekor-theme .works-hero-button svg,
body.bekor-theme .partners-cta-box .btn svg,
body.bekor-theme .faq-page-cta-box .btn svg,
body.bekor-theme .works-cta-box .btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .partners-format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}
body.bekor-theme .partners-format-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 32px 30px 30px;
  border: 1px solid rgba(14,53,72,.11);
  background: #fff;
  box-shadow: 0 18px 42px rgba(20,54,69,.06);
}
body.bekor-theme .partners-format-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(.24);
  transform-origin: left center;
  transition: transform .25s ease;
}
body.bekor-theme .partners-format-card:hover::after {
  transform: scaleX(1);
}
body.bekor-theme .partners-format-number {
  margin-bottom: 24px;
  color: rgba(var(--accent-rgb),.36);
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 600;
}
body.bekor-theme .partners-format-card h3,
body.bekor-theme .partners-benefit-card h3,
body.bekor-theme .partners-audience-item h3,
body.bekor-theme .faq-topic-card h3,
body.bekor-theme .works-intro-point h3 {
  margin: 0 0 11px;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 23px;
  line-height: 1.24;
  font-weight: 600;
}
body.bekor-theme .partners-format-card p,
body.bekor-theme .partners-benefit-card p,
body.bekor-theme .partners-audience-item p,
body.bekor-theme .faq-topic-card p,
body.bekor-theme .works-intro-point p {
  margin: 0;
  color: #60727c;
  font-size: 15px;
  line-height: 1.68;
}

body.bekor-theme .partners-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}
body.bekor-theme .partners-benefit-card {
  min-width: 0;
  padding: 28px 26px;
  border: 1px solid rgba(14,53,72,.1);
  background: #fff;
}
body.bekor-theme .partners-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  background: rgba(var(--accent-rgb),.08);
  color: var(--orange);
}
body.bekor-theme .partners-benefit-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.bekor-theme .partners-audience-layout,
body.bekor-theme .works-intro-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: start;
}
body.bekor-theme .partners-audience-copy .section-sub,
body.bekor-theme .works-intro-layout .section-sub {
  max-width: 500px;
}
body.bekor-theme .partners-audience-list,
body.bekor-theme .works-intro-points {
  display: grid;
  border-top: 1px solid rgba(14,53,72,.11);
}
body.bekor-theme .partners-audience-item,
body.bekor-theme .works-intro-point {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(14,53,72,.11);
}
body.bekor-theme .partners-audience-item > span,
body.bekor-theme .works-intro-point > span {
  color: rgba(var(--accent-rgb),.42);
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 600;
}
body.bekor-theme .partners-audience-item h3,
body.bekor-theme .works-intro-point h3 {
  font-size: 21px;
}
body.bekor-theme .partners-cta,
body.bekor-theme .faq-page-cta,
body.bekor-theme .works-cta {
  padding-top: 0;
  background: #fff;
}
body.bekor-theme .partners-cta-box,
body.bekor-theme .faq-page-cta-box,
body.bekor-theme .works-cta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  overflow: hidden;
  padding: 42px 46px;
  background: linear-gradient(120deg, #102f40 0%, #173f56 64%, #245a93 100%);
}
body.bekor-theme .partners-cta-box::after,
body.bekor-theme .faq-page-cta-box::after,
body.bekor-theme .works-cta-box::after {
  content: '';
  position: absolute;
  right: -90px;
  top: -110px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}
body.bekor-theme .partners-cta-box > div,
body.bekor-theme .faq-page-cta-box > div,
body.bekor-theme .works-cta-box > div,
body.bekor-theme .partners-cta-box > .btn,
body.bekor-theme .faq-page-cta-box > .btn,
body.bekor-theme .works-cta-box > .btn {
  position: relative;
  z-index: 1;
}
body.bekor-theme .partners-cta-box > div,
body.bekor-theme .faq-page-cta-box > div,
body.bekor-theme .works-cta-box > div {
  max-width: 760px;
}
body.bekor-theme .partners-cta-box .section-eyebrow .label,
body.bekor-theme .faq-page-cta-box .section-eyebrow .label,
body.bekor-theme .works-cta-box .section-eyebrow .label,
body.bekor-theme .partners-cta-box h2,
body.bekor-theme .faq-page-cta-box h2,
body.bekor-theme .works-cta-box h2 {
  color: #fff;
}
body.bekor-theme .partners-cta-box h2,
body.bekor-theme .faq-page-cta-box h2,
body.bekor-theme .works-cta-box h2 {
  margin: 8px 0 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  line-height: 1.16;
  font-weight: 600;
}
body.bekor-theme .partners-cta-box h2 .accent,
body.bekor-theme .faq-page-cta-box h2 .accent,
body.bekor-theme .works-cta-box h2 .accent {
  color: #fff;
}
body.bekor-theme .partners-cta-box p,
body.bekor-theme .faq-page-cta-box p,
body.bekor-theme .works-cta-box p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.68;
}

body.bekor-theme .faq-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}
body.bekor-theme .faq-topic-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
  padding: 26px 28px;
  border: 1px solid rgba(14,53,72,.11);
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
body.bekor-theme .faq-topic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb),.3);
  box-shadow: 0 18px 38px rgba(20,54,69,.07);
}
body.bekor-theme .faq-topic-card > span {
  color: rgba(var(--accent-rgb),.42);
  font-family: 'Oswald', sans-serif;
  font-size: 31px;
  line-height: 1;
  font-weight: 600;
}
body.bekor-theme .faq-topic-card h3 {
  font-size: 21px;
}
body.bekor-theme .faq-page-questions .section-sub {
  max-width: 760px;
}
body.bekor-theme .faq-page-group {
  scroll-margin-top: 120px;
  margin-top: 42px;
}
body.bekor-theme .faq-page-group + .faq-page-group {
  margin-top: 56px;
}
body.bekor-theme .faq-page-group-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
body.bekor-theme .faq-page-group-head > span {
  color: rgba(var(--accent-rgb),.42);
  font-family: 'Oswald', sans-serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 600;
}
body.bekor-theme .faq-page-group-head h3 {
  margin: 0;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
}
body.bekor-theme .faq-page-group .faq-list {
  max-width: none;
}

body.bekor-theme .works-intro {
  overflow: hidden;
}
body.bekor-theme .works-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 46px;
}
body.bekor-theme .works-category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(14,53,72,.14);
  background: #fff;
  color: #334e5b;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  transition: all .2s ease;
}
body.bekor-theme .works-category-nav a:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}
body.bekor-theme .works-gallery-group {
  scroll-margin-top: 120px;
}
body.bekor-theme .works-gallery-group + .works-gallery-group {
  margin-top: 52px;
}
body.bekor-theme .works-gallery-group-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
body.bekor-theme .works-gallery-group-head > span {
  color: rgba(var(--accent-rgb),.42);
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
}
body.bekor-theme .works-gallery-group-head h3 {
  margin: 0;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 600;
}
body.bekor-theme .works-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
body.bekor-theme .works-gallery-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #dfe5e8;
}
body.bekor-theme .works-gallery-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
body.bekor-theme .works-gallery-card:hover > img {
  transform: scale(1.035);
}
body.bekor-theme .works-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  background: rgba(12,36,49,.06);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity .25s ease, background .25s ease;
}
body.bekor-theme .works-gallery-card:hover .works-gallery-overlay,
body.bekor-theme .works-gallery-card:focus-visible .works-gallery-overlay {
  background: rgba(12,36,49,.48);
  opacity: 1;
}
body.bekor-theme .works-gallery-zoom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
}
body.bekor-theme .works-gallery-zoom svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1100px) {
  body.bekor-theme .partners-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.bekor-theme .partners-audience-layout,
  body.bekor-theme .works-intro-layout {
    gap: 46px;
  }
}

@media (max-width: 820px) {
  body.bekor-theme .partners-page-hero,
  body.bekor-theme .faq-page-hero,
  body.bekor-theme .works-page-hero {
    min-height: 370px;
  }
  body.bekor-theme .partners-page-hero h1,
  body.bekor-theme .faq-page-hero h1,
  body.bekor-theme .works-page-hero h1 {
    font-size: 38px;
  }
  body.bekor-theme .partners-format-grid,
  body.bekor-theme .faq-topic-grid {
    grid-template-columns: 1fr;
  }
  body.bekor-theme .partners-audience-layout,
  body.bekor-theme .works-intro-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  body.bekor-theme .partners-cta-box,
  body.bekor-theme .faq-page-cta-box,
  body.bekor-theme .works-cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
  body.bekor-theme .partners-cta-box > .btn,
  body.bekor-theme .faq-page-cta-box > .btn,
  body.bekor-theme .works-cta-box > .btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  body.bekor-theme .partners-benefit-grid,
  body.bekor-theme .works-gallery-grid {
    grid-template-columns: 1fr;
  }
  body.bekor-theme .partners-format-card,
  body.bekor-theme .partners-benefit-card,
  body.bekor-theme .faq-topic-card {
    padding: 24px 22px;
  }
  body.bekor-theme .partners-audience-item,
  body.bekor-theme .works-intro-point {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }
  body.bekor-theme .faq-page-group-head,
  body.bekor-theme .works-gallery-group-head {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }
  body.bekor-theme .faq-page-group-head > span,
  body.bekor-theme .works-gallery-group-head > span {
    font-size: 32px;
  }
  body.bekor-theme .faq-page-group-head h3,
  body.bekor-theme .works-gallery-group-head h3 {
    font-size: 24px;
  }
  body.bekor-theme .works-category-nav {
    gap: 8px;
    margin-bottom: 34px;
  }
  body.bekor-theme .works-category-nav a {
    width: 100%;
  }
  body.bekor-theme .partners-cta-box,
  body.bekor-theme .faq-page-cta-box,
  body.bekor-theme .works-cta-box {
    padding: 32px 24px;
  }
  body.bekor-theme .partners-cta-box h2,
  body.bekor-theme .faq-page-cta-box h2,
  body.bekor-theme .works-cta-box h2 {
    font-size: 30px;
  }
}

@media (max-width: 420px) {
  body.bekor-theme .partners-page-hero h1,
  body.bekor-theme .faq-page-hero h1,
  body.bekor-theme .works-page-hero h1 {
    font-size: 31px;
  }
}


/* partner layout and full works gallery. */
body.bekor-theme .partners-format-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
body.bekor-theme .partners-format-head .partners-format-number {
  margin: 0;
}
body.bekor-theme .partners-format-head h3 {
  margin: 0;
}
body.bekor-theme .partners-audience-copy {
  position: sticky;
  top: 118px;
  align-self: start;
}
body.bekor-theme .works-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
body.bekor-theme .works-gallery-card {
  aspect-ratio: 4 / 3;
}
@media (max-width: 1100px) {
  body.bekor-theme .works-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  body.bekor-theme .partners-audience-copy {
    position: static;
  }
  body.bekor-theme .works-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  body.bekor-theme .works-gallery-grid {
    grid-template-columns: 1fr;
  }
}


/* category hero image fills the banner. */
body.bekor-theme .category-hero .company-hero-media {
  overflow: hidden;
}

body.bekor-theme .category-hero .category-hero-media-inner {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  padding: 0;
}

body.bekor-theme .category-hero .category-hero-media-inner img {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center center;
  opacity: 1;
}

@media (max-width: 820px) {
  body.bekor-theme .category-hero .category-hero-media-inner {
    padding: 0;
  }

  body.bekor-theme .category-hero .category-hero-media-inner img {
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

/* unified project system. */
body.bekor-theme .projects-page-hero .company-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.bekor-theme .projects-hero-count {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  width: fit-content;
  margin-top: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
}

body.bekor-theme .projects-hero-count strong {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: clamp(46px, 5vw, 64px);
  font-weight: 600;
  line-height: 0.9;
}

body.bekor-theme .projects-hero-count span {
  max-width: 170px;
  padding-bottom: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

body.bekor-theme .projects-hero-button {
  margin-top: 26px;
}

body.bekor-theme .projects-grid,
body.bekor-theme .category-project-grid,
body.bekor-theme .project-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

body.bekor-theme .projects-grid,
body.bekor-theme .project-related-grid {
  margin-top: 36px;
}

body.bekor-theme .realized-project-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dfe7ec;
  background: #fff;
  color: var(--black);
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(22, 48, 60, 0.05);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

body.bekor-theme .realized-project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: 0 14px 38px rgba(22, 48, 60, 0.09);
}

body.bekor-theme .realized-project-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9eef1;
}

body.bekor-theme .realized-project-media::after {
  content: none;
}

body.bekor-theme .realized-project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

body.bekor-theme .realized-project-card:hover .realized-project-media img {
  transform: scale(1.035);
}

body.bekor-theme .realized-project-number {
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-flex;
  min-width: 54px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  background: var(--black);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

body.bekor-theme .realized-project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

body.bekor-theme .realized-project-meta {
  display: block;
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.bekor-theme .realized-project-title {
  display: block;
  color: var(--black);
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.28;
}

body.bekor-theme .realized-project-text {
  display: block;
  margin-top: 12px;
  color: #60717b;
  font-size: 14px;
  line-height: 1.62;
}

body.bekor-theme .realized-project-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

body.bekor-theme .realized-project-more svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .project-single-hero {
  padding: 24px 0 70px;
}

body.bekor-theme .project-breadcrumbs {
  margin-bottom: 38px;
}

body.bekor-theme .project-single-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
}

body.bekor-theme .project-industry-label {
  display: inline-flex;
  margin-bottom: 2px;
  padding: 7px 10px;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.bekor-theme .project-single-copy h1 {
  margin: 14px 0 20px;
  color: var(--black);
  font-family: "Oswald", sans-serif;
  font-size: clamp(36px, 3.8vw, 52px);
  font-weight: 600;
  line-height: 1.04;
}

body.bekor-theme .project-single-lead {
  max-width: 680px;
  margin: 0 0 26px;
  color: #566871;
  font-size: 17px;
  line-height: 1.7;
}

body.bekor-theme .project-single-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid #dfe7ec;
  background: #e9eef1;
}

body.bekor-theme .project-single-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.bekor-theme .project-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 28px;
}

body.bekor-theme .project-meta-item {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid #dfe7ec;
  background: #f7f9fa;
}

body.bekor-theme .project-meta-item span {
  display: block;
  margin-bottom: 4px;
  color: #71818a;
  font-size: 12px;
  font-weight: 600;
}

body.bekor-theme .project-meta-item strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

body.bekor-theme .project-story-heading {
  max-width: 840px;
  margin-bottom: 24px;
}

body.bekor-theme .project-overview {
  max-width: 960px;
  margin-bottom: 34px;
  color: #53656f;
  font-size: 16px;
  line-height: 1.75;
}

body.bekor-theme .project-overview p {
  margin: 0 0 14px;
}

body.bekor-theme .project-overview p:last-child {
  margin-bottom: 0;
}

body.bekor-theme .project-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

body.bekor-theme .project-story-grid.is-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.bekor-theme .project-story-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid #dfe7ec;
  background: #fff;
}

body.bekor-theme .project-story-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

body.bekor-theme .project-story-head span {
  display: flex;
  width: 54px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 21px;
  font-weight: 600;
}

body.bekor-theme .project-story-head h2 {
  margin: 0;
  color: var(--black);
  font-family: "Oswald", sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.18;
}

body.bekor-theme .project-story-text,
body.bekor-theme .project-story-text p {
  color: #566871;
  font-size: 15px;
  line-height: 1.72;
}

body.bekor-theme .project-story-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  body.bekor-theme .projects-grid,
  body.bekor-theme .category-project-grid,
  body.bekor-theme .project-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.bekor-theme .project-single-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 38px;
  }

  body.bekor-theme .project-story-grid,
  body.bekor-theme .project-story-grid.is-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body.bekor-theme .project-single-hero-grid {
    grid-template-columns: 1fr;
  }

  body.bekor-theme .project-single-hero {
    padding-bottom: 52px;
  }

  body.bekor-theme .project-single-media {
    order: -1;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 620px) {
  body.bekor-theme .projects-grid,
  body.bekor-theme .category-project-grid,
  body.bekor-theme .project-related-grid {
    grid-template-columns: 1fr;
  }

  body.bekor-theme .projects-hero-count {
    align-items: center;
  }

  body.bekor-theme .realized-project-body {
    padding: 22px 20px 20px;
  }

  body.bekor-theme .project-meta-grid {
    grid-template-columns: 1fr;
  }

  body.bekor-theme .project-story-card {
    padding: 24px 20px;
  }

  body.bekor-theme .project-story-head {
    grid-template-columns: 50px minmax(0, 1fr);
  }

  body.bekor-theme .project-story-head span {
    width: 50px;
    height: 46px;
  }

  body.bekor-theme .project-single-copy h1 {
    font-size: 32px;
  }
}


/* project pagination and visual alignment. */
body.bekor-theme .footer .logo-bk-svg .lo {
  fill: #fff;
}

body.bekor-theme .project-breadcrumbs {
  color: #6b7c85;
}

body.bekor-theme .project-breadcrumbs a {
  color: #52656f;
}

body.bekor-theme .project-breadcrumbs a:hover {
  color: var(--orange);
}

body.bekor-theme .project-breadcrumbs svg {
  stroke: #9aa8af;
}

body.bekor-theme .project-breadcrumbs > span {
  color: #75858d;
}

body.bekor-theme .realized-projects-section .projects-grid {
  margin-top: 36px;
}

body.bekor-theme .realized-projects-footer {
  margin-top: 48px;
  text-align: center;
}

body.bekor-theme .projects-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 46px;
}

body.bekor-theme .projects-pagination-page,
body.bekor-theme .projects-pagination-arrow {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7e0e5;
  background: #fff;
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

body.bekor-theme .projects-pagination-page:hover,
body.bekor-theme .projects-pagination-arrow:hover {
  border-color: var(--orange);
  color: var(--orange);
}

body.bekor-theme .projects-pagination-page.is-current {
  border-color: var(--black);
  background: var(--black);
  color: #fff;
}

@media (max-width: 620px) {
  body.bekor-theme .realized-projects-footer {
    margin-top: 34px;
  }

  body.bekor-theme .projects-pagination {
    gap: 6px;
    margin-top: 36px;
  }

  body.bekor-theme .projects-pagination-page,
  body.bekor-theme .projects-pagination-arrow {
    width: 40px;
    height: 40px;
  }
}

/* submenu state, current clients and company navigation. */
body.bekor-theme .header .dropdown-menu a.is-active,
body.bekor-theme .header .dropdown-menu a[aria-current="page"] {
  color: #16303c;
  background: rgba(var(--accent-rgb), .11);
  box-shadow: inset 3px 0 0 var(--orange);
  font-weight: 700;
}

body.bekor-theme .header .dropdown-menu a.is-active::after,
body.bekor-theme .header .dropdown-menu a[aria-current="page"]::after {
  display: none;
}

body.bekor-theme .universal-clients-block .clients-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-color: rgba(22, 48, 60, .12);
}

body.bekor-theme .universal-clients-block .client-cell {
  min-height: 126px;
  padding: 24px 20px;
  background: rgba(255, 255, 255, .74);
  border-color: rgba(22, 48, 60, .1);
}

body.bekor-theme .universal-clients-block .client-cell.has-logo .name {
  display: none;
}

body.bekor-theme .universal-clients-block .client-logo {
  max-width: 138px;
  max-height: 58px;
  width: auto;
  height: auto;
  filter: grayscale(1);
  opacity: .82;
}

body.bekor-theme .universal-clients-block .client-cell:hover .client-logo {
  filter: grayscale(0);
  opacity: 1;
}

body.bekor-theme .about-hero-button {
  margin-top: 26px;
}

body.bekor-theme .about-hero-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .about-section-links {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid rgba(22, 48, 60, .09);
}

body.bekor-theme .about-section-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #dbe3e7;
  border-left: 1px solid #dbe3e7;
}

body.bekor-theme .about-section-link {
  display: flex;
  min-width: 0;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-right: 1px solid #dbe3e7;
  border-bottom: 1px solid #dbe3e7;
  background: #fff;
  color: var(--black);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

body.bekor-theme .about-section-link:hover,
body.bekor-theme .about-section-link:focus-visible {
  background: #f3f6f8;
  color: #16303c;
}

body.bekor-theme .about-section-link strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
}

body.bekor-theme .about-section-link span {
  display: block;
  color: #667780;
  font-size: 12px;
  line-height: 1.45;
}

body.bekor-theme .about-section-link svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1100px) {
  body.bekor-theme .universal-clients-block .clients-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.bekor-theme .about-section-links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  body.bekor-theme .universal-clients-block .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.bekor-theme .universal-clients-block .client-cell {
    min-height: 104px;
    padding: 18px 14px;
  }

  body.bekor-theme .universal-clients-block .client-logo {
    max-width: 112px;
    max-height: 48px;
  }

  body.bekor-theme .about-section-links {
    padding: 20px 0;
  }

  body.bekor-theme .about-section-links-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.bekor-theme .about-section-link {
    min-height: 92px;
    padding: 18px 20px;
  }
}


/* equal mobile header action dimensions. */
@media (max-width: 820px) {
  body.bekor-theme .header-cart-button,
  body.bekor-theme .mobile-call-button,
  body.bekor-theme .mobile-feedback-button,
  body.bekor-theme .header .burger {
    box-sizing: border-box !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    flex: 0 0 44px !important;
    padding: 0 !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-radius: 10px !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
  }

  body.bekor-theme .header-cart-button svg,
  body.bekor-theme .mobile-call-button svg,
  body.bekor-theme .mobile-feedback-button svg {
    box-sizing: border-box !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    flex: 0 0 20px !important;
    margin: 0 !important;
  }

  body.bekor-theme .header .burger {
    gap: 5px !important;
  }

  body.bekor-theme .header .burger span {
    width: 20px !important;
    height: 2px !important;
    flex: 0 0 2px !important;
    margin: 0 !important;
  }
}

@media (max-width: 576px) {
  body.bekor-theme .header-cart-button,
  body.bekor-theme .mobile-call-button,
  body.bekor-theme .mobile-feedback-button,
  body.bekor-theme .header .burger {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    flex-basis: 40px !important;
  }
}

@media (max-width: 420px) {
  body.bekor-theme .header-cart-button,
  body.bekor-theme .mobile-call-button,
  body.bekor-theme .mobile-feedback-button,
  body.bekor-theme .header .burger {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    flex-basis: 38px !important;
  }

  body.bekor-theme .header-cart-button svg,
  body.bekor-theme .mobile-call-button svg,
  body.bekor-theme .mobile-feedback-button svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    flex-basis: 18px !important;
  }

  body.bekor-theme .header .burger span {
    width: 18px !important;
  }
}


/* content sync and horizontal icon headings. */
body.bekor-theme .about-section-links {
  padding-top: var(--bekor-section-space) !important;
  padding-bottom: var(--bekor-section-space) !important;
  border-bottom: 0;
}

body.bekor-theme .delivery-method-title,
body.bekor-theme .partners-benefit-title,
body.bekor-theme .certificates-scope-title,
body.bekor-theme .certificates-process-title {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  margin-bottom: 18px;
}

body.bekor-theme .delivery-method-title-copy {
  min-width: 0;
}

body.bekor-theme .delivery-method-meta {
  margin: 0 0 5px;
}

body.bekor-theme .delivery-method-title h3,
body.bekor-theme .partners-benefit-title h3,
body.bekor-theme .certificates-scope-title h3,
body.bekor-theme .certificates-process-title h3 {
  margin: 0;
}

body.bekor-theme .partners-benefit-icon,
body.bekor-theme .certificates-scope-icon,
body.bekor-theme .delivery-method-icon,
body.bekor-theme .certificates-process-icon {
  margin-bottom: 0;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--accent-rgb), .24);
  background: rgba(var(--accent-rgb), .09);
  color: var(--orange);
}

body.bekor-theme .certificates-process-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .category-gallery .gallery-grid,
body.bekor-theme .category-gallery-grid {
  align-items: stretch;
}

@media (max-width: 600px) {
  body.bekor-theme .delivery-method-title,
  body.bekor-theme .partners-benefit-title,
  body.bekor-theme .certificates-scope-title,
  body.bekor-theme .certificates-process-title {
    gap: 14px;
  }
}


/* about links, category lead width and delivery icon alignment. */
body.bekor-theme .about-section-link strong {
  font-size: 20px;
}

body.bekor-theme .about-section-link span {
  font-size: 14px;
  line-height: 1.5;
}

body.bekor-theme .category-content > .container > .section-sub {
  max-width: none;
}

body.bekor-theme .delivery-method-title {
  align-items: flex-start;
}

@media (max-width: 600px) {
  body.bekor-theme .about-section-link strong {
    font-size: 19px;
  }

  body.bekor-theme .about-section-link span {
    font-size: 13px;
  }
}


body.bekor-theme .contacts-page-hero {
  min-height: 420px;
}

body.bekor-theme .contacts-page-hero .company-hero-media img {
  object-position: center 48%;
}

body.bekor-theme .contacts-page-hero .company-hero-media::after {
  background: linear-gradient(90deg, rgba(11,35,48,.97) 0%, rgba(11,35,48,.86) 48%, rgba(11,35,48,.38) 100%);
}

body.bekor-theme .contacts-page-hero h1 {
  max-width: 760px;
  font-size: 54px;
}

body.bekor-theme .contacts-page-hero p {
  max-width: 780px;
}

body.bekor-theme .contacts-hero-button {
  margin-top: 28px;
}

body.bekor-theme .contacts-channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

body.bekor-theme .contacts-channel-card {
  min-width: 0;
  padding: 28px 26px;
  border: 1px solid rgba(14,53,72,.11);
  background: #fff;
  box-shadow: 0 18px 42px rgba(20,54,69,.06);
}

body.bekor-theme .contacts-channel-head,
body.bekor-theme .contacts-requisite-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

body.bekor-theme .contacts-requisite-head {
  align-items: center;
}

body.bekor-theme .contacts-channel-icon,
body.bekor-theme .contacts-requisite-icon,
body.bekor-theme .contacts-address-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border: 1px solid rgba(var(--accent-rgb), .24);
  background: rgba(var(--accent-rgb), .09);
  color: var(--orange);
}

body.bekor-theme .contacts-requisite-icon {
  padding: 0;
  margin: 0;
}

body.bekor-theme .contacts-channel-icon svg,
body.bekor-theme .contacts-requisite-icon svg,
body.bekor-theme .contacts-address-icon svg {
  display: block;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  margin: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .contacts-channel-label,
body.bekor-theme .contacts-requisite-label,
body.bekor-theme .contacts-address-row div > span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.bekor-theme .contacts-channel-card h3,
body.bekor-theme .contacts-requisite-card h3 {
  margin: 0;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

body.bekor-theme .contacts-channel-values,
body.bekor-theme .contacts-messenger-links {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

body.bekor-theme .contacts-channel-values a,
body.bekor-theme .contacts-channel-values span,
body.bekor-theme .contacts-messenger-links a {
  color: #263d49;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}

body.bekor-theme .contacts-channel-values a:hover,
body.bekor-theme .contacts-messenger-links a:hover {
  color: var(--orange);
}

body.bekor-theme .contacts-messenger-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(14,53,72,.1);
}

body.bekor-theme .contacts-messenger-links a:last-child {
  border-bottom: 0;
}

body.bekor-theme .contacts-messenger-links a span {
  color: var(--orange);
}

body.bekor-theme .contacts-location-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 72px;
  align-items: stretch;
}

body.bekor-theme .contacts-location-copy {
  min-width: 0;
}

body.bekor-theme .contacts-address-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(14,53,72,.11);
}

body.bekor-theme .contacts-address-row:first-of-type {
  margin-top: 28px;
}

body.bekor-theme .contacts-address-row div {
  min-width: 0;
}

body.bekor-theme .contacts-address-row strong {
  display: block;
  color: #243b47;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}

body.bekor-theme .contacts-map-button {
  margin-top: 22px;
}

body.bekor-theme .contacts-map-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .contacts-location-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(14,53,72,.12);
  background: #e8eef1;
}

body.bekor-theme .contacts-yandex-map iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

body.bekor-theme .contacts-requisites-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

body.bekor-theme .contacts-requisite-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(14,53,72,.11);
  background: #fff;
  box-shadow: 0 18px 42px rgba(20,54,69,.06);
}

body.bekor-theme .contacts-requisite-list {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
}

body.bekor-theme .contacts-requisite-list > div {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(14,53,72,.09);
}

body.bekor-theme .contacts-requisite-list dt {
  color: #788891;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.bekor-theme .contacts-requisite-list dd {
  min-width: 0;
  margin: 0;
  color: #243b47;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  body.bekor-theme .contacts-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.bekor-theme .contacts-location-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 48px;
  }
}

@media (max-width: 820px) {
  body.bekor-theme .contacts-page-hero {
    min-height: 380px;
  }

  body.bekor-theme .contacts-page-hero h1 {
    font-size: 46px;
  }

  body.bekor-theme .contacts-location-layout,
  body.bekor-theme .contacts-requisites-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.bekor-theme .contacts-location-visual {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  body.bekor-theme .contacts-page-hero h1 {
    font-size: 38px;
  }

  body.bekor-theme .contacts-channel-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    margin-top: 28px;
  }

  body.bekor-theme .contacts-channel-card,
  body.bekor-theme .contacts-requisite-card {
    padding: 22px 20px;
  }

  body.bekor-theme .contacts-channel-icon,
  body.bekor-theme .contacts-requisite-icon,
  body.bekor-theme .contacts-address-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  body.bekor-theme .contacts-channel-values a,
  body.bekor-theme .contacts-channel-values span,
  body.bekor-theme .contacts-messenger-links a {
    font-size: 17px;
  }

  body.bekor-theme .contacts-location-layout {
    gap: 34px;
  }

  body.bekor-theme .contacts-location-visual {
    min-height: 320px;
  }


  body.bekor-theme .contacts-requisite-list > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }
}

body.bekor-theme .contacts-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

body.bekor-theme .contacts-capability-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(14,53,72,.11);
  background: #fff;
  box-shadow: 0 18px 42px rgba(20,54,69,.06);
}

body.bekor-theme .contacts-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 1px solid rgba(var(--accent-rgb), .24);
  background: rgba(var(--accent-rgb), .09);
  color: var(--orange);
}

body.bekor-theme .contacts-capability-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .contacts-capability-card h3 {
  margin: 0 0 10px;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.25;
}

body.bekor-theme .contacts-capability-card p {
  margin: 0;
  color: #61747e;
  font-size: 15px;
  line-height: 1.7;
}

body.bekor-theme .contacts-requisites-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  body.bekor-theme .contacts-requisites-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.bekor-theme .contacts-requisite-card-company {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  body.bekor-theme .contacts-requisites-grid,
  body.bekor-theme .contacts-capability-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.bekor-theme .contacts-requisite-card-company {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  body.bekor-theme .contacts-capability-card {
    gap: 16px;
    padding: 22px 20px;
  }

  body.bekor-theme .contacts-capability-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  body.bekor-theme .contacts-capability-card h3 {
    font-size: 22px;
  }
}

/* articles and blog. */
body.bekor-theme .blog-archive-page,
body.bekor-theme .blog-single-page {
  background: var(--white);
  color: var(--black);
}

body.bekor-theme .blog-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #17212a;
}

body.bekor-theme .blog-hero-media,
body.bekor-theme .blog-hero-overlay {
  position: absolute;
  inset: 0;
}

body.bekor-theme .blog-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.bekor-theme .blog-hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 24, 36, .96) 0%, rgba(11, 24, 36, .86) 42%, rgba(11, 24, 36, .46) 70%, rgba(11, 24, 36, .26) 100%),
    linear-gradient(180deg, rgba(11, 24, 36, .12), rgba(11, 24, 36, .48));
}

body.bekor-theme .blog-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 54px;
  padding-bottom: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.bekor-theme .blog-hero .breadcrumbs {
  margin-bottom: 54px;
}

body.bekor-theme .blog-hero-kicker {
  margin-bottom: 16px;
  color: #cbd7e1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.bekor-theme .blog-hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.02em;
}

body.bekor-theme .blog-hero h1 span {
  color: #7db1df;
}

body.bekor-theme .blog-hero > .container > p,
body.bekor-theme .blog-hero-content > p {
  max-width: 760px;
  margin: 24px 0 0;
  color: #d9e1e7;
  font-size: 17px;
  line-height: 1.75;
}

body.bekor-theme .blog-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

body.bekor-theme .blog-hero-count {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: #d9e1e7;
}

body.bekor-theme .blog-hero-count strong {
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

body.bekor-theme .blog-hero-count span {
  font-size: 13px;
  letter-spacing: .04em;
}

body.bekor-theme .blog-list-section {
  padding-top: 86px;
  padding-bottom: 96px;
}

body.bekor-theme .blog-list-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 42px;
}

body.bekor-theme .blog-list-heading .section-sub {
  max-width: 760px;
}

body.bekor-theme .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

body.bekor-theme .blog-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #dce3e8;
  color: var(--black);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

body.bekor-theme .blog-card:hover {
  border-color: rgba(var(--accent-rgb), .54);
  box-shadow: 0 18px 42px rgba(18, 38, 54, .10);
  transform: translateY(-3px);
}

body.bekor-theme .blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  background: #e8eef2;
}

body.bekor-theme .blog-card-media > img,
body.bekor-theme .blog-card-media > picture,
body.bekor-theme .blog-card-media > picture > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.bekor-theme .blog-card-media > img,
body.bekor-theme .blog-card-media > picture > img {
  transition: transform .45s ease;
}

body.bekor-theme .blog-card:hover .blog-card-media > img,
body.bekor-theme .blog-card:hover .blog-card-media > picture > img {
  transform: scale(1.035);
}

body.bekor-theme .blog-card-placeholder {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), .14), rgba(var(--accent-rgb), .03)),
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,.44) 14px 15px);
}

body.bekor-theme .blog-card-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 11px;
  background: rgba(21, 53, 82, .92);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.bekor-theme .blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px 26px 27px;
}

body.bekor-theme .blog-card-date {
  margin-bottom: 10px;
  color: #71828e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.bekor-theme .blog-card-title {
  display: block;
  margin: 0;
  color: #182631;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

body.bekor-theme .blog-card-excerpt {
  display: block;
  margin-top: 14px;
  color: #60717d;
  font-size: 14px;
  line-height: 1.7;
}

body.bekor-theme .blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.bekor-theme .blog-card-more svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

body.bekor-theme .blog-card:hover .blog-card-more svg {
  transform: translateX(3px);
}

body.bekor-theme .blog-home-grid {
  margin-top: 34px;
}

body.bekor-theme .blog-home-action {
  margin-top: 40px;
  text-align: center;
}

body.bekor-theme .blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 50px;
}

body.bekor-theme .blog-pagination-item > * {
  min-width: 44px;
  height: 44px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #d8e0e5;
  background: var(--white);
  color: #263946;
  font-size: 13px;
  font-weight: 700;
  transition: all .2s ease;
}

body.bekor-theme .blog-pagination-item .current,
body.bekor-theme .blog-pagination-item a:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

body.bekor-theme .blog-pagination-item svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .blog-empty {
  padding: 54px;
  border: 1px solid #dce3e8;
  background: #f6f9fb;
}

body.bekor-theme .blog-empty h2 {
  margin: 0 0 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 30px;
  color: var(--black);
}

body.bekor-theme .blog-empty p {
  color: #627480;
}

body.bekor-theme .blog-single-hero {
  padding: 0 0 70px;
}

body.bekor-theme .blog-breadcrumbs {
  padding-top: 32px;
  margin-bottom: 42px;
  color: #6f7f89;
}

body.bekor-theme .blog-breadcrumbs a {
  color: #4c6677;
}

body.bekor-theme .blog-breadcrumbs svg {
  stroke: #9cabb5;
}

body.bekor-theme .blog-breadcrumbs span {
  color: #82909a;
}

body.bekor-theme .blog-single-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 58px;
  align-items: center;
}

body.bekor-theme .blog-single-hero-grid.no-image {
  grid-template-columns: minmax(0, 960px);
}

body.bekor-theme .blog-single-copy h1 {
  max-width: 850px;
  margin: 18px 0 0;
  color: #182631;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.02em;
}

body.bekor-theme .blog-single-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: #5c707d;
  font-size: 17px;
  line-height: 1.75;
}

body.bekor-theme .blog-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 28px;
}

body.bekor-theme .blog-single-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #607480;
  font-size: 12px;
  font-weight: 600;
}

body.bekor-theme .blog-single-meta svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .blog-single-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e9eef2;
}

body.bekor-theme .blog-single-media::before {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--orange);
}

body.bekor-theme .blog-single-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.bekor-theme .blog-content-section {
  padding-top: 82px;
  padding-bottom: 92px;
}

body.bekor-theme .blog-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px) minmax(280px, 340px);
  gap: 70px;
  align-items: start;
  justify-content: center;
}

body.bekor-theme .blog-article-content {
  min-width: 0;
  color: #344955;
  font-size: 16px;
  line-height: 1.8;
}

body.bekor-theme .blog-article-content > *:first-child {
  margin-top: 0;
}

body.bekor-theme .blog-article-content p,
body.bekor-theme .blog-article-content ul,
body.bekor-theme .blog-article-content ol,
body.bekor-theme .blog-article-content blockquote,
body.bekor-theme .blog-article-content table,
body.bekor-theme .blog-article-content figure {
  margin-top: 0;
  margin-bottom: 22px;
}

body.bekor-theme .blog-article-content h2,
body.bekor-theme .blog-article-content h3,
body.bekor-theme .blog-article-content h4 {
  color: #182631;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.25;
}

body.bekor-theme .blog-article-content h2 {
  margin: 48px 0 20px;
  padding-top: 4px;
  font-size: 34px;
}

body.bekor-theme .blog-article-content h3 {
  margin: 36px 0 16px;
  font-size: 26px;
}

body.bekor-theme .blog-article-content h4 {
  margin: 28px 0 14px;
  font-size: 21px;
}

body.bekor-theme .blog-article-content a {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

body.bekor-theme .blog-article-content strong {
  color: #203641;
}

body.bekor-theme .blog-article-content ul,
body.bekor-theme .blog-article-content ol {
  padding-left: 24px;
}

body.bekor-theme .blog-article-content li {
  margin-bottom: 9px;
}

body.bekor-theme .blog-article-content li::marker {
  color: var(--orange);
  font-weight: 700;
}

body.bekor-theme .blog-article-content img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
}

body.bekor-theme .blog-article-content figure img {
  width: 100%;
  margin: 0;
}

body.bekor-theme .blog-article-content figcaption {
  margin-top: 8px;
  color: #74848e;
  font-size: 12px;
  line-height: 1.55;
}

body.bekor-theme .blog-article-content blockquote {
  padding: 24px 28px;
  border-left: 4px solid var(--orange);
  background: var(--white);
  color: #2f4755;
}

body.bekor-theme .blog-article-content table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}

body.bekor-theme .blog-article-content th,
body.bekor-theme .blog-article-content td {
  padding: 13px 15px;
  border: 1px solid #dce3e8;
  text-align: left;
  vertical-align: top;
}

body.bekor-theme .blog-article-content th {
  background: #edf3f7;
  color: #213744;
}

body.bekor-theme .blog-article-aside {
  position: sticky;
  top: 118px;
}

body.bekor-theme .blog-aside-card {
  padding: 30px 28px;
  border-top: 4px solid var(--orange);
  background: #173147;
  color: var(--white);
}

body.bekor-theme .blog-aside-kicker {
  display: block;
  margin-bottom: 12px;
  color: #9fc3df;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.bekor-theme .blog-aside-card h2 {
  margin: 0;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

body.bekor-theme .blog-aside-card p {
  margin: 16px 0 24px;
  color: #d0dce5;
  font-size: 13px;
  line-height: 1.7;
}

body.bekor-theme .blog-aside-card .btn {
  width: 100%;
  justify-content: center;
}

body.bekor-theme .blog-back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #526976;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

body.bekor-theme .blog-back-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .blog-related-section {
  padding-top: 82px;
  padding-bottom: 92px;
}

body.bekor-theme .blog-related-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 36px;
}

@media (max-width: 1180px) {
  body.bekor-theme .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.bekor-theme .blog-content-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 44px;
  }
}

@media (max-width: 920px) {
  body.bekor-theme .blog-hero {
    min-height: 470px;
  }

  body.bekor-theme .blog-hero-overlay {
    background: linear-gradient(90deg, rgba(11, 24, 36, .95), rgba(11, 24, 36, .64));
  }

  body.bekor-theme .blog-single-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  body.bekor-theme .blog-single-media {
    max-width: 760px;
  }

  body.bekor-theme .blog-content-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  body.bekor-theme .blog-article-aside {
    position: static;
  }

  body.bekor-theme .blog-aside-card {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  body.bekor-theme .blog-hero {
    min-height: 0;
  }

  body.bekor-theme .blog-hero-content {
    min-height: 450px;
    padding-top: 34px;
    padding-bottom: 44px;
  }

  body.bekor-theme .blog-hero .breadcrumbs {
    margin-bottom: 38px;
  }

  body.bekor-theme .blog-hero h1 {
    font-size: 42px;
  }

  body.bekor-theme .blog-hero-content > p {
    font-size: 15px;
    line-height: 1.65;
  }

  body.bekor-theme .blog-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  body.bekor-theme .blog-list-section,
  body.bekor-theme .blog-related-section {
    padding-top: 62px;
    padding-bottom: 68px;
  }

  body.bekor-theme .blog-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  body.bekor-theme .blog-card-body {
    padding: 22px 21px 24px;
  }

  body.bekor-theme .blog-card-title {
    font-size: 21px;
  }

  body.bekor-theme .blog-pagination-item > * {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
  }

  body.bekor-theme .blog-pagination-item .prev span,
  body.bekor-theme .blog-pagination-item .next span {
    display: none;
  }

  body.bekor-theme .blog-single-hero {
    padding-bottom: 52px;
  }

  body.bekor-theme .blog-breadcrumbs {
    padding-top: 24px;
    margin-bottom: 32px;
  }

  body.bekor-theme .blog-single-copy h1 {
    font-size: 36px;
  }

  body.bekor-theme .blog-single-lead {
    font-size: 15px;
  }

  body.bekor-theme .blog-content-section {
    padding-top: 58px;
    padding-bottom: 66px;
  }

  body.bekor-theme .blog-article-content {
    font-size: 15px;
    line-height: 1.75;
  }

  body.bekor-theme .blog-article-content h2 {
    margin-top: 40px;
    font-size: 29px;
  }

  body.bekor-theme .blog-article-content h3 {
    font-size: 23px;
  }

  body.bekor-theme .blog-related-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* blog aligned with the approved site design system. */
/* Archive hero now uses the same company-hero component as Projects, About, Delivery and other inner pages. */
body.bekor-theme .blog-page-hero .company-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.bekor-theme .blog-page-hero .blog-hero-button {
  margin-top: 26px;
}

/* Article cards reuse the established article-card appearance. */
body.bekor-theme .article-card.blog-card {
  background: #fff;
  border: 1px solid #e8e7e5;
  box-shadow: none;
  transform: none;
}

body.bekor-theme .article-card.blog-card:hover {
  border-color: var(--orange);
  box-shadow: 0 12px 32px rgba(var(--accent-rgb), .08);
  transform: none;
}

body.bekor-theme .article-card.blog-card .blog-card-body {
  padding: 24px;
}

body.bekor-theme .article-card.blog-card .blog-card-more {
  margin-top: auto;
  padding-top: 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
}

body.bekor-theme .article-card.blog-card .blog-card-more svg {
  width: 12px;
  height: 12px;
  stroke: var(--orange);
  stroke-width: 2;
}

/* Pagination follows the same geometry and state colors as the Projects pagination. */
body.bekor-theme .blog-pagination {
  gap: 8px;
  margin-top: 46px;
}

body.bekor-theme .blog-pagination-item > * {
  min-width: 44px;
  height: 44px;
  padding: 0 13px;
  border: 1px solid #d7e0e5;
  background: #fff;
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

body.bekor-theme .blog-pagination-item a:hover {
  border-color: var(--orange);
  background: #fff;
  color: var(--orange);
}

body.bekor-theme .blog-pagination-item .current {
  border-color: var(--black);
  background: var(--black);
  color: #fff;
}

/* Single article header uses the same proportions as a single Project page. */
body.bekor-theme .blog-single-hero {
  padding: 24px 0 70px;
}

body.bekor-theme .blog-breadcrumbs {
  padding-top: 0;
  margin-bottom: 38px;
  color: #6b7c85;
}

body.bekor-theme .blog-breadcrumbs a {
  color: #52656f;
}

body.bekor-theme .blog-breadcrumbs a:hover {
  color: var(--orange);
}

body.bekor-theme .blog-breadcrumbs svg {
  stroke: #9aa8af;
}

body.bekor-theme .blog-breadcrumbs > span {
  color: #75858d;
}

body.bekor-theme .blog-single-hero-grid {
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 54px;
  align-items: center;
}

body.bekor-theme .blog-single-copy h1 {
  max-width: none;
  margin: 14px 0 20px;
  color: var(--black);
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1.04;
  letter-spacing: normal;
}

body.bekor-theme .blog-single-lead {
  max-width: 680px;
  margin: 0 0 26px;
  color: #566871;
  font-size: 17px;
  line-height: 1.7;
}

body.bekor-theme .blog-single-meta {
  margin-top: 0;
}

body.bekor-theme .blog-single-media {
  aspect-ratio: 4 / 3;
  border: 1px solid #dfe7ec;
  background: #e9eef1;
}

body.bekor-theme .blog-single-media::before {
  content: none;
}

/* Article reading area stays inside the site's existing neutral palette. */
body.bekor-theme .blog-article-content {
  color: #50616b;
}

body.bekor-theme .blog-article-content h2,
body.bekor-theme .blog-article-content h3,
body.bekor-theme .blog-article-content h4 {
  color: var(--black);
}

body.bekor-theme .blog-article-content strong {
  color: #243842;
}

body.bekor-theme .blog-article-content blockquote {
  color: #243842;
}

body.bekor-theme .blog-article-content th {
  background: var(--bekor-bg-tint);
  color: var(--black);
}

body.bekor-theme .blog-aside-card {
  background: var(--black-2);
}

body.bekor-theme .blog-aside-kicker,
body.bekor-theme .blog-aside-card p {
  color: var(--gray-2);
}

@media (max-width: 1100px) {
  body.bekor-theme .blog-single-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
    gap: 38px;
  }
}

@media (max-width: 820px) {
  body.bekor-theme .blog-single-hero-grid {
    grid-template-columns: 1fr;
  }

  body.bekor-theme .blog-single-hero {
    padding-bottom: 52px;
  }

  body.bekor-theme .blog-single-media {
    order: -1;
    max-width: none;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 680px) {
  body.bekor-theme .article-card.blog-card .blog-card-body {
    padding: 18px;
  }

  body.bekor-theme .blog-pagination {
    gap: 6px;
    margin-top: 36px;
  }

  body.bekor-theme .blog-pagination-item > * {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
  }

  body.bekor-theme .blog-single-copy h1 {
    font-size: 32px;
  }
}


/* blog archive corrections. */
body.bekor-theme .blog-page-hero .blog-hero-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  width: fit-content;
  margin-top: 28px;
}

body.bekor-theme .blog-page-hero .blog-hero-controls .blog-hero-count,
body.bekor-theme .blog-page-hero .blog-hero-controls .blog-hero-button {
  margin-top: 0;
}

/* The archive card title is intentionally not a heading element. */
body.bekor-theme .article-card.blog-card .article-card-title {
  display: block;
  margin: 0 0 10px;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

@media (max-width: 576px) {
  body.bekor-theme .blog-page-hero .blog-hero-controls {
    gap: 20px;
    margin-top: 24px;
  }

  body.bekor-theme .article-card.blog-card .article-card-title {
    font-size: 16px;
  }
}


/* article source sync, reading UX and heading cleanup. */
body.bekor-theme .blog-content-main {
  min-width: 0;
}

body.bekor-theme .blog-single-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
}

body.bekor-theme .blog-single-meta span {
  margin: 0;
}

body.bekor-theme .blog-article-toc {
  margin: 0 0 38px;
  padding: 28px 30px 26px;
  border: 1px solid #dce5e9;
  border-left: 4px solid var(--orange);
  background: #fff;
}

body.bekor-theme .blog-toc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

body.bekor-theme .blog-toc-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  background: var(--black);
  color: #fff;
}

body.bekor-theme .blog-toc-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .blog-toc-title {
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

body.bekor-theme .blog-toc-list {
  counter-reset: article-toc;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.bekor-theme .blog-toc-list li {
  counter-increment: article-toc;
  position: relative;
  min-width: 0;
  margin: 0;
  border-top: 1px solid #edf1f3;
}

body.bekor-theme .blog-toc-list li::before {
  content: counter(article-toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 13px;
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
}

body.bekor-theme .blog-toc-list li a {
  display: block;
  padding: 12px 6px 12px 34px;
  color: #405660;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

body.bekor-theme .blog-toc-list li a:hover {
  color: var(--orange);
  transform: translateX(2px);
}

body.bekor-theme .blog-toc-list li.is-level-3 a {
  color: #6a7a82;
  font-size: 13px;
  font-weight: 500;
}

body.bekor-theme .blog-article-content h2,
body.bekor-theme .blog-article-content h3,
body.bekor-theme .blog-article-content h4 {
  scroll-margin-top: 118px;
}

body.bekor-theme .blog-article-aside {
  align-self: start;
  top: 100px;
}

body.bekor-theme .blog-aside-card {
  min-height: 0;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.08);
  border-top: 4px solid var(--orange);
  background: var(--black-2);
  box-shadow: 0 18px 48px rgba(12, 30, 40, .12);
}

body.bekor-theme .blog-aside-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

body.bekor-theme .blog-aside-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
}

body.bekor-theme .blog-aside-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .blog-aside-kicker {
  margin: 0 0 5px;
  color: #aebdc5;
  font-size: 10px;
}

body.bekor-theme .blog-aside-title {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.18;
}

body.bekor-theme .blog-aside-card > p {
  margin: 18px 0 16px;
  color: #d5dfe4;
  font-size: 14px;
  line-height: 1.65;
}

body.bekor-theme .blog-aside-benefits {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

body.bekor-theme .blog-aside-benefits li {
  position: relative;
  margin: 0;
  padding-left: 20px;
  color: #c6d2d8;
  font-size: 13px;
  line-height: 1.55;
}

body.bekor-theme .blog-aside-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  background: var(--orange);
}

body.bekor-theme .blog-aside-nav {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  margin-top: 14px;
  padding: 15px 16px;
  border: 1px solid #dce5e9;
  background: #fff;
  color: var(--black);
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}

body.bekor-theme .blog-aside-nav:hover {
  border-color: var(--orange);
  background: #fffaf7;
}

body.bekor-theme .blog-aside-nav-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: var(--bekor-bg-tint);
  color: var(--orange);
}

body.bekor-theme .blog-aside-nav-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.bekor-theme .blog-aside-nav small,
body.bekor-theme .blog-aside-nav strong {
  display: block;
}

body.bekor-theme .blog-aside-nav small {
  margin-bottom: 3px;
  color: #7b8a92;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.bekor-theme .blog-aside-nav strong {
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

body.bekor-theme .blog-related-section .article-card-title {
  display: block;
}

body.bekor-theme .blog-mobile-consult {
  display: none;
}

body.bekor-theme .footer .footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

@media (max-width: 920px) {
  body.bekor-theme .blog-toc-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body.bekor-theme .blog-content-layout {
    display: block;
  }

  body.bekor-theme .blog-article-aside {
    display: none;
  }

  body.bekor-theme .blog-mobile-consult {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 990;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 16px 0 13px;
    border: 0;
    border-radius: 999px;
    background: var(--orange);
    color: #fff;
    box-shadow: 0 14px 34px rgba(14, 39, 50, .26);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
  }

  body.bekor-theme .blog-mobile-consult svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}

@media (max-width: 576px) {
  body.bekor-theme .blog-article-toc {
    margin-bottom: 30px;
    padding: 22px 20px 18px;
  }

  body.bekor-theme .blog-toc-title {
    font-size: 21px;
  }

  body.bekor-theme .blog-toc-list li a {
    padding-top: 11px;
    padding-bottom: 11px;
    font-size: 13px;
  }

  body.bekor-theme .blog-mobile-consult {
    right: 12px;
    bottom: 12px;
    min-height: 46px;
    padding-right: 14px;
  }
}


/* clean article content, ordered TOC and source dates. */
body.bekor-theme .blog-single-meta {
  margin-top: 30px;
}

body.bekor-theme .blog-toc-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
}

body.bekor-theme .blog-toc-list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.bekor-theme .blog-toc-list li {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 6px;
  align-items: start;
  min-width: 0;
  margin: 0;
  border-top: 1px solid #edf1f3;
}

body.bekor-theme .blog-toc-list li::before {
  content: none;
}

body.bekor-theme .blog-toc-number {
  display: block;
  padding-top: 13px;
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .06em;
}

body.bekor-theme .blog-toc-list li a {
  padding: 12px 6px 12px 0;
}

body.bekor-theme .blog-aside-card {
  border-color: rgba(255,255,255,.14);
  border-top-color: var(--orange);
  background: #1d3d4d;
  color: #fff;
}

body.bekor-theme .blog-aside-kicker {
  color: #dbe8ee;
}

body.bekor-theme .blog-aside-title {
  color: #fff;
}

body.bekor-theme .blog-aside-card > p {
  color: #e5eef2;
}

body.bekor-theme .blog-aside-benefits li {
  color: #f0f5f8;
}

.request-modal .request-modal-title {
  margin: 10px 48px 10px 0;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.12;
}

@media (max-width: 920px) {
  body.bekor-theme .blog-toc-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  body.bekor-theme .blog-single-meta {
    margin-top: 24px;
  }

  .request-modal .request-modal-title {
    margin-right: 44px;
    font-size: 30px;
  }
}

/* article reading column width. */
@media (min-width: 1181px) {
  body.bekor-theme .blog-content-layout {
    grid-template-columns: minmax(0, 900px) minmax(280px, 340px);
    gap: 48px;
  }

  body.bekor-theme .blog-content-main,
  body.bekor-theme .blog-article-content {
    width: 100%;
    max-width: none;
  }
}


/* hierarchical article TOC, archive rhythm and desktop menu spacing. */
/* Keep all TOC entries visually equal; hierarchy is expressed by numbering only. */
body.bekor-theme .blog-toc-list li {
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 8px;
}

body.bekor-theme .blog-toc-number {
  padding-top: 12px;
  color: var(--orange);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .02em;
  white-space: nowrap;
}

body.bekor-theme .blog-toc-list li a,
body.bekor-theme .blog-toc-list li.is-level-3 a,
body.bekor-theme .blog-toc-list li.is-level-4 a {
  padding: 12px 6px 12px 0;
  color: #405660;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

/* Avoid stacking the generic section-sub margin with the archive heading gap. */
body.bekor-theme .blog-list-heading .section-sub {
  margin-bottom: 0;
}

body.bekor-theme .blog-list-heading {
  margin-bottom: 44px;
}

/* On desktop the dropdown arrow should not create extra visual space to the right. */
@media (min-width: 1321px) {
  body.bekor-theme .header .nav-item.has-dropdown {
    gap: 3px;
  }

  body.bekor-theme .header .nav-item.has-dropdown > .submenu-toggle {
    flex: 0 0 14px;
    width: 14px;
    height: 28px;
    margin: 0;
  }

  body.bekor-theme .header .nav-item.has-dropdown > .submenu-toggle .caret {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 576px) {
  body.bekor-theme .blog-toc-list li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 6px;
  }

  body.bekor-theme .blog-toc-number,
  body.bekor-theme .blog-toc-list li a,
  body.bekor-theme .blog-toc-list li.is-level-3 a,
  body.bekor-theme .blog-toc-list li.is-level-4 a {
    font-size: 13px;
  }

  body.bekor-theme .blog-list-heading {
    margin-bottom: 34px;
  }
}

/* category copy width and construction image balance. */
body.bekor-theme.page-template-template-category .section-sub,
body.bekor-theme.page-template-template-category-php .section-sub {
  width: 100%;
  max-width: none;
}

body.bekor-theme.page-template-template-category .universal-sample-block .sample-copy > p,
body.bekor-theme.page-template-template-category-php .universal-sample-block .sample-copy > p,
body.bekor-theme.page-template-template-category .universal-contact-block .info > p,
body.bekor-theme.page-template-template-category-php .universal-contact-block .info > p {
  width: 100%;
  max-width: none;
}

@media (min-width: 821px) {
  body.bekor-theme .category-content-row.has-image {
    min-height: 0;
    align-items: stretch;
  }

  body.bekor-theme .category-content-row.has-image .category-content-media {
    position: relative;
    min-height: 0;
    height: auto;
  }

  body.bekor-theme .category-content-row.has-image .category-content-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 820px) {
  body.bekor-theme .category-content-row.has-image .category-content-media {
    position: relative;
    min-height: 280px;
  }

  body.bekor-theme .category-content-row.has-image .category-content-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  body.bekor-theme .category-content-row.has-image .category-content-media {
    min-height: 230px;
  }
}

/* product certificates and product image lightbox. */
body.bekor-theme .product-document-card {
  padding: 0;
  overflow: hidden;
  background: #fff;
}
body.bekor-theme .product-document-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  padding: 18px;
  overflow: hidden;
  border-bottom: 1px solid #dfe7ec;
  background: #f3f6f8;
}
body.bekor-theme .product-document-preview img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain;
  transition: transform .24s ease;
}
body.bekor-theme .product-document-preview:hover img,
body.bekor-theme .product-document-preview:focus-visible img {
  transform: scale(1.018);
}
body.bekor-theme .product-document-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-bottom: 1px solid #dfe7ec;
  background: #f3f6f8;
  color: #8a9aa3;
}
body.bekor-theme .product-document-placeholder svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.bekor-theme .product-document-heading,
body.bekor-theme .product-document-card > p,
body.bekor-theme .product-document-action {
  margin-left: 24px;
  margin-right: 24px;
}
body.bekor-theme .product-document-heading {
  margin-top: 22px;
}
body.bekor-theme .product-document-card > p {
  margin-bottom: 18px;
}
body.bekor-theme .product-document-action {
  margin-top: auto;
  margin-bottom: 24px;
}

/* Product photos use the available viewport instead of opening at a tiny natural size. */
.bekor-lightbox.is-product-gallery .bekor-lightbox-dialog {
  width: min(1380px, 100%);
  max-height: calc(100vh - 56px);
}
.bekor-lightbox.is-product-gallery .bekor-lightbox-media {
  width: 100%;
  height: min(82vh, 880px);
  min-width: 0;
  max-width: 100%;
  max-height: calc(100vh - 72px);
  padding: 18px;
  background: #f4f7f8;
}
.bekor-lightbox.is-product-gallery .bekor-lightbox-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
}
@media (max-width: 700px) {
  body.bekor-theme .product-document-heading,
  body.bekor-theme .product-document-card > p,
  body.bekor-theme .product-document-action {
    margin-left: 18px;
    margin-right: 18px;
  }
  body.bekor-theme .product-document-action {
    margin-bottom: 20px;
  }
  .bekor-lightbox.is-product-gallery .bekor-lightbox-media {
    width: 100%;
    height: calc(100vh - 110px);
    max-height: calc(100vh - 110px);
    padding: 8px;
  }
  .bekor-lightbox.is-product-gallery .bekor-lightbox-media img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
  }
}

/* keep lightbox media in the center grid column. */
.bekor-lightbox-dialog > .bekor-lightbox-prev {
  grid-column: 1;
  grid-row: 1;
}
.bekor-lightbox-dialog > .bekor-lightbox-media {
  grid-column: 2;
  grid-row: 1;
}
.bekor-lightbox-dialog > .bekor-lightbox-next {
  grid-column: 3;
  grid-row: 1;
}


/* category hero accent and category applications restoration. */
body.bekor-theme .category-hero h1 .accent {
  color: var(--orange);
}


/* compact eurocube product card meta. */
body.bekor-theme .category-products .product-position-top-compact {
  justify-content: flex-start;
  margin-bottom: 18px;
}
body.bekor-theme .category-products .product-size-full {
  display: block;
  width: 100%;
  min-width: 0;
  color: #60717b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  white-space: normal;
  overflow-wrap: anywhere;
}


/* safe product detail overflow fix. */
body.bekor-theme .product-detail-fact,
body.bekor-theme .product-detail-features li {
  min-width: 0;
}
body.bekor-theme .product-detail-fact strong,
body.bekor-theme .product-detail-fact span,
body.bekor-theme .product-detail-features li span {
  overflow-wrap: anywhere;
  word-break: normal;
}
body.bekor-theme .product-detail-features li {
  min-height: 0;
  height: auto;
  align-items: flex-start;
}
body.bekor-theme .product-purchase-panel .product-detail-price strong {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.05;
}
body.bekor-theme .product-purchase-panel .btn {
  min-width: 0;
}
@media (max-width: 1180px) and (min-width: 521px) {
  body.bekor-theme .product-detail-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.bekor-theme .product-purchase-panel {
    grid-template-columns: 1fr;
  }
  body.bekor-theme .product-purchase-panel .product-detail-price {
    align-items: flex-start;
    padding: 2px 4px 8px;
  }
}


/* single-line product price and centered cart button. */
body.bekor-theme .product-purchase-panel {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
body.bekor-theme .product-purchase-panel .product-detail-price strong {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(28px, 2.55vw, 38px);
  line-height: 1;
}
body.bekor-theme .product-purchase-panel .product-order-main {
  width: auto;
  min-width: 220px;
  min-height: 58px;
  align-self: center;
  justify-self: end;
  padding-top: 14px;
  padding-bottom: 14px;
}
body.bekor-theme .product-purchase-panel .product-quick-order-main {
  align-self: center;
}
@media (max-width: 1180px) and (min-width: 521px) {
  body.bekor-theme .product-purchase-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  body.bekor-theme .product-purchase-panel .product-order-main {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}
@media (max-width: 520px) {
  body.bekor-theme .product-purchase-panel .product-detail-price strong {
    font-size: clamp(26px, 8.2vw, 34px);
  }
  body.bekor-theme .product-purchase-panel .product-order-main {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}


/* mobile product purchase layout. */
@media (max-width: 520px) {
  body.bekor-theme .product-purchase-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  body.bekor-theme .product-purchase-panel .product-detail-price {
    width: 100%;
    min-width: 0;
    padding: 2px 4px 8px;
  }
  body.bekor-theme .product-purchase-panel .product-detail-price strong {
    max-width: 100%;
    font-size: clamp(24px, 8vw, 32px);
    white-space: nowrap;
  }
  body.bekor-theme .product-purchase-panel .product-order-main,
  body.bekor-theme .product-purchase-panel .product-quick-order-main {
    grid-column: 1;
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}

/* preserve price style and allow range-only wrapping. */
body.bekor-theme .product-purchase-panel .product-detail-price strong.is-single {
  white-space: nowrap;
}
body.bekor-theme .product-purchase-panel .product-detail-price strong.is-range {
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}


/* legal documents, cookie notice. */
body.bekor-theme.bekor-legal-page .page-generic .container {
  width: 100%;
  max-width: 1320px;
}
body.bekor-theme.bekor-legal-page .page-generic article {
  width: 100%;
  padding: 42px 48px 50px;
  border: 1px solid rgba(22, 48, 60, .10);
  background: #fff;
  box-shadow: 0 18px 50px rgba(22, 48, 60, .06);
}
body.bekor-theme.bekor-legal-page .page-generic h1 {
  margin-bottom: 34px;
  color: var(--black);
  line-height: 1.08;
}
body.bekor-theme.bekor-legal-page .entry-content {
  color: #415660;
  font-size: 16px;
  line-height: 1.72;
}
body.bekor-theme.bekor-legal-page .entry-content h2 {
  margin: 38px 0 14px;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
}
body.bekor-theme.bekor-legal-page .entry-content h2:first-child {
  margin-top: 0;
}

.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 10040;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(720px, calc(100vw - 48px));
  padding: 20px 22px;
  border: 1px solid rgba(22, 48, 60, .13);
  background: rgba(255, 255, 255, .98);
  color: #40545e;
  box-shadow: 0 22px 64px rgba(10, 31, 42, .22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.cookie-notice.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.cookie-notice-copy {
  min-width: 0;
}
.cookie-notice-copy strong {
  display: block;
  margin-bottom: 5px;
  color: var(--black);
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}
.cookie-notice-copy span {
  display: block;
  font-size: 13px;
  line-height: 1.55;
}
.cookie-notice-copy a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-notice-accept {
  min-width: 138px;
  min-height: 46px;
  justify-content: center;
  white-space: nowrap;
}

@media (max-width: 680px) {
  body.bekor-theme.bekor-legal-page .page-generic .container {
    width: 100%;
    max-width: 1320px;
  }
  body.bekor-theme.bekor-legal-page .page-generic article {
    padding: 28px 22px 34px;
  }
  body.bekor-theme.bekor-legal-page .page-generic h1 {
    margin-bottom: 26px;
    font-size: 36px;
  }
  body.bekor-theme.bekor-legal-page .entry-content h2 {
    margin-top: 30px;
    font-size: 23px;
  }
  .cookie-notice {
    left: 50%;
    bottom: 10px;
    grid-template-columns: 1fr;
    gap: 10px;
    width: calc(100vw - 20px);
    padding: 12px 14px;
  }
  .cookie-notice-copy strong {
    margin-bottom: 3px;
    font-size: 16px;
  }
  .cookie-notice-copy span {
    font-size: 12px;
    line-height: 1.42;
  }
  .cookie-notice-accept {
    width: auto;
    min-width: 0;
    min-height: 36px;
    padding: 8px 14px;
    justify-self: start;
    font-size: 13px;
    line-height: 1;
  }
}

/* centered compact cookie notice and full legal content width. */


/* legal container width and smaller mobile cookie button. */
body.bekor-theme.bekor-legal-page .page-generic .container {
  max-width: 1400px;
}

@media (max-width: 680px) {
  body.bekor-theme.bekor-legal-page .page-generic .container {
    max-width: 1400px;
  }

  .cookie-notice-accept {
    min-height: 30px;
    padding: 5px 10px;
    font-size: 11px;
    line-height: 1;
  }
}


/* readable lists on text pages. */
body.bekor-theme.bekor-legal-page .entry-content ul,
body.bekor-theme.bekor-legal-page .entry-content ol {
  margin: 14px 0 22px;
  padding-left: 28px;
  list-style-position: outside;
}
body.bekor-theme.bekor-legal-page .entry-content ul {
  list-style-type: disc;
}
body.bekor-theme.bekor-legal-page .entry-content ol {
  list-style-type: decimal;
}
body.bekor-theme.bekor-legal-page .entry-content li {
  padding-left: 4px;
}
body.bekor-theme.bekor-legal-page .entry-content li + li {
  margin-top: 5px;
}
body.bekor-theme.bekor-legal-page .entry-content li > ul,
body.bekor-theme.bekor-legal-page .entry-content li > ol {
  margin-top: 7px;
  margin-bottom: 7px;
}

@media (max-width: 680px) {
  body.bekor-theme.bekor-legal-page .entry-content ul,
  body.bekor-theme.bekor-legal-page .entry-content ol {
    padding-left: 22px;
  }
}

/* GTranslate integration for the existing Bekor RU / EN controls. */
.bekor-language-switcher > a[data-gt-lang],
.lang-switch > a[data-gt-lang] {
  display: inline-flex;
  min-width: 34px;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #60717a;
  font: 700 11px/1 'Inter', sans-serif;
  letter-spacing: .08em;
  text-decoration: none;
  cursor: pointer;
}
.bekor-language-switcher > a[data-gt-lang]:hover,
.bekor-language-switcher > a[data-gt-lang]:focus-visible {
  color: var(--orange);
}
.bekor-language-switcher > a[data-gt-lang].gt-current-lang,
.bekor-language-switcher > a[data-gt-lang].is-active,
.lang-switch > a[data-gt-lang].gt-current-lang,
.lang-switch > a[data-gt-lang].is-active {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), .22);
}
.bekor-language-switcher > a[data-gt-lang].gt-current-lang:hover,
.bekor-language-switcher > a[data-gt-lang].is-active:hover {
  color: #fff;
}
.lang-switch .lang-option.is-disabled,
.mobile-nav-language .lang-option.is-disabled {
  cursor: default;
  opacity: .55;
}
.mobile-nav-language > a[data-gt-lang] {
  display: inline-flex;
  min-width: 32px;
  height: 28px;
  align-items: center;
  justify-content: center;
  padding: 0 7px !important;
  border-radius: 999px;
  background: transparent;
  color: #5e7079 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1;
  letter-spacing: .07em;
  text-decoration: none;
  cursor: pointer;
}
.mobile-nav-language > a[data-gt-lang]::after {
  display: none !important;
}
.mobile-nav-language > a[data-gt-lang].gt-current-lang,
.mobile-nav-language > a[data-gt-lang].is-active {
  background: var(--orange);
  color: #fff !important;
}

@media (max-width: 576px) {
  .lang-switch > a[data-gt-lang] {
    min-width: 27px;
    height: 26px;
    padding: 0 5px;
    font-size: 10px;
  }
}

