:root {
      --bg: #181515;
      --bg-soft: #221d1c;
      --bg-card: #241f1d;
      --accent: #ff3a33;
      --accent-soft: rgba(255,58,51,.15);
      --text: #f7f4f2;
      --muted: #b4aba6;
      --border: #3a302f;
      --radius-lg: 20px;
      --radius-md: 14px;
      --max-width: 1220px;
    }
    *{box-sizing:border-box}
    body{
      margin:0;
      font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
      background:#120f0f;
      color:var(--text);
      -webkit-font-smoothing:antialiased;
    }
    a{text-decoration:none;color:inherit}
    img{max-width:100%;display:block}
    .container{
      max-width:var(--max-width);
      margin:0 auto;
      padding:0 16px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      padding:12px 24px;
      border-radius:999px;
      font-weight:600;
      font-size:14px;
      border:1px solid transparent;
      background:linear-gradient(135deg,#ff5a3c,#ff2a38);
      color:#fff;
      box-shadow:0 10px 26px rgba(0,0,0,.6);
      cursor:pointer;
      transition:.18s ease;
      white-space:nowrap;
    }
    .btn span{font-size:18px;line-height:0}
    .btn:hover{transform:translateY(-1px);filter:brightness(1.05)}
    .btn-outline{
      background:transparent;
      color:#fff;
      border-color:rgba(255,255,255,.2);
      box-shadow:none;
    }
    .btn-outline:hover{
      background:rgba(255,255,255,.05);
      box-shadow:0 6px 18px rgba(0,0,0,.6);
    }
    .tag{
      display:inline-flex;
      align-items:center;
      padding:3px 10px;
      font-size:11px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(0,0,0,.25);
      color:var(--muted);
    }
    .section{
      padding:60px 0;
    }
    .section-header{
      margin-bottom:26px;
    }
    .section-kicker{
      font-size:13px;
      letter-spacing:.16em;
      text-transform:uppercase;
      color:var(--muted);
      margin-bottom:6px;
    }
    .section-title{
      font-size:26px;
      letter-spacing:-.02em;
      margin:0 0 10px;
    }
    .section-title span{color:var(--accent)}
    .section-text{
      font-size:14px;
      color:var(--muted);
      max-width:640px;
    }
    @media(min-width:900px){
      .section{padding:80px 0}
      .section-title{font-size:30px}
    }

    .header{
      position:sticky;
      top:0;
      z-index:20;
      background:rgba(12,9,9,.96);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:10px 0;
      gap:14px;
    }
    .logo-row{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .logo-circle{
      width:46px;
  
      border-radius:50%;
      overflow:hidden;
      background:#000;
      border:2px solid #fff;
    }
    .logo-text{
      display:flex;
      flex-direction:column;
      gap:2px;
    }
    .logo-name{
      font-size:13px;
      font-weight:600;
      letter-spacing:.14em;
      text-transform:uppercase;
    }
    .logo-sub{
      font-size:11px;
      color:var(--muted);
    }
    .nav{
      display:none;
      gap:16px;
      font-size:13px;
      color:var(--muted);
    }
    .nav a{
      padding:4px 0;
    }
    .nav a:hover{color:#fff}
    .header-right{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .header-phone{
      display:none;
      flex-direction:column;
      align-items:flex-end;
      font-size:11px;
      color:var(--muted);
    }
    .header-phone strong{
      font-size:13px;
      color:#fff;
    }
    @media(min-width:960px){
      .nav{display:flex}
      .header-phone{display:flex}
    }

    .hero{
      padding:40px 0 40px;
      background:#1a1514;
    }
    .hero-inner{
      display:grid;
      grid-template-columns:1.1fr 0.9fr;
      gap:30px;
      align-items:center;
    }
    @media(max-width:900px){
      .hero-inner{grid-template-columns:1fr;gap:26px}
    }
    .hero-kicker{
      font-size:12px;
      color:var(--muted);
      letter-spacing:.15em;
      text-transform:uppercase;
      margin-bottom:8px;
    }
    .hero-title{
      font-size:28px;
      letter-spacing:-.03em;
      margin:0 0 10px;
    }
    .hero-title span{color:var(--accent)}
    @media(min-width:900px){
      .hero-title{font-size:34px}
    }
    .hero-sub{
      font-size:14px;
      color:var(--muted);
      margin-bottom:16px;
      max-width:520px;
    }
    .hero-list{
      list-style:none;
      margin:0 0 18px;
      padding:0;
      font-size:14px;
      color:var(--muted);
    }
    .hero-list li{
      display:flex;
      gap:8px;
      margin-bottom:6px;
    }
    .hero-bullet{
      width:18px;
      height:18px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.5);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:11px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin-bottom:16px;
    }
    .hero-note{
      font-size:12px;
      color:var(--muted);
    }
    .hero-kit{
      background:#231c1b;
      border-radius:var(--radius-lg);
      border:1px solid var(--border);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
      box-shadow:0 20px 40px rgba(0,0,0,.8);
    }
    .hero-kit-top{
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:flex-start;
    }
    .hero-kit-text{
      font-size:13px;
      color:var(--muted);
    }
    .hero-kit-badge{
      font-size:11px;
      padding:4px 10px;
      border-radius:999px;
      background:var(--accent-soft);
      color:#fff;
    }
    .hero-kit-image{
      width:180px;
      max-width:45%;
      margin-left:auto;
    }
    .hero-kit-foot{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      font-size:11px;
      color:var(--muted);
    }

    .benefits-box{
      margin-top:26px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
      font-size:13px;
    }
    @media(max-width:720px){
      .benefits-box{grid-template-columns:1fr}
    }
    .benefit-card{
      border-radius:var(--radius-md);
      background:#211a19;
      border:1px solid var(--border);
      padding:14px;
    }
    .benefit-title{
      font-size:14px;
      font-weight:600;
      margin-bottom:8px;
    }
    .benefit-list{
      list-style:none;
      padding:0;
      margin:0;
      color:var(--muted);
    }
    .benefit-list li{
      display:flex;
      gap:8px;
      margin-bottom:5px;
    }
    .benefit-mark{
      color:#6bff8f;
      font-size:14px;
    }

    .about-grid{
      grid-template-columns:1.1fr 0.9fr;
      gap:26px;
      align-items:flex-start;
    }
    @media(max-width:900px){
      .about-grid{grid-template-columns:1fr}
    }
    .facts-list{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    @media(max-width:720px){
      .facts-list{grid-template-columns:1fr}
    }
    .fact-card{
      border-radius:var(--radius-md);
      background:var(--bg-card);
      border:1px solid var(--border);
      padding:14px;
      font-size:13px;
    }
    .fact-label{
      font-size:11px;
      letter-spacing:.16em;
      text-transform:uppercase;
      color:var(--muted);
      margin-bottom:4px;
    }
    .fact-value{
      font-weight:600;
      margin-bottom:4px;
    }
    .fact-text{
      color:var(--muted);
    }
    .owner-card{
      border-radius:var(--radius-lg);
      background:#211a19;
      border:1px solid var(--border);
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .owner-top{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .owner-photo{
      width:70px;
      height:70px;
      border-radius:18px;
      background:#000;
      overflow:hidden;
    }
    .owner-info{
      display:flex;
      flex-direction:column;
      gap:3px;
    }
    .owner-name{
      font-size:14px;
      font-weight:600;
    }
    .owner-role{
      font-size:12px;
      color:var(--muted);
    }
    .owner-video{
      position:relative;
      border-radius:var(--radius-md);
      overflow:hidden;
      background:#000;
    }
    .owner-video::before{
      content:"";
      display:block;
      padding-bottom:56.25%;
    }
    .owner-video-play{
      position:absolute;
      inset:0;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .owner-video-play button{
      width:64px;
      height:64px;
      border-radius:50%;
      border:none;
      cursor:pointer;
      background:linear-gradient(135deg,#ff5a3c,#ff2a38);
      box-shadow:0 18px 40px rgba(0,0,0,.8);
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .owner-video-play button span{
      margin-left:3px;
      border-style:solid;
      border-width:9px 0 9px 14px;
      border-color:transparent transparent transparent #fff;
    }
    .owner-note{
      font-size:12px;
      color:var(--muted);
    }

    .horizontal-scroll{
      display:flex;
      gap:14px;
      overflow-x:auto;
      padding-bottom:4px;
      scrollbar-width:thin;
    }
    .horizontal-scroll::-webkit-scrollbar{
      height:6px;
    }
    .horizontal-scroll::-webkit-scrollbar-thumb{
      background:#3c3331;
      border-radius:999px;
    }
    .machine-card{
      min-width:220px;
      max-width:260px;
      flex:0 0 auto;
      border-radius:var(--radius-md);
      background:var(--bg-card);
      border:1px solid var(--border);
      padding:14px;
      font-size:13px;
    }
    .machine-name{
      font-size:14px;
      font-weight:600;
      margin-bottom:4px;
    }
    .machine-img{
      border-radius:var(--radius-md);
      background:#111;
      margin:8px 0;
      height:160px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--muted);
      font-size:12px;
    }
    .machine-meta{
      color:var(--muted);
      margin-bottom:8px;
    }
    .machine-foot{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      margin-top:4px;
    }
    .machine-price{
      font-size:12px;
      color:var(--muted);
    }
    .machine-price span{
      color:#9dfba4;
      font-weight:600;
    }

    .bundle-card{
      min-width:240px;
      max-width:280px;
      flex:0 0 auto;
      border-radius:var(--radius-md);
      background:var(--bg-card);
      border:1px solid var(--border);
      padding:14px;
      font-size:13px;
    }
    .bundle-name{
      font-size:14px;
      font-weight:600;
      margin-bottom:4px;
    }
    .bundle-img{
      height:150px;
      border-radius:var(--radius-md);
      background:#151111;
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--muted);
      font-size:12px;
      margin:8px 0;
    }
    .bundle-meta{
      color:var(--muted);
      margin-bottom:6px;
    }

    .activity-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }
    @media(max-width:960px){
      .activity-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media(max-width:640px){
      .activity-grid{grid-template-columns:1fr}
    }
    .activity-card{
      border-radius:var(--radius-md);
      background:var(--bg-card);
      border:1px solid var(--border);
      padding:14px;
      font-size:13px;
      cursor:pointer;
      transition:.18s ease;
    }
    .activity-card:hover{
      border-color:var(--accent);
      box-shadow:0 12px 30px rgba(0,0,0,.7);
      transform:translateY(-2px);
    }
    .activity-name{
      font-weight:600;
      margin-bottom:6px;
    }
    .activity-text{
      color:var(--muted);
    }

    .promo-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:26px;
      align-items:center;
    }
    @media(max-width:900px){
      .promo-row{grid-template-columns:1fr}
    }
    .promo-card{
      border-radius:var(--radius-lg);
      background:var(--bg-card);
      border:1px solid var(--border);
      padding:18px;
      font-size:13px;
    }
    .promo-img{
      margin-top:10px;
      height:170px;
      border-radius:var(--radius-md);
      background:#151111;
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--muted);
      font-size:12px;
    }

    .form-section{
      background:#201b19;
    }
    .form-row{
      display:grid;
      grid-template-columns:1.05fr 0.95fr;
      gap:26px;
      align-items:center;
    }
    @media(max-width:900px){
      .form-row{grid-template-columns:1fr}
    }
    .form-card{
      border-radius:var(--radius-lg);
      background:#181313;
      border:1px solid var(--border);
      padding:18px 18px 16px;
    }
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
    }
    @media(max-width:720px){
      .form-grid{grid-template-columns:1fr}
    }
    .form-field{
      display:flex;
      flex-direction:column;
      gap:4px;
      font-size:12px;
      color:var(--muted);
    }
    .form-field.full{grid-column:1/-1}
    .input,select,textarea{
      border-radius:999px;
      border:1px solid rgba(255,255,255,.2);
      background:#120f0f;
      color:var(--text);
      padding:9px 11px;
      font-size:13px;
      outline:none;
    }
    textarea{
      border-radius:16px;
      min-height:80px;
      resize:vertical;
    }
    .input::placeholder,textarea::placeholder{color:rgba(196,186,180,.85)}
    .form-note{
      margin-top:10px;
      font-size:11px;
      color:var(--muted);
    }
    .form-image{
      border-radius:var(--radius-lg);
      background:#151111 url("form-bg-placeholder.jpg") center/cover no-repeat;
      min-height:260px;
      display:flex;
      align-items:flex-end;
      justify-content:flex-start;
      padding:18px;
      color:var(--muted);
      font-size:13px;
    }

    .clients-section{
      background:#1a1514;
    }
    .clients-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
    }
    @media(max-width:960px){
      .clients-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
    }
    @media(max-width:720px){
      .clients-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    .client-photo{
      border-radius:var(--radius-md);
      background:#151111;
      border:1px solid var(--border);
      height:160px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:12px;
      color:var(--muted);
    }

    .seo-text{
      font-size:13px;
      color:var(--muted);
      line-height:1.6;
      max-width:900px;
    }
    .seo-text p{margin:0 0 10px}

    .contacts-grid{
      display:grid;
      grid-template-columns:0.9fr 1.1fr;
      gap:26px;
    }
    @media(max-width:900px){
      .contacts-grid{grid-template-columns:1fr}
    }
    .contacts-card{
      border-radius:var(--radius-lg);
      background:#181313;
      border:1px solid var(--border);
      padding:18px;
      font-size:13px;
    }
    .contact-row{
      display:flex;
      justify-content:space-between;
      gap:10px;
      padding:6px 0;
      border-bottom:1px dashed rgba(255,255,255,.07);
    }
    .contact-row:last-child{border-bottom:none}
    .contact-label{color:var(--muted);font-size:12px}
    .contact-value a{
      text-decoration:underline;
      text-decoration-style:dotted;
      text-decoration-color:rgba(255,255,255,.4);
    }
    .map{
      border-radius:var(--radius-lg);
      overflow:hidden;
      border:1px solid var(--border);
      min-height:260px;
    }
    .map iframe{
      width:100%;
      height:260px;
      border:0;
    }

    .footer{
      padding:18px 0 20px;
      border-top:1px solid rgba(255,255,255,.16);
      font-size:12px;
      color:var(--muted);
      background:#110e0e;
    }
    .footer-inner{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      justify-content:space-between;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }
    .footer-links a{
      text-decoration:underline;
      text-decoration-style:dotted;
      text-decoration-color:rgba(255,255,255,.4);
    }

    .floating-phone{
      position:fixed;
      right:16px;
      bottom:16px;
      z-index:30;
    }
    .floating-phone-btn{
      width:56px;
      height:56px;
      border-radius:50%;
      background:linear-gradient(135deg,#21c55d,#16a34a);
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 18px 36px rgba(0,0,0,.9);
      cursor:pointer;
      border:2px solid #000;
      animation:wiggle 2.2s infinite ease-in-out;
    }
    .floating-phone-btn span{font-size:26px}
    @keyframes wiggle{
      0%,100%{transform:translateY(0) rotate(0deg)}
      6%{transform:translateY(-2px) rotate(-10deg)}
      12%{transform:translateY(1px) rotate(8deg)}
      18%{transform:translateY(0) rotate(0deg)}
      40%{transform:translateY(0) rotate(0deg)}
    }
    .calculation {
  margin-top: 24px;
  background: #1b1514;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 20px;
  color: #f7f4f2;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.calculation .main-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.calculation .stage1,
.calculation .stage2 {
  background: #231c1b;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 18px 16px;
}

.calculation .stage1 .title,
.calculation .stage2 .title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.calculation .stage1 .title.error,
.calculation .stage2 .title.error {
  color: #ff5a3c;
}

.calculation .stage1 .content,
.calculation .stage2 .content {
  display: grid;
  gap: 12px;
}

.calculation .stage1 .content {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.calculation .stage2 .content {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .calculation .stage2 .content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .calculation .stage1 .content,
  .calculation .stage2 .content {
    grid-template-columns: 1fr;
  }
}

.calculation label {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #271e1d;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: 0.16s ease;
}

.calculation label.is-selected {
  border-color: #ff3a33;
  box-shadow: 0 0 0 1px rgba(255, 58, 51, 0.5);
  transform: translateY(-1px);
}

.calculation label:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.calculation label img[alt^="оренда"],
.calculation label img[alt^="аренда"],
.calculation label img[src*="office"],
.calculation label img[src*="fastfood"],
.calculation label img[src*="produkt"],
.calculation label img[src*="azs"] {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.calculation .stage1 .op {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2) 55%, transparent);
  pointer-events: none;
}

.calculation .stage1 .description {
  position: absolute;
  inset-inline: 12px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calculation .stage1 .description span {
  font-size: 13px;
  line-height: 1.35;
}

.calculation .bold {
  font-weight: 700;
}

/* stage2 labels (без картинок) */

.calculation .stage2 label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #271e1d;
}

.calculation .stage2 label span {
  font-size: 13px;
}

/* кастомные радиокнопки */

.calculation input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calculation .custom-radio {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.calculation .custom-radio img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.12s ease;
}

.calculation .custom-radio .checked {
  opacity: 0;
}

.calculation .custom-radio .unchecked {
  opacity: 1;
}

.calculation .custom-radio .disabled {
  opacity: 0;
}

/* состояние checked */

.calculation input[type="radio"]:checked + .custom-radio .checked {
  opacity: 1;
}

.calculation input[type="radio"]:checked + .custom-radio .unchecked {
  opacity: 0;
}

/* кнопка действия */

.calculation .action-button {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff5a3c, #ff2a38);
  color: #fff;
  cursor: pointer;
  border: 1px solid transparent;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
  transition: 0.16s ease;
}

.calculation .action-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.calculation .action-button.disabled {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}
/* анимация сдвига первого шага при выборе вида деятельности */
.calculation .stage1 {
  transition: margin-left 0.25s ease, opacity 0.25s ease;
}

.calculation .stage1.is-hidden {
  margin-left: -8%;
  opacity: 0.3;
}

/* disabled варианты чашек после фильтрации */
.calculation label.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calculation label.is-disabled input[type="radio"] {
  pointer-events: none;
}

/* кнопка "подобрать" изначально неактивна */
.calculation .action-button {
  opacity: 0.6;
}

.calculation .action-button.visible {
  opacity: 1;
}

/* блок corner */
.corner {
  padding: 60px 0;
  background: #181313;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.corner .content .img-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.corner .content .img-wrapper img {
  display: block;
  max-width: 260px;
  border-radius: 18px;
  background: #151111;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 36px rgba(0,0,0,0.7);
}

/* усиливаем блок кавового куточка */
.hero-kit {
  padding: 20px 20px 18px;
}

/* чуть больше воздуха между текстом и картинкой */
.hero-kit-top {
  align-items: center;
  gap: 20px;
}

/* делаем уголок заметно крупнее на десктопе */
.hero-kit-image {
  flex: 0 0 260px;   /* раньше было 180px */
  max-width: 55%;
  margin-left: auto;
}

.hero-kit-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* на узких экранах — картинка на всю ширину под текстом */
@media (max-width: 900px) {
  .hero-kit-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-kit-image {
    flex: none;
    max-width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}
.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* видео растягиваем по блоку, как фон */
.owner-video {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
}

.owner-video::before {
  content: "";
  display: block;
  padding-bottom: 56.25%; /* 16:9 */
}

.owner-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* оверлей с кнопкой Play уже есть, просто добавим реакцию на play */
.owner-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.owner-video-play button {
  pointer-events: auto;
}

/* когда видео запущено — скрываем кнопку */
.owner-video.is-playing .owner-video-play {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
/* было: object-fit: cover; */
.owner-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;      /* показываем видео целиком */
  object-position: center;  /* центрируем кадр */
  background: #000;         /* чёрные «поля» по краям, если пропорции не совпадают */
}
#machines.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.horizontal-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 16px 4px 8px;
  scroll-snap-type: x mandatory;
}

.horizontal-scroll::-webkit-scrollbar {
  height: 6px;
}
.horizontal-scroll::-webkit-scrollbar-track {
  background: #151212;
}
.horizontal-scroll::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 999px;
}

.machine-card {
  flex: 0 0 280px; /* ширина карточки */
  background: #171515;
  border-radius: 24px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-snap-align: start;
}

.machine-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.machine-img {
  background: #050505;
  border-radius: 18px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.machine-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.machine-meta {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  min-height: 60px;
}

.machine-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.machine-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.machine-price span {
  font-weight: 600;
  color: #ffffff;
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff;
  font-size: 12px;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}
.machine-modal .modal-dialog {
  max-width: 820px;
}

.machine-modal .modal-content {
  background: #111111;
  color: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.machine-modal .modal-header,
.machine-modal .modal-footer {
  border-color: rgba(255, 255, 255, 0.08);
}

.machine-modal .modal-header {
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.machine-modal .modal-title {
  font-size: 18px;
  font-weight: 600;
}

.machine-modal .close-modal {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.machine-modal .close-modal:hover {
  color: #ffffff;
}

.machine-modal .modal-body {
  padding: 20px 22px 16px;
}

.modal-body-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.modal-machine-img {
  flex: 0 0 260px;
  background: #050505;
  border-radius: 18px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-machine-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.modal-machine-text {
  flex: 1 1 260px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.modal-machine-text p + p {
  margin-top: 10px;
}

.machine-modal .modal-footer {
  padding: 14px 22px 18px;
  display: flex;
  justify-content: flex-end;
}

.machine-modal .modal-cta {
  font-size: 13px;
}

/* адаптив под мобилку */
@media (max-width: 768px) {
  .modal-body-inner {
    flex-direction: column;
  }

  .machine-card {
    flex: 0 0 80%;
  }
}
#machines.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.horizontal-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 16px 4px 8px;
  scroll-snap-type: x mandatory;
}

.horizontal-scroll::-webkit-scrollbar {
  height: 6px;
}
.horizontal-scroll::-webkit-scrollbar-track {
  background: #151212;
}
.horizontal-scroll::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 999px;
}

.machine-card {
  flex: 0 0 280px;
  background: #171515;
  border-radius: 24px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-snap-align: start;
}

.machine-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.machine-img {
  background: #050505;
  border-radius: 18px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.machine-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.machine-meta {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  min-height: 60px;
}

.machine-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.machine-price {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff;
  font-size: 12px;
  padding: 8px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #000000;
}

@media (max-width: 768px) {
  .machine-card {
    flex: 0 0 80%;
  }
}


/* --- Coffee slider arrows fix --- */
.coffee .slider-container{
  position: relative;
}

.coffee .arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;         /* строго фиксируем */
  height: 42px;        /* строго фиксируем */
  object-fit: contain;
  z-index: 50;
  cursor: pointer;
  opacity: .9;
}

.coffee .arrow.left{
  left: 12px;
  transform: translateY(-50%) rotate(180deg);
}

.coffee .arrow.right{
  right: 12px;
}

/* На всякий: если где-то задано глобально img{width:100%} */
.coffee .arrow.left,
.coffee .arrow.right{
  max-width: 42px !important;
  max-height: 42px !important;
}
/* контейнер */
.coffee .mySwiperCoffee{
  width: 100%;
  overflow: hidden;
  padding: 10px 56px; /* место под стрелки */
}

/* важное: убрать фикс ширины слайдов, если она была */
.coffee .mySwiperCoffee .swiper-slide{
  width: auto !important;
}

/* картинка внутри */
.coffee .mySwiperCoffee .item img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
.coffee .slider-container{ position: relative; }

.coffee .arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  object-fit: contain;
  z-index: 50;
  cursor: pointer;
}
.coffee .arrow.left{ left: 10px; transform: translateY(-50%) rotate(180deg); }
.coffee .arrow.right{ right: 10px; }
#machines .horizontal-scroll{
  display:flex;
  gap:18px;
  overflow-x:auto;
  padding:10px 4px 18px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

#machines .horizontal-scroll::-webkit-scrollbar{ height:10px; }
#machines .horizontal-scroll::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.12); border-radius:999px; }
#machines .horizontal-scroll::-webkit-scrollbar-track{ background:rgba(255,255,255,.04); border-radius:999px; }

#machines .machine-card{
  flex:0 0 300px;
  max-width:300px;
  min-width:300px;
  scroll-snap-align:start;

  display:flex;
  flex-direction:column;
  gap:12px;

  padding:16px;
  border-radius:22px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

#machines .machine-name{
  font-size:18px;
  font-weight:700;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

#machines .machine-img{
  width:100%;
  height:210px;
  border-radius:16px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

#machines .machine-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

#machines .machine-meta{
  font-size:14px;
  line-height:1.45;
  opacity:.85;
  min-height:62px;
}

#machines .machine-foot{
  margin-top:auto;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}

#machines .machine-price{
  font-size:13px;
  opacity:.8;
  max-width:170px;
}

@media (max-width: 900px){
  #machines .machine-card{
    flex:0 0 260px;
    min-width:260px;
    max-width:260px;
  }
  #machines .machine-img{ height:190px; }
}
@media (max-width: 560px){
  #machines .machine-card{
    flex:0 0 84vw;
    min-width:84vw;
    max-width:84vw;
  }
  #machines .machine-img{ height:220px; }
  #machines .machine-name{ white-space:normal; }
}
.swiper-button-next, .swiper-button-prev{
  color: black!important;
}


/* PROMO ROW */
.promo-row{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
}

.promo-card{
  border-radius:22px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  padding:18px;

  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:0;
}

.promo-card .section-title{
  margin:0;
}

.promo-card .section-text{
  opacity:.85;
}

/* Image block */
.promo-img{
  margin-top:auto;
  width:100%;
  height:260px;
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:center;
}

.promo-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Responsive */
@media (max-width: 900px){
  .promo-row{
    grid-template-columns:1fr;
  }
  .promo-img{
    height:240px;
  }
}
@media (max-width: 560px){
  .promo-card{
    padding:16px;
    border-radius:18px;
  }
  .promo-img{
    height:220px;
    border-radius:14px;
  }
}
/* Для картинок, которые лучше показывать целиком (без обрезки) */
.promo-img--contain img{
  object-fit: contain;
}

/* Опционально: чтобы "contain" смотрелся аккуратнее на темном фоне */
.promo-img--contain{
  background: rgba(255,255,255,.03);
}
.promo-img--contain img{
  object-fit: contain;
}

.promo-img--contain{
  background: rgba(255,255,255,.03);
}
.slider-shell{
  position: relative;
  margin-top: 18px;
}

.clients-shell .swiper{
  padding: 8px 6px 22px;
}

.client-card{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.client-img{
  border-radius: 18px;
  margin: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  aspect-ratio: 16/10;
}

.client-img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.client-name{
  padding: 2px 14px 14px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,.92);
}

.clients-shell .swiper-button-prev,
.clients-shell .swiper-button-next{
  color: rgba(255,255,255,.9);
}

.clients-shell .arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  cursor: pointer;
  user-select: none;
  opacity: .95;
}

.clients-shell .arrow.left{ left: -10px; transform: translateY(-50%) rotate(180deg); }
.clients-shell .arrow.right{ right: -10px; }

@media (max-width: 900px){
  .clients-shell .arrow{ display: none; }
}

.readmore-card{
  margin-top: 26px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.readmore-head{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}

.readmore-btn{
  white-space: nowrap;
}

.readmore-body{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.readmore-card.is-open .readmore-body{
  max-height: 1200px;
}

.readmore-inner{
  padding-top: 10px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
}

.readmore-inner p{ margin: 10px 0; }
.rm-h{ margin: 14px 0 6px; font-size: 18px; }
.rm-ul{ margin: 8px 0 0 18px; }
.rm-ul li{ margin: 6px 0; }

.faq-card{
  margin-top: 26px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.faq-item{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
  margin-top: 10px;
  overflow: hidden;
}

.faq-q{
  width: 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-ico{
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.faq-a{
  display: none;
  padding: 0 14px 14px;
  color: rgba(255,255,255,.80);
  line-height: 1.6;
}

.faq-item.is-open .faq-a{ display: block; }
.faq-item.is-open .faq-ico{ content: ""; }
.client-img{
  border-radius: 18px;
  margin: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  height: 220px;          /* фикс высота (можешь 240/260) */
}

.client-img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;      /* ключевое: заполняет полностью */
  object-position: center;
}
.client-img{
  border-radius: 18px;
  margin: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  aspect-ratio: 16 / 10;  /* держим пропорции */
}

.client-img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
img { max-width: 100%; height: auto; }
.form-row{
  display:block;
}

.form-wrap{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}

.form-left{
  padding: 28px;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(255,60,60,.10), transparent 60%);
}

.form-card{
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(10,10,10,.35);
  padding: 18px;
}

.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field.full{
  grid-column: 1 / -1;
}

.form-field label{
  display:block;
  font-size: 13px;
  color: rgba(255,255,255,.72);
  margin-bottom: 6px;
}

.input{
  width:100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
  color: rgba(255,255,255,.92);
  padding: 12px 14px;
  outline:none;
}

.input:focus{
  border-color: rgba(255,60,60,.45);
  box-shadow: 0 0 0 4px rgba(255,60,60,.12);
}

.form-actions{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
  justify-content:space-between;
}

.form-note{
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,.55);
  max-width: 360px;
}

.form-right{
  position:relative;
  background: rgba(0,0,0,.22);
  padding: 18px;
  display:flex;
  align-items:stretch;
}

.form-image{
  width:100%;
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  min-height: 420px;
}

.form-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  object-position: center;
}

/* responsive */
@media (max-width: 980px){
  .form-wrap{
    grid-template-columns: 1fr;
  }
  .form-right{
    padding: 0 18px 18px;
  }
  .form-image{
    min-height: 260px;
  }
  .form-grid{
    grid-template-columns: 1fr;
  }
}
.form-wrap{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}

.form-right{
  padding: 24px;
  background: radial-gradient(900px 600px at 80% 0%, rgba(255,60,60,.10), transparent 60%);
  border-left: 1px solid rgba(255,255,255,.06);
}

.form-side{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
  padding: 18px;
}

.side-title{
  font-size: 16px;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92);
  margin-bottom: 14px;
}

.side-steps{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.step{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

.step-n{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,60,60,.35);
  background: rgba(255,60,60,.10);
  flex: 0 0 auto;
}

.step-h{
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-bottom: 2px;
}

.step-p{
  font-size: 13px;
  color: rgba(255,255,255,.66);
  line-height: 1.35;
}

.side-badges{
  margin-top: 14px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.badge{
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.74);
}

.side-help{
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  border: 1px dashed rgba(255,255,255,.14);
  background: rgba(255,255,255,.02);
}

.help-h{
  font-weight: 700;
  color: rgba(255,255,255,.92);
  margin-bottom: 4px;
}

.help-p{
  font-size: 13px;
  color: rgba(255,255,255,.66);
  line-height: 1.35;
}

@media (max-width: 980px){
  .form-wrap{ grid-template-columns: 1fr; }
  .form-right{ border-left: 0; border-top: 1px solid rgba(255,255,255,.06); }
}
/* ===== Hotspot modal ===== */
.hs-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.hs-modal.is-open { display: block; }

.hs-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.hs-modal__dialog {
  position: relative;
  max-width: 980px;
  width: calc(100% - 32px);
  margin: 48px auto;
  background: #0b0f14;
  color: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,.45);
}

.hs-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 0;
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
}

.hs-modal__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
}

.hs-modal__media {
  background: #06080c;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hs-modal__content {
  padding: 22px 22px 20px;
}

.hs-modal__kicker {
  opacity: .8;
  font-size: 13px;
  margin-bottom: 8px;
}

.hs-modal__title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.hs-modal__text {
  opacity: .92;
  font-size: 15px;
  line-height: 1.55;
}

.hs-modal__meta {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  font-size: 14px;
  line-height: 1.45;
}

.hs-modal__actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .hs-modal__grid { grid-template-columns: 1fr; }
  .hs-modal__dialog { margin: 18px auto; }
  .hs-modal__media { min-height: 240px; }
}


.swiper-wrapper {
    position: relative;
    width: 100%;
    height: auto!important; 
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.lang-switch{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  background:rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  line-height:1;
}

.lang-link{
  font-weight:600;
  font-size:13px;
  letter-spacing:.02em;
  text-decoration:none;
  opacity:.75;
  transition:opacity .2s, transform .2s;
}

.lang-link:hover{
  opacity:1;
  transform: translateY(-1px);
}

.lang-link.is-active{
  opacity:1;
}

.lang-sep{
  opacity:.35;
  font-size:12px;
}
.header-right{
  display:flex;
  align-items:center;
  gap:14px;
}


.client-img{
  width:100%;
  aspect-ratio: 16/10;
  overflow:hidden;
  border-radius:24px;
  background:#0b0b0f;
  display:flex;
  align-items:center;
  justify-content:center;
}

.client-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  display:block;
}