@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800;900&family=Montserrat:wght@400;500;600;700;800&display=swap");

:root{
  --bg:#f3dff0;
  --panel:#f6e9f5;
  --panel2: rgba(255,255,255,.40);

  --ink:#2a0d24;
  --muted:#6e5a68;
  --muted2: rgba(42,13,36,.52);

  --stroke: rgba(42,13,36,.14);
  --stroke2: rgba(42,13,36,.20);

  --accent:#6d2a6a;
  --accent2:#a074bd;

  --shadow: 0 18px 40px rgba(42,13,36,.10);
  --shadow2: 0 26px 60px rgba(42,13,36,.12);

  --r-lg: 26px;
  --r-md: 20px;
  --r-sm: 16px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--ink);
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:34px 18px}
.soft-container{padding-top:22px}

.topbar{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  gap:14px;
  padding:12px 18px;
  background: rgba(243,223,240,.86);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
}

.brand{
  font-weight:900;
  letter-spacing:.3px;
  padding:8px 10px;
  border-radius:12px;
}
.brand:hover{
  background: rgba(42,13,36,.06);
}

.nav{display:flex; gap:14px; margin-left:auto; align-items:center}
.nav a{
  opacity:.72;
  font-weight:700;
}
.nav a:hover{opacity:1}
.lang{display:flex; gap:10px; opacity:.85}
.lang a{opacity:.72; font-weight:800}
.lang a:hover{opacity:1}

.btn{
  border:1px solid rgba(42,13,36,.18);
  background: transparent;
  padding:11px 15px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn-cta{
  border:none;
  color:white;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 28px rgba(109,42,106,.18);
}
.btn-cta:hover{
  box-shadow: 0 22px 40px rgba(109,42,106,.24);
}
.btn-cta-big{padding:12px 18px}
.btn-ghost{background: rgba(42,13,36,.06)}

.hero-soft{
  margin-top:10px;
  padding: 26px 0 6px;
}
.hero-soft-inner{
  border-radius: 32px;
  padding: 44px 22px;
  border: 1px solid var(--stroke);
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(160,116,189,.20), transparent 60%),
    radial-gradient(900px 520px at 80% 30%, rgba(109,42,106,.10), transparent 60%),
    rgba(246,233,245,.92);
  box-shadow: var(--shadow2);
  text-align:center;
}
.hero-soft-title{
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.hero-soft-sub{
  margin: 14px auto 22px;
  max-width: 780px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}
.hero-soft-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.soft-section{
  margin-top:18px;
  background: rgba(246,233,245,.88);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow);
}

.soft-h2{
  margin:0;
  text-align:center;
  font-family: "Playfair Display", serif;
  font-size: 44px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.soft-quote{
  margin-top:12px;
  text-align:center;
  color: var(--muted2);
  font-weight:700;
}

.soft-p{
  margin:14px auto 0;
  max-width: 880px;
  text-align:center;
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.left{text-align:left}
.soft-divider{
  width:56px;
  height:3px;
  border-radius:99px;
  background: rgba(42,13,36,.38);
  margin:14px 0 12px;
}

.split{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
  align-items:center;
}
.split-media{
  border-radius: var(--r-lg);
  overflow:hidden;
  border: 1px solid var(--stroke);
  background: rgba(42,13,36,.06);
  box-shadow: 0 16px 34px rgba(42,13,36,.08);
}
.split-img{
  width:100%;
  height:100%;
  max-height: 460px;
  object-fit:cover;
  display:block;
}

.soft-nums{
  list-style:none;
  padding:0;
  margin:22px auto 0;
  max-width: 880px;
  display:flex;
  flex-direction:column;
  gap:18px;
  counter-reset:item;
}
.soft-nums li{
  counter-increment:item;
  display:grid;
  grid-template-columns: 52px 1fr;
  gap:16px;
  align-items:center;
  color: var(--muted);
  font-weight:650;
  background: var(--panel2);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 14px 16px;
}
.soft-nums li::before{
  content: counter(item);
  width:44px;
  height:44px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid rgba(42,13,36,.55);
  color: var(--ink);
  font-weight:900;
  background: rgba(246,233,245,.92);
}

.req-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.req-card{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.40);
  border-radius: var(--r-md);
  padding:18px 18px;
  box-shadow: 0 14px 28px rgba(42,13,36,.08);
}
.req-icon{
  font-size:34px;
  margin-bottom:10px;
}
.req-name{
  font-family: "Playfair Display", serif;
  font-weight:800;
  font-size:20px;
  margin-bottom:6px;
}
.req-text{
  color: var(--muted);
  line-height:1.65;
}
.soft-footnote{
  margin-top:18px;
  text-align:center;
  color: var(--muted2);
  font-weight:800;
}

.checks-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px 20px;
}
.check-item{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color: var(--muted);
  font-weight:650;
  background: rgba(255,255,255,.35);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 14px 16px;
}
.check-item span{line-height:1.65}

.safe-list{
  margin-top:18px;
  display:flex;
  flex-direction:column;
  gap:16px;
  max-width: 920px;
  margin-left:auto;
  margin-right:auto;
}
.safe-row{
  display:flex;
  gap:12px;
  align-items:flex-start;
  font-weight:650;
  color: var(--muted);
  background: rgba(255,255,255,.35);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 14px 16px;
}
.safe-row span{line-height:1.65}

/* упрощенный главный вопрос (кружок + пробуй) */
.mainq-simple{
  margin-top: 18px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 14px;
}
.mainq-simple-circle{
  width: 132px;
  height: 132px;
  border-radius: 999px;
  border: 2px solid rgba(42,13,36,.42);
  background: rgba(246,233,245,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 46px;
  color: rgba(42,13,36,.90);
}
.mainq-simple-text{
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: 26px;
  text-align:center;
}

.try-block{
  margin: 22px auto 0;
  max-width: 780px;
  text-align:center;
  padding: 18px 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.35);
}
.try-flame{font-size:34px; margin-bottom:8px}
.try-title{
  font-family: "Playfair Display", serif;
  font-weight:900;
  letter-spacing:.6px;
  text-transform: uppercase;
  font-size: 22px;
}
.try-text{
  margin-top:10px;
  color: var(--muted);
  line-height:1.7;
}
.try-actions{ margin-top:14px; }

.faq-soft{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.faq-soft-item{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.40);
  border-radius: var(--r-md);
  padding:18px 18px;
  box-shadow: 0 14px 28px rgba(42,13,36,.08);
}
.faq-soft-q{
  font-family: "Playfair Display", serif;
  font-weight:800;
  font-size:18px;
  margin-bottom:8px;
}
.faq-soft-a{
  color: var(--muted);
  line-height:1.65;
}

.reveal{
  opacity:0;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.reveal-show{
  opacity:1;
  transform: translateY(0);
}

.footer{
  text-align:center;
  padding:24px 16px;
  color: rgba(42,13,36,.55);
  font-weight:700;
}

/* анкета */
.apply-head{ margin-bottom:12px; }
.apply-title{
  margin:0;
  font-family: "Playfair Display", serif;
  font-size:34px;
  text-align:center;
  text-transform: uppercase;
  letter-spacing:.6px;
}
.center-text{ text-align:center; margin-top:10px; color: var(--muted); }

.alert{
  border:1px solid rgba(109,42,106,.25);
  background: rgba(109,42,106,.08);
  border-radius:18px;
  padding:14px 14px;
  margin:12px 0 14px;
}
.alert-title{
  font-weight:900;
  margin-bottom:6px;
  color: rgba(42,13,36,.95);
}
.alert-text{
  color: var(--muted);
  line-height: 1.6;
}

.form{display:flex; flex-direction:column; gap:14px}
.section{
  border:1px solid var(--stroke);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.28);
  padding:16px;
}
.section-title{
  font-family: "Playfair Display", serif;
  font-weight:800;
  margin-bottom:10px;
  text-transform: uppercase;
  letter-spacing:.4px;
}
.grid{display:grid; grid-template-columns:1fr 1fr; gap:12px}
label{
  display:flex;
  flex-direction:column;
  gap:6px;
  color: var(--muted);
  font-weight:700;
}

input, select{
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(42,13,36,.18);
  background: rgba(255,255,255,.40);
  color: var(--ink);
  outline:none;
  font-weight:600;
}

input::placeholder{ color: rgba(42,13,36,.45); font-weight:600; }

select{
  appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(42,13,36,.7) 50%),
    linear-gradient(135deg, rgba(42,13,36,.7) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size:6px 6px, 6px 6px;
  background-repeat:no-repeat;
}

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

.upload{
  margin-top:4px;
  padding:16px;
  border:1px solid var(--stroke);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.28);
}
.upload-title{
  font-family: "Playfair Display", serif;
  font-weight:800;
  margin-bottom:6px;
}
.upload-hint{ color: var(--muted); margin-bottom:10px; font-weight:600; }

.upload-box{
  display:block;
  border:1px dashed rgba(42,13,36,.35);
  border-radius: var(--r-lg);
  padding:18px;
  cursor:pointer;
  transition:.15s;
  background: rgba(255,255,255,.30);
}
.upload-box:hover{
  border-color: rgba(109,42,106,.55);
  background: rgba(109,42,106,.08);
}
.upload-box input{ display:none; }

.upload-ui{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:center;
  color: rgba(42,13,36,.55);
  font-weight:800;
}
.upload-big{
  width:44px;
  height:44px;
  border-radius: 16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(42,13,36,.06);
  font-size:30px;
  line-height:1;
  color: rgba(42,13,36,.85);
}
.upload-text{ font-weight:900; }

.previews{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.preview{
  position:relative;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(42,13,36,.14);
  background: rgba(255,255,255,.35);
  aspect-ratio: 1 / 1;
}
.preview img{
  width:100%;
  height:100%;
  object-fit: contain;
  object-position: center;
  display:block;
}
.preview-remove{
  position:absolute;
  top:8px;
  right:8px;
  width:32px;
  height:32px;
  border-radius: 14px;
  border:1px solid rgba(42,13,36,.20);
  background: rgba(255,255,255,.55);
  color: rgba(42,13,36,.85);
  cursor:pointer;
  font-size:18px;
  line-height:1;
  font-weight:900;
}
.preview-remove:hover{
  background: rgba(109,42,106,.12);
  border-color: rgba(109,42,106,.35);
}

/* =========================
   REVIEWS (carousel + modal)
   ========================= */

.reviews-nav{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  gap:10px;
}

.rev-btn{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(42,13,36,.18);
  background: rgba(255,255,255,.35);
  font-weight:900;
  font-size:22px;
  line-height:1;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, opacity .12s ease;
}
.rev-btn:hover{
  transform: translateY(-1px);
  background: rgba(109,42,106,.10);
}

.reviews-viewport{
  margin-top: 16px;
  overflow: hidden;
}

.reviews-track{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 6px 14px;
}

.reviews-track::-webkit-scrollbar{ height: 8px; }
.reviews-track::-webkit-scrollbar-thumb{
  background: rgba(42,13,36,.18);
  border-radius: 999px;
}

.review-card{
  flex: 0 0 82%;
  max-width: 420px;

  aspect-ratio: 9 / 16;
  height: auto;

  border-radius: 28px;
  overflow:hidden;

  border: 1px solid rgba(42,13,36,.16);
  background: rgba(255,255,255,.18);

  box-shadow: 0 14px 28px rgba(42,13,36,.08);
  scroll-snap-align: center;

  padding: 0;
  cursor: pointer;
  display: block;

  position: relative;
  outline: none;

  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.review-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 28px;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.10), transparent 34%),
    radial-gradient(700px 260px at 50% 0%, rgba(255,255,255,.10), transparent 55%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.14),
    inset 0 0 0 2px rgba(0,0,0,.10);
  opacity:.85;
}

.review-card::before{
  content:"⤢";
  position:absolute;
  top: 12px;
  right: 12px;

  width: 40px;
  height: 40px;
  border-radius: 999px;

  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.20);
  color: #fff;

  opacity: 0;
  transform: translateY(-2px);
  transition: opacity .16s ease, transform .16s ease;
  pointer-events:none;
}

.review-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(42,13,36,.14);
  border-color: rgba(109,42,106,.28);
}
.review-card:hover::before{
  opacity: 1;
  transform: translateY(0);
}

.review-card:active{
  transform: translateY(-1px);
}

.review-card img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
  object-position: top center;
  transition: filter .18s ease;
}
.review-card:hover img{
  filter: saturate(1.02) contrast(1.02);
}

@media (min-width: 980px){
  .review-card{
    flex: 0 0 320px;
    max-width: 320px;
  }
}

@media (max-width: 520px){
  .review-card{ flex-basis: 90%; }
}

/* Modal (<dialog>) */
.review-modal{
  border: none;
  padding: 0;
  margin: auto;

  width: min(980px, 94vw);
  height: min(86vh, 860px);

  border-radius: 22px;
  background: rgba(18, 8, 16, .90);
  overflow: hidden;
  position: relative;
}

.review-modal::backdrop{
  background: rgba(0,0,0,.55);
}

.review-modal-img{
  width:100%;
  height:100%;
  display:block;
  object-fit: contain;
  object-position: center;
  background: rgba(0,0,0,.10);
}

.review-modal-close{
  position:absolute;
  top: 12px;
  right: 12px;

  width: 40px;
  height: 40px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.12);
  color: white;

  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.review-modal-close:hover{
  background: rgba(255,255,255,.20);
}

/* lock page scroll while modal open */
body.modal-lock{
  position: fixed;
  width: 100%;
  overflow: hidden;
}

/* =========
   media
   ========= */
@media (max-width:900px){
  .soft-h2{font-size:34px}
  .hero-soft-title{font-size:42px}
  .split{grid-template-columns:1fr}
  .checks-grid{grid-template-columns:1fr}
  .req-grid{grid-template-columns:1fr}
  .faq-soft{grid-template-columns:1fr}
}

@media (max-width:700px){
  .nav{display:none}
  .grid{grid-template-columns:1fr}
  .previews{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.form .btn-cta{
  box-shadow: 0 22px 44px rgba(109,42,106,.30);
  outline: 2px solid rgba(255,255,255,.18);
}
.form .btn-cta:hover{
  box-shadow: 0 30px 56px rgba(109,42,106,.36);
}

.alert-success{
  border: 1px solid rgba(34, 197, 94, .35);
  background: rgba(34, 197, 94, .12);
  border-radius: 18px;
  padding: 14px 14px;
  margin: 12px 0 14px;
}

.alert-success .alert-title{
  color: rgba(6, 95, 70, .95);
}

.alert-success .alert-text{
  color: rgba(6, 95, 70, .85);
}

.brand.brand-logo{
  margin-right:auto;           /* чтобы бренд был слева, а меню/кнопки справа */
  display:flex;
  align-items:center;
  gap:10px;

  padding:8px 12px;
  border-radius:14px;

  background: rgba(255,255,255,.42);
  border: 1px solid rgba(42,13,36,.14);
  box-shadow: 0 10px 22px rgba(42,13,36,.08);

  backdrop-filter: blur(8px);
}

.brand.brand-logo:hover{
  background: rgba(255,255,255,.55);
  border-color: rgba(109,42,106,.22);
  box-shadow: 0 14px 28px rgba(42,13,36,.10);
}

.brand-mark{
  width:35px;
  height:35px;
  display:block;
  object-fit:contain;
  flex: 0 0 auto;
}

.brand-text{
  font-weight:900;
  letter-spacing:.3px;
}

.hero-badges{
  display:grid;
  gap:14px;
  margin-top:18px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  align-items:stretch;
}

/* === HERO BADGES (cards) === */
.hero-badges{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;

  margin-top: 18px;
  margin-bottom: 22px; /* чтобы не липло к кнопкам */
}

.hero-badge{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 92px;
  padding: 16px 18px 16px 74px;

  border-radius: 18px;

  /* тонированное стекло (не белое) */
  background: linear-gradient(
    135deg,
    rgba(120, 45, 155, .26),
    rgba(255, 255, 255, .56)
  );
  border: 1px solid rgba(92, 28, 120, .30);

  box-shadow:
    0 18px 40px rgba(45, 10, 65, .18),
    inset 0 1px 0 rgba(255, 255, 255, .55);

  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);

  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}


.hero-badge:hover{
  transform: translateY(-2px);
  border-color: rgba(92, 28, 120, .32);
  box-shadow:
    0 24px 55px rgba(45, 10, 65, .22),
    inset 0 1px 0 rgba(255, 255, 255, .70);
}

/* большой "значок" с эмодзи */
.hero-badge::before{
  content: "✨"; /* дефолт */
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);

  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;

  font-size: 26px;  /* <-- делает эмодзи заметными */
  line-height: 1;

  border-radius: 16px;

  background: linear-gradient(135deg, rgba(130, 60, 170, .28), rgba(255, 255, 255, .14));
  border: 1px solid rgba(130, 60, 170, .30);

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 10px 22px rgba(60, 15, 85, .16);
}

/* эмодзи по типам */
.hero-badge.is-salary::before{ content: "💸"; }
.hero-badge.is-schedule::before{ content: "🗓️"; }
.hero-badge.is-format::before{ content: "🏠"; }

/* лёгкий цветной акцент-полоска слева (делает "контрастнее") */
.hero-badge::after{
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(140, 60, 190, .95), rgba(90, 30, 130, .65));
  opacity: .55;
}

.hero-badge-k{
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(35, 10, 45, .72);
  margin-bottom: 6px;
}

.hero-badge-v{
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  color: rgba(25, 8, 35, .92);
}

/* responsive */
@media (max-width: 980px){
  .hero-badges{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }
  .hero-badge{
    min-height: 84px;
  }
}

/* ===== Language dropdown ===== */
.lang-switch{
  position: relative;
  display:flex;
  align-items:center;
}

.lang-btn{
  display:flex;
  align-items:center;
  gap:8px;
  min-height: 44px;           /* удобный тап-таргет на мобиле */
  padding: 10px 12px;
  padding:9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(42,13,36,.18);
  background: rgba(255,255,255,.35);
  cursor:pointer;

  font-weight: 900;
  color: rgba(42,13,36,.85);
}

.lang-btn:hover{
  background: rgba(109,42,106,.10);
}

.lang-caret{
  opacity:.7;
  font-weight:900;
}

.lang-menu{
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 170px;
  max-width: min(86vw, 260px);
  border-radius: 16px;
  border: 1px solid rgba(42,13,36,.18);
  background: rgba(246,233,245,.96);
  box-shadow: 0 18px 40px rgba(42,13,36,.12);

  padding: 8px;
  z-index: 50;
}

.lang-item{
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 800;
  opacity: .85;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 44px;           /* чтобы пункты тоже удобно нажимались */
  display:flex;
  align-items:center;
}

.lang-item:hover{
  opacity: 1;
  background: rgba(42,13,36,.06);
}