@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
  --green:#004f43;
  --green-dark:#003f36;
  --green-2:#075f53;
  --white:#ffffff;
  --text:#172438;
  --muted:#7d8795;
  --line:rgba(255,255,255,.42);
  --shadow:0 18px 60px rgba(0,0,0,.18);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",Arial,sans-serif;
  color:var(--text);
  background:#fff;
  min-width:320px;
}
button,input,select{font:inherit}
a{text-decoration:none;color:inherit}
.hm-container{
  width:min(1600px, calc(100% - 160px));
  margin:0 auto;
}
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* ===== Header ===== */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:50;
  height:104px;
  border-bottom:1px solid rgba(255,255,255,.44);
  background:rgba(63,55,51,.55);
  backdrop-filter:blur(3px);
  transition:height .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, backdrop-filter .22s ease;
}
.header-row{
  height:104px;
  display:flex;
  align-items:center;
  gap:24px;
  transition:height .22s ease;
}
.site-header.is-scrolled{
  height:72px;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid #e5e7eb;
  backdrop-filter:blur(16px);
  box-shadow:0 1px 0 rgba(15,23,42,.03);
}
.site-header.is-scrolled .header-row{height:72px}
.site-header.is-scrolled .main-nav a{color:#162235;opacity:1}
.site-header.is-scrolled .lang-select{color:#162235}
.site-header.is-scrolled .btn-light{}
.site-header.is-scrolled .mode-switch{background:#f3f3f2}
.site-header.is-scrolled .brand-text{color:var(--green)}
.site-header.is-scrolled .brand-mark i{background:var(--green)}
.brand{
  display:flex;
  align-items:center;
  gap:13px;
  color:var(--green);
  min-width:200px;
}
.brand-text{
  font-size:34px;
  line-height:1;
  letter-spacing:-1.5px;
  font-weight:900;
  color:var(--green);
}
.brand-mark{
  position:relative;
  display:inline-block;
  width:42px;height:42px;
}
.brand-mark i{
  position:absolute;
  left:18px;top:2px;
  width:8px;height:18px;
  border-radius:8px 8px 2px 2px;
  background:var(--green);
  transform-origin:50% 19px;
}
.brand-mark i:nth-child(1){transform:rotate(0deg)}
.brand-mark i:nth-child(2){transform:rotate(45deg)}
.brand-mark i:nth-child(3){transform:rotate(90deg)}
.brand-mark i:nth-child(4){transform:rotate(135deg)}
.brand-mark i:nth-child(5){transform:rotate(180deg)}
.brand-mark i:nth-child(6){transform:rotate(225deg)}
.brand-mark i:nth-child(7){transform:rotate(270deg)}
.brand-mark i:nth-child(8){transform:rotate(315deg)}

.mode-switch{
  display:flex;
  align-items:center;
  width:430px;
  height:50px;
  padding:4px;
  background:#f6f6f5;
  border-radius:18px;
  box-shadow:0 2px 0 rgba(255,255,255,.18) inset;
}
.mode-btn{
  width:50%;
  height:42px;
  border:0;
  border-radius:14px;
  color:#404a55;
  background:transparent;
  cursor:pointer;
  font-size:15px;
  font-weight:600;
  transition:.18s ease;
}
.mode-btn.is-active{
  color:#fff;
  background:var(--green);
  box-shadow:0 8px 16px rgba(0,79,67,.18);
}
.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
  margin-left:0;
  white-space:nowrap;
}
.main-nav a{
  color:#fff;
  font-size:15px;
  font-weight:700;
  opacity:.96;
}
.main-nav a:hover{opacity:.75}
.header-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:22px;
}
.lang-select{
  display:flex;
  align-items:center;
  gap:8px;
  color:#152437;
  font-size:14px;
  font-weight:500;
}
.lang-select button{
  width:42px;height:42px;
  display:grid;place-items:center;
  border:0;
  border-radius:12px;
  color:#172438;
  background:#fff;
  cursor:pointer;
}
.btn{
  height:42px;
  padding:0 27px;
  border:0;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
}
.btn-primary{
  background:var(--green);
  color:#fff;
  min-width:170px;
}
.btn-light{
  background:#fff;
  color:#132233;
  min-width:94px;
}
.mobile-burger{
  display:none;
  width:44px;height:44px;
  border:0;border-radius:12px;
  background:#fff;
  place-items:center;
  gap:4px;
  padding:11px;
}
.mobile-burger span{
  display:block;
  height:2px;
  width:22px;
  background:#142334;
  border-radius:2px;
}

/* ===== Hero ===== */
.hero{
  position:relative;
  min-height:900px;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-image:url('/assets/background.jpg');
  background-size:cover;
  background-position:center;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.18) 22%, rgba(0,0,0,.30) 100%),
    radial-gradient(circle at 49% 43%, rgba(0,0,0,.07), rgba(0,0,0,.28) 68%);
}
.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  text-align:center;
  padding-top:112px;
}
.hero h1{
  margin:0 auto;
  max-width:1080px;
  font-size:60px;
  line-height:1.18;
  letter-spacing:-1.8px;
  font-weight:900;
  text-shadow:0 7px 26px rgba(0,0,0,.18);
}
.hero-subtitle{
  margin:40px auto 46px;
  max-width:760px;
  font-size:16px;
  line-height:1.45;
  font-weight:600;
  color:rgba(255,255,255,.94);
}
.hero-search{
  width:min(1140px,100%);
  margin:0 auto;
  display:grid;
  grid-template-columns: 515px 370px 190px;
  gap:34px;
  justify-content:center;
  align-items:center;
}
.search-field{
  display:block;
  height:64px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 20px 45px rgba(0,0,0,.12);
  position:relative;
  overflow:hidden;
  text-align:left;
}
.search-field input,
.search-field select{
  width:100%;height:100%;
  border:0;outline:0;
  background:transparent;
  color:#243446;
}
.search-field input{
  padding:0 20px;
  font-size:17px;
  font-weight:500;
}
.search-field input::placeholder{color:#6f7a86;opacity:1}
.search-city{padding:11px 46px 9px 20px}
.search-city:after{
  content:"";
  position:absolute;
  right:22px;top:50%;
  width:12px;height:12px;
  border-right:2px solid #60707f;
  border-bottom:2px solid #60707f;
  transform:translateY(-70%) rotate(45deg);
  pointer-events:none;
}
.field-caption{
  display:block;
  font-size:13px;
  line-height:1.1;
  color:#a3a9b0;
  margin-bottom:3px;
  white-space:nowrap;
}
.search-city select{
  height:30px;
  padding:0;
  appearance:none;
  font-size:16px;
  font-weight:700;
}
.search-submit{
  height:64px;
  border:0;
  border-radius:16px;
  background:#fff;
  color:#003f36;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 20px 45px rgba(0,0,0,.12);
  transition:.18s ease;
}
.search-submit:hover{transform:translateY(-1px);background:#f6fbfa}
.hero-stats{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:56px;
  margin-top:60px;
}
.stat-item{
  width:170px;
  text-align:center;
}
.stat-item strong{
  display:block;
  font-size:33px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.8px;
}
.stat-item span{
  display:block;
  margin-top:8px;
  font-size:16px;
  line-height:1;
  font-weight:600;
}
.stat-divider{
  width:1px;
  height:42px;
  background:rgba(255,255,255,.82);
}
.telegram-float{
  position:fixed;
  z-index:60;
  right:22px;
  bottom:22px;
  width:60px;height:60px;
  display:grid;place-items:center;
  border-radius:50%;
  background:#26a7e8;
  color:#fff;
  box-shadow:0 14px 32px rgba(0,0,0,.22);
}

/* ===== Modal ===== */
.modal{
  position:fixed;
  inset:0;
  z-index:80;
  display:grid;
  place-items:center;
  padding:20px;
  background:rgba(7,16,28,.55);
}
.modal[hidden]{display:none}
.modal-card{
  width:min(440px,100%);
  background:#fff;
  border-radius:22px;
  padding:32px;
  position:relative;
  box-shadow:var(--shadow);
}
.modal-close{
  position:absolute;
  top:14px;right:14px;
  width:34px;height:34px;
  border:0;border-radius:12px;
  background:#f2f4f7;
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

@media (max-width:1400px){
  .hm-container{width:min(1240px, calc(100% - 56px))}
  .brand{min-width:auto}.brand-text{font-size:30px}.brand-mark{width:38px;height:38px}
  .mode-switch{width:360px}.main-nav{gap:18px}.header-actions{gap:14px}
  .hero h1{font-size:54px}.hero-search{grid-template-columns:minmax(330px,515px) minmax(290px,370px) 170px;gap:24px}
  .site-header.is-scrolled{height:70px}.site-header.is-scrolled .header-row{height:70px}
}
@media (max-width:1120px){
  .site-header,.header-row{height:86px}.main-nav{display:none}.header-actions{display:none}.mobile-burger{display:grid;margin-left:auto}.mode-switch{width:320px;height:46px}.mode-btn{height:38px}
  .hero{min-height:830px}.hero-content{padding-top:90px}.hero h1{font-size:44px}.hero-subtitle{margin:28px auto 32px}
  .hero-search{grid-template-columns:1fr;gap:14px;width:min(620px,100%)}.search-field,.search-submit{height:58px}.search-city{padding-top:8px}.hero-stats{gap:28px;margin-top:42px}
}
@media (max-width:720px){
  .hm-container{width:calc(100% - 32px)}
  .brand-text{font-size:24px}.brand-mark{width:30px;height:30px}.brand-mark i{left:13px;top:0;width:6px;height:14px;transform-origin:50% 15px}
  .mode-switch{position:absolute;left:16px;right:16px;top:78px;width:auto}.site-header{height:136px}.header-row{height:74px}
  .hero{min-height:820px;align-items:flex-start}.hero-content{padding-top:230px}.hero h1{font-size:34px;line-height:1.15;letter-spacing:-1px}.hero h1 br{display:none}.hero-subtitle{font-size:14px;margin:20px auto 26px}.search-field input{font-size:15px}.field-caption{font-size:11px}.search-city select{font-size:15px}.hero-stats{gap:14px;margin-top:34px}.stat-item{width:auto;min-width:90px}.stat-item strong{font-size:24px}.stat-item span{font-size:13px}.stat-divider{height:34px}.telegram-float{width:52px;height:52px}
}
@media (max-width:440px){
  .hero-content{padding-top:205px}.hero h1{font-size:29px}.hero-stats{flex-wrap:wrap}.stat-divider{display:none}.mode-switch{top:72px}.mode-btn{font-size:13px}.search-field,.search-submit{height:56px;border-radius:14px}
}

/* ===== Day vacancies ===== */
.day-vacancies{
  background:#fff;
  padding:74px 0 68px;
}
.section-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:54px;
}
.section-head h2{
  margin:0;
  display:flex;
  align-items:center;
  gap:14px;
  color:#132238;
  font-size:38px;
  line-height:1.15;
  letter-spacing:-.8px;
  font-weight:900;
}
.rocket{
  display:inline-grid;
  place-items:center;
  width:44px;
  height:44px;
  font-size:36px;
  line-height:1;
}
.section-link{
  color:#3b76ff;
  font-size:16px;
  font-weight:600;
  white-space:nowrap;
  transition:.18s ease;
}
.section-link:hover{opacity:.75}
.vacancy-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:34px 36px;
}
.vacancy-card{
  min-height:217px;
  padding:43px 28px 28px;
  border:1px solid #d9dde3;
  border-radius:24px;
  background:#fff;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  transition:.18s ease;
}
.vacancy-card:hover{
  border-color:#c6d1d0;
  box-shadow:0 14px 36px rgba(15,31,50,.07);
  transform:translateY(-1px);
}
.vacancy-card h3{
  margin:0 0 29px;
  min-height:40px;
  color:#0f2137;
  font-size:21px;
  line-height:1.42;
  letter-spacing:-.25px;
  font-weight:800;
}
.salary{
  margin:0;
  display:flex;
  align-items:center;
  gap:10px;
  color:#004f43;
  font-size:20px;
  line-height:1.2;
  font-weight:500;
}
.money-ico{
  position:relative;
  flex:0 0 auto;
  width:22px;
  height:15px;
  border:2px solid #004f43;
  border-radius:3px;
}
.money-ico:before{
  content:"";
  position:absolute;
  left:50%;top:50%;
  width:4px;height:4px;
  border:2px solid #004f43;
  border-radius:50%;
  transform:translate(-50%,-50%);
}
.money-ico:after{
  content:"";
  position:absolute;
  left:2px;right:2px;top:50%;
  height:1.5px;
  background:#004f43;
  transform:translateY(-50%);
  opacity:.45;
}
.source{
  margin:auto 0 0;
  display:flex;
  align-items:center;
  gap:12px;
  color:#697485;
  font-size:17px;
  line-height:1.2;
  font-weight:500;
}
.source-mark{
  position:relative;
  display:inline-block;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#005a4d;
  flex:0 0 auto;
}
.source-mark i{
  position:absolute;
  left:15px;top:6px;
  width:4px;height:11px;
  border-radius:6px 6px 2px 2px;
  background:#fff;
  transform-origin:50% 11px;
}
.source-mark i:nth-child(1){transform:rotate(0deg)}
.source-mark i:nth-child(2){transform:rotate(45deg)}
.source-mark i:nth-child(3){transform:rotate(90deg)}
.source-mark i:nth-child(4){transform:rotate(135deg)}
.source-mark i:nth-child(5){transform:rotate(180deg)}
.source-mark i:nth-child(6){transform:rotate(225deg)}
.source-mark i:nth-child(7){transform:rotate(270deg)}
.source-mark i:nth-child(8){transform:rotate(315deg)}

@media (max-width:1400px){
  .day-vacancies{padding:62px 0 58px}
  .section-head h2{font-size:34px}
  .vacancy-grid{gap:26px}
  .vacancy-card{min-height:200px;padding:34px 24px 25px}
  .vacancy-card h3{font-size:18px;margin-bottom:22px}.salary{font-size:17px}.source{font-size:15px}
}
@media (max-width:960px){
  .section-head{align-items:flex-start;margin-bottom:34px}.section-head h2{font-size:29px}.rocket{width:36px;height:36px;font-size:30px}
  .vacancy-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:680px){
  .day-vacancies{padding:46px 0 44px}.section-head{display:block}.section-link{display:inline-block;margin-top:16px}.section-head h2{font-size:25px;line-height:1.25}
  .vacancy-grid{grid-template-columns:1fr;gap:16px}.vacancy-card{min-height:170px;border-radius:18px;padding:25px 20px}.vacancy-card h3{font-size:17px;margin-bottom:18px;min-height:auto}.salary{font-size:16px}.source{font-size:14px}.source-mark{width:30px;height:30px}.source-mark i{left:13px;top:5px}
}

/* ===== All vacancies button + professions ===== */
.vacancy-more{
  display:flex;
  justify-content:center;
  padding-top:76px;
}
.btn-more{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:248px;
  height:64px;
  padding:0 32px;
  border-radius:22px;
  background:var(--green);
  color:#fff;
  font-size:18px;
  line-height:1;
  font-weight:900;
  box-shadow:0 12px 26px rgba(0,79,67,.12);
  transition:.18s ease;
}
.btn-more:hover{
  background:var(--green-dark);
  transform:translateY(-1px);
}
.professions-section{
  background:#f3f3f3;
  padding:92px 0 112px;
}
.professions-section h2{
  margin:0 0 58px;
  color:#142437;
  font-size:38px;
  line-height:1.15;
  letter-spacing:-.9px;
  font-weight:900;
}
.professions-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:106px;
}
.profession-column{
  display:grid;
  gap:18px;
}
.profession-column a{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 38px;
  align-items:center;
  gap:18px;
  color:#5d6775;
  font-size:17px;
  line-height:1.2;
  font-weight:500;
  transition:.16s ease;
}
.profession-column a:hover{
  color:var(--green);
}
.profession-column span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.profession-column b{
  color:#a6afbd;
  font-size:13px;
  line-height:1;
  font-weight:500;
  text-align:right;
}
@media (max-width:1400px){
  .vacancy-more{padding-top:56px}
  .btn-more{min-width:220px;height:58px;border-radius:18px;font-size:16px}
  .professions-section{padding:78px 0 92px}.professions-section h2{font-size:34px;margin-bottom:46px}.professions-grid{gap:70px}.profession-column a{font-size:15px;gap:12px}
}
@media (max-width:960px){
  .professions-grid{grid-template-columns:1fr;gap:16px}.profession-column{gap:14px}.professions-section h2{font-size:29px}.profession-column a{font-size:16px}
}
@media (max-width:680px){
  .vacancy-more{padding-top:34px}.btn-more{width:100%;height:56px;border-radius:16px;font-size:15px}.professions-section{padding:52px 0 60px}.professions-section h2{font-size:25px;margin-bottom:30px}.profession-column a{font-size:15px}.profession-column b{font-size:12px}
}


/* ===== Popular categories ===== */
.categories-section{
  background:#fff;
  padding:94px 0 114px;
}
.categories-section h2{
  margin:0 0 62px;
  color:#142437;
  font-size:42px;
  line-height:1.12;
  letter-spacing:-1.1px;
  font-weight:900;
}
.categories-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:34px 36px;
}
.category-card{
  min-height:205px;
  padding:30px 28px 28px;
  border:1px solid #d9dde3;
  border-radius:24px;
  background:#fff;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  transition:.18s ease;
}
.category-card:hover{
  transform:translateY(-1px);
  border-color:#c7d0d4;
  box-shadow:0 16px 42px rgba(15,31,50,.065);
}
.cat-icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:10px;
  margin-bottom:20px;
}
.cat-icon svg{
  width:28px;
  height:28px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.cat-blue{color:#2f74ff;background:#eef4ff}
.cat-green{color:#16a34a;background:#eefdF4}
.cat-purple{color:#7c3cff;background:#f3efff}
.cat-yellow{color:#d99a00;background:#fff9df}
.cat-pink{color:#f02683;background:#fff0f7}
.cat-indigo{color:#4d5cff;background:#eef1ff}
.cat-orange{color:#ff5d16;background:#fff1e9}
.cat-gray{color:#687385;background:#eef1f5}
.cat-amber{color:#f59e0b;background:#fff7e8}
.cat-red{color:#ff3d3d;background:#fff0f0}
.cat-cyan{color:#0ea5c6;background:#eafcff}
.cat-teal{color:#009d8c;background:#eafffb}
.category-card strong{
  color:#0f2137;
  font-size:19px;
  line-height:1.36;
  letter-spacing:-.25px;
  font-weight:900;
  max-width:100%;
}
.cat-count{
  margin-top:auto;
  padding-top:26px;
  color:#6c7787;
  font-size:18px;
  line-height:1.2;
  font-weight:500;
}
@media (max-width:1400px){
  .categories-section{padding:78px 0 92px}.categories-section h2{font-size:34px;margin-bottom:46px}.categories-grid{gap:26px}.category-card{min-height:180px;padding:24px}.category-card strong{font-size:17px}.cat-count{font-size:16px}.cat-icon{width:46px;height:46px;margin-bottom:17px}.cat-icon svg{width:25px;height:25px}
}
@media (max-width:1050px){
  .categories-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
}
@media (max-width:680px){
  .categories-section{padding:52px 0 62px}.categories-section h2{font-size:26px;margin-bottom:30px}.categories-grid{grid-template-columns:1fr;gap:16px}.category-card{min-height:158px;border-radius:18px;padding:22px}.category-card strong{font-size:17px}.cat-count{font-size:15px;padding-top:20px}.cat-icon{width:44px;height:44px}
}


/* ===== Subscribe block ===== */
.subscribe-section{
  background:#004b40;
  color:#fff;
  padding:126px 0 104px;
  overflow:hidden;
}
.subscribe-wrap{
  max-width:1600px;
  text-align:center;
}
.subscribe-rocket{
  width:110px;
  height:110px;
  margin:0 auto 34px;
  display:grid;
  place-items:center;
}
.subscribe-rocket svg{width:100%;height:100%;display:block}
.subscribe-section h2{
  margin:0 auto 78px;
  max-width:1440px;
  color:#fff;
  font-size:59px;
  line-height:1.12;
  letter-spacing:-1.8px;
  font-weight:900;
}
.social-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:32px 34px;
}
.social-card{
  min-height:122px;
  padding:27px 28px;
  background:#fff;
  color:#102238;
  border-radius:16px;
  display:flex;
  align-items:center;
  text-align:left;
  gap:28px;
  box-shadow:0 1px 0 rgba(0,0,0,.04);
  transition:.18s ease;
}
.social-card:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 44px rgba(0,0,0,.13);
}
.social-icon{
  width:64px;
  height:64px;
  flex:0 0 64px;
  display:grid;
  place-items:center;
  border-radius:50%;
}
.social-icon svg{width:64px;height:64px;display:block}
.social-icon.tg{background:#29aeea;color:#fff}
.social-icon.tg svg{width:38px;height:38px;fill:currentColor}
.social-icon.insta{border-radius:14px;overflow:hidden;background:#fff}
.social-text{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:7px;
  flex:1;
}
.social-text strong{
  color:#152439;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.25px;
  font-weight:800;
}
.social-text em{
  color:#647083;
  font-style:normal;
  font-size:18px;
  line-height:1.42;
  font-weight:500;
}
.social-action{
  color:#3a78ff;
  font-size:18px;
  font-weight:500;
  white-space:nowrap;
  margin-left:14px;
}
.dream-action{
  display:flex;
  justify-content:center;
  margin-top:62px;
}
.dream-btn{
  height:62px;
  padding:0 31px;
  background:#fff;
  color:#004b40;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:18px;
  font-weight:800;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  transition:.18s ease;
}
.dream-btn:hover{transform:translateY(-1px);box-shadow:0 18px 42px rgba(0,0,0,.17)}
.dream-btn svg{
  width:25px;
  height:25px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
@media (max-width:1400px){
  .subscribe-section{padding:102px 0 86px}.subscribe-wrap{max-width:1180px}.subscribe-rocket{width:86px;height:86px;margin-bottom:26px}.subscribe-section h2{font-size:43px;margin-bottom:54px}.social-grid{gap:24px}.social-card{min-height:104px;padding:22px;gap:20px;border-radius:14px}.social-icon,.social-icon svg{width:52px;height:52px}.social-icon.tg svg{width:32px;height:32px}.social-text strong{font-size:18px}.social-text em{font-size:15px}.social-action{font-size:15px}.dream-action{margin-top:44px}.dream-btn{height:54px;font-size:15px;border-radius:15px}
}
@media (max-width:900px){
  .subscribe-section h2{font-size:33px}.social-grid{grid-template-columns:1fr}.social-card{align-items:flex-start}.social-action{align-self:center}
}
@media (max-width:620px){
  .subscribe-section{padding:72px 0 66px}.subscribe-rocket{width:72px;height:72px}.subscribe-section h2{font-size:27px;margin-bottom:34px;letter-spacing:-.6px}.social-grid{gap:16px}.social-card{min-height:auto;padding:18px;gap:14px;border-radius:14px}.social-icon,.social-icon svg{width:46px;height:46px;flex-basis:46px}.social-icon.tg svg{width:28px;height:28px}.social-text strong{font-size:16px}.social-text em{font-size:14px}.social-action{font-size:0;margin-left:0}.social-action::after{content:'→';font-size:24px;color:#3a78ff}.dream-action{margin-top:34px}.dream-btn{width:100%;justify-content:center;height:54px;font-size:15px}
}


.site-footer{
  background:#071736;
  color:#a5b4ca;
  padding:62px 0 54px;
  position:relative;
}
.footer-wrap{max-width:1408px}
.footer-top{
  display:grid;
  grid-template-columns:1.2fr .9fr .95fr .9fr 1.15fr;
  gap:54px;
  align-items:start;
}
.footer-brand{max-width:312px}
.footer-logo{
  display:inline-flex;
  align-items:center;
  gap:14px;
  color:#fff;
  margin-bottom:30px;
}
.footer-logo-mark{
  width:28px;
  height:28px;
  position:relative;
  flex:0 0 28px;
}
.footer-logo-mark i{
  position:absolute;
  width:7px;
  height:7px;
  background:#fff;
  border-radius:100px 100px 0 100px;
  top:50%;left:50%;margin:-3.5px;
  transform-origin:0 0;
}
.footer-logo-mark i:nth-child(1){transform:rotate(0deg) translateY(-12px)}
.footer-logo-mark i:nth-child(2){transform:rotate(45deg) translateY(-12px)}
.footer-logo-mark i:nth-child(3){transform:rotate(90deg) translateY(-12px)}
.footer-logo-mark i:nth-child(4){transform:rotate(135deg) translateY(-12px)}
.footer-logo-mark i:nth-child(5){transform:rotate(180deg) translateY(-12px)}
.footer-logo-mark i:nth-child(6){transform:rotate(225deg) translateY(-12px)}
.footer-logo-mark i:nth-child(7){transform:rotate(270deg) translateY(-12px)}
.footer-logo-mark i:nth-child(8){transform:rotate(315deg) translateY(-12px)}
.footer-logo-text{
  font-size:27px;
  line-height:1;
  font-weight:800;
  letter-spacing:-.5px;
}
.footer-brand p{
  font-size:18px;
  line-height:1.45;
  color:#a8b7ca;
}
.footer-col h4{
  margin:2px 0 24px;
  color:#fff;
  font-size:18px;
  line-height:1.2;
  font-weight:800;
}
.footer-col ul{display:grid;gap:18px}
.footer-col a{
  color:#a8b7ca;
  font-size:18px;
  line-height:1.25;
}
.footer-col a:hover,.footer-socials a:hover,.footer-logo:hover{color:#fff}
.footer-docs{max-width:295px}
.footer-bottom{
  margin-top:58px;
  padding-top:38px;
  border-top:1px solid rgba(255,255,255,.1);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.footer-copy{
  font-size:18px;
  line-height:1.35;
  color:#94a6be;
}
.footer-socials{
  display:flex;
  align-items:center;
  gap:28px;
}
.footer-socials a{
  color:#a8b7ca;
  font-size:18px;
  line-height:1.2;
}
@media (max-width:1400px){
  .site-footer{padding:54px 0 46px}
  .footer-top{grid-template-columns:1.2fr .9fr .95fr .9fr 1.15fr;gap:34px}
  .footer-logo{margin-bottom:24px}
  .footer-logo-text{font-size:24px}
  .footer-brand p,.footer-col a,.footer-copy,.footer-socials a{font-size:16px}
  .footer-col h4{font-size:17px;margin-bottom:18px}
  .footer-col ul{gap:14px}
  .footer-bottom{margin-top:46px;padding-top:30px}
}
@media (max-width:980px){
  .site-footer{padding:48px 0 40px}
  .footer-top{grid-template-columns:repeat(2,minmax(0,1fr));gap:32px 26px}
  .footer-brand{max-width:none;grid-column:1/-1}
  .footer-docs{max-width:none}
  .footer-bottom{margin-top:38px;padding-top:26px;flex-direction:column;align-items:flex-start}
}
@media (max-width:620px){
  .site-footer{padding:38px 0 34px}
  .footer-top{grid-template-columns:1fr;gap:24px}
  .footer-logo{margin-bottom:20px}
  .footer-logo-text{font-size:22px}
  .footer-brand p,.footer-col a,.footer-copy,.footer-socials a{font-size:14px}
  .footer-col h4{font-size:16px;margin-bottom:14px}
  .footer-col ul{gap:10px}
  .footer-bottom{margin-top:28px;padding-top:22px;gap:14px}
  .footer-socials{gap:18px;flex-wrap:wrap}
}


/* ===== Pixel-close mobile polish to match provided full screenshot ===== */
/* ===== Mobile responsive typography/layout fix v21 ===== */
@media (max-width:520px){
  html,
  body{
    overflow-x:hidden !important;
    font-size:16px !important;
    -webkit-text-size-adjust:100% !important;
    text-size-adjust:100% !important;
  }

  body{
    background:#fff !important;
    line-height:1.5 !important;
  }

  .hm-container{
    width:calc(100% - 24px) !important;
  }

  /* Header */
  .site-header,
  .site-header.is-scrolled{
    height:64px !important;
    background:rgba(255,255,255,.97) !important;
    border-bottom:1px solid #e5e7eb !important;
    box-shadow:0 4px 18px rgba(15,23,42,.06) !important;
    backdrop-filter:blur(14px) !important;
  }

  .header-row,
  .site-header.is-scrolled .header-row{
    height:64px !important;
    gap:10px !important;
    flex-wrap:nowrap !important;
  }

  .brand{
    min-width:0 !important;
    gap:8px !important;
  }

  .brand-text{
    color:var(--green) !important;
    font-size:20px !important;
    line-height:1 !important;
    letter-spacing:-.5px !important;
  }

  .brand-mark{
    width:24px !important;
    height:24px !important;
  }

  .brand-mark i{
    left:10px !important;
    top:1px !important;
    width:5px !important;
    height:12px !important;
    transform-origin:50% 12px !important;
    background:var(--green) !important;
  }

  .main-nav{
    display:none !important;
  }

  .header-actions{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;
    margin-left:auto !important;
  }

  .mode-switch{
    display:none !important;
  }

  .lang-select{
    gap:5px !important;
    color:#172438 !important;
    font-size:13px !important;
  }

  .lang-select .lang-toggle,
  .lang-select button{
    width:auto !important;
    min-width:42px !important;
    height:38px !important;
    padding:0 8px !important;
    border-radius:12px !important;
    font-size:13px !important;
  }

  .btn{
    min-width:auto !important;
    height:38px !important;
    padding:0 13px !important;
    border-radius:12px !important;
    font-size:13px !important;
    line-height:1 !important;
    font-weight:800 !important;
  }

  .btn-primary{
    display:none !important;
  }

  .btn-light{
    background:#f8fafc !important;
    color:#172438 !important;
  }

  .mobile-burger{
    display:grid !important;
    width:40px !important;
    height:40px !important;
    border-radius:12px !important;
    background:#f8fafc !important;
  }

  /* Hero */
  .hero{
    min-height:auto !important;
    align-items:flex-start !important;
    padding:112px 0 52px !important;
  }

  .hero-content{
    padding-top:0 !important;
  }

  .hero h1{
    max-width:100% !important;
    font-size:clamp(30px, 8.6vw, 40px) !important;
    line-height:1.12 !important;
    letter-spacing:-1px !important;
  }

  .hero h1 br{
    display:none !important;
  }

  .hero-subtitle{
    max-width:100% !important;
    margin:16px auto 22px !important;
    font-size:14px !important;
    line-height:1.55 !important;
    font-weight:600 !important;
  }

  .hero-search{
    width:100% !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
  }

  .search-field,
  .search-submit{
    width:100% !important;
    height:54px !important;
    border-radius:16px !important;
  }

  .search-field input{
    padding:0 16px !important;
    font-size:15px !important;
  }

  .field-caption{
    font-size:12px !important;
    line-height:1.15 !important;
  }

  .search-city{
    padding:8px 44px 7px 16px !important;
  }

  .search-city select{
    font-size:15px !important;
  }

  .search-submit{
    font-size:15px !important;
    font-weight:900 !important;
  }

  .hero-stats{
    width:100% !important;
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:8px !important;
    margin-top:22px !important;
  }

  .stat-item{
    width:auto !important;
    min-width:0 !important;
    padding:12px 8px !important;
    border-radius:16px !important;
    background:rgba(255,255,255,.12) !important;
    backdrop-filter:blur(10px) !important;
  }

  .stat-item strong{
    font-size:22px !important;
    line-height:1.05 !important;
  }

  .stat-item span{
    margin-top:5px !important;
    font-size:12px !important;
    line-height:1.25 !important;
  }

  .stat-divider{
    display:none !important;
  }

  .telegram-float{
    right:14px !important;
    bottom:14px !important;
    width:50px !important;
    height:50px !important;
  }

  /* Sections */
  .day-vacancies,
  .categories-section,
  .professions-section,
  .subscribe-section{
    padding:44px 0 !important;
  }

  .section-head{
    display:block !important;
    margin-bottom:22px !important;
  }

  .section-head h2,
  .professions-section h2,
  .categories-section h2{
    font-size:24px !important;
    line-height:1.22 !important;
    letter-spacing:-.55px !important;
  }

  .rocket{
    width:auto !important;
    height:auto !important;
    font-size:24px !important;
  }

  .section-link{
    display:inline-flex !important;
    margin-top:12px !important;
    font-size:14px !important;
    font-weight:800 !important;
  }

  /* Vacancy cards */
  .vacancy-grid{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }

  .vacancy-card{
    min-height:auto !important;
    border-radius:20px !important;
  }

  .vacancy-card h3{
    min-height:0 !important;
    margin:0 0 14px !important;
    font-size:17px !important;
    line-height:1.35 !important;
    letter-spacing:-.2px !important;
  }

  .salary{
    margin:0 0 18px !important;
    gap:8px !important;
    font-size:16px !important;
    line-height:1.25 !important;
  }

  .money-ico{
    width:20px !important;
    height:14px !important;
  }

  .source{
    gap:8px !important;
    font-size:14px !important;
    line-height:1.35 !important;
  }

  .source-mark{
    width:28px !important;
    height:28px !important;
    flex-basis:28px !important;
  }

  .source-mark i{
    left:12px !important;
    top:5px !important;
    width:4px !important;
    height:10px !important;
    transform-origin:50% 10px !important;
  }

  .vacancy-more{
    padding-top:24px !important;
    margin-top:0 !important;
  }

  .btn-more{
    width:100% !important;
    height:54px !important;
    border-radius:16px !important;
    font-size:15px !important;
  }

  /* Professions */
  .professions-grid{
    grid-template-columns:1fr !important;
    gap:12px !important;
  }

  .profession-column{
    gap:12px !important;
  }

  .profession-column a{
    min-height:44px !important;
    grid-template-columns:minmax(0, 1fr) auto !important;
    gap:12px !important;
    padding:0 2px !important;
    font-size:15px !important;
    line-height:1.35 !important;
  }

  .profession-column a span{
    white-space:normal !important;
  }

  .profession-column a b{
    min-width:30px !important;
    font-size:12px !important;
  }

  /* Categories */
  .categories-grid{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }

  .category-card{
    min-height:auto !important;
    padding:20px !important;
    border-radius:20px !important;
  }

  .cat-icon{
    width:42px !important;
    height:42px !important;
    border-radius:12px !important;
    margin-bottom:14px !important;
  }

  .cat-icon svg{
    width:22px !important;
    height:22px !important;
  }

  .category-card strong{
    font-size:16px !important;
    line-height:1.35 !important;
  }

  .cat-count{
    padding-top:16px !important;
    font-size:14px !important;
  }

  /* Subscribe/social */
  .subscribe-rocket{
    width:68px !important;
    height:68px !important;
    margin-bottom:18px !important;
  }

  .subscribe-section h2{
    max-width:100% !important;
    margin:0 auto 28px !important;
    font-size:26px !important;
    line-height:1.25 !important;
    letter-spacing:-.6px !important;
  }

  .social-grid{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }

  .social-card{
    min-height:auto !important;
    padding:18px !important;
    border-radius:18px !important;
    gap:14px !important;
  }

  .social-icon,
  .social-icon svg{
    width:44px !important;
    height:44px !important;
    flex-basis:44px !important;
  }

  .social-icon.tg svg{
    width:26px !important;
    height:26px !important;
  }

  .social-text strong{
    font-size:16px !important;
    line-height:1.25 !important;
  }

  .social-text em{
    font-size:14px !important;
    line-height:1.35 !important;
  }

  .social-action{
    margin-left:auto !important;
    font-size:14px !important;
  }

  .dream-action{
    margin-top:24px !important;
  }

  .dream-btn{
    width:100% !important;
    height:52px !important;
    justify-content:center !important;
    border-radius:16px !important;
    font-size:15px !important;
  }

  /* Footer */
  .site-footer{
    padding:38px 0 34px !important;
  }

  .footer-top{
    grid-template-columns:1fr !important;
    gap:24px !important;
  }

  .footer-logo{
    margin-bottom:16px !important;
  }

  .footer-logo-text{
    font-size:22px !important;
  }

  .footer-brand p,
  .footer-col a,
  .footer-copy,
  .footer-socials a{
    font-size:14px !important;
    line-height:1.5 !important;
  }

  .footer-col h4{
    font-size:16px !important;
    margin:0 0 12px !important;
  }

  .footer-col ul{
    gap:10px !important;
  }

  .footer-bottom{
    margin-top:26px !important;
    padding-top:22px !important;
    display:grid !important;
    gap:14px !important;
  }

  .footer-socials{
    gap:16px !important;
    flex-wrap:wrap !important;
  }

  .modal-card{
    width:min(360px,100%) !important;
    padding:24px !important;
    border-radius:20px !important;
  }
}

/* ===== AJAX landing switch ===== */
#landing-root{min-height:520px}
#landing-root.is-loading{opacity:.45;pointer-events:none;transition:opacity .18s ease}
body.employer-mode .site-header{
  background:#fff;
  border-bottom:1px solid #e6e7e9;
  box-shadow:none;
}
body.employer-mode .main-nav a,
body.employer-mode .lang-select{color:#162235}
body.employer-mode .btn-light,
body.employer-mode .btn-primary{}
body.employer-mode .brand-text{color:var(--green)}
body.employer-mode .brand-mark i{background:var(--green)}
body.employer-mode .site-header.is-scrolled{height:72px}
body.employer-mode{background:#fff}

/* ===== Employer landing ===== */
.emp-hero{
  padding:174px 0 72px;
  background:#fff;
}
.emp-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:36px;
}
.emp-hero-copy{
  min-height:704px;
  border-radius:76px;
  background:#fafafa;
  padding:125px 58px 70px 58px;
}
.emp-badges{display:flex;gap:14px;margin-bottom:32px;flex-wrap:wrap}
.emp-badges span{
  background:#f86436;color:#fff;border-radius:999px;padding:10px 18px;font-size:18px;font-weight:700;
}
.emp-hero-copy h1{
  margin:0 0 28px;
  color:#172238;
  font-size:62px;
  line-height:1.12;
  letter-spacing:-1.7px;
  font-weight:900;
}
.emp-hero-copy h1 em{font-style:normal;color:#004f43}
.emp-hero-copy p{
  max-width:610px;
  margin:0 0 38px;
  color:#687486;
  font-size:18px;
  line-height:1.45;
}
.emp-primary-btn{
  height:64px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 30px;
  border-radius:18px;
  background:#004f43;
  color:#fff;
  font-size:18px;
  font-weight:800;
}
.emp-primary-btn.center{margin:52px auto 0;display:flex;width:max-content}
.emp-photo-card{
  position:relative;
  height:704px;
  border:5px solid #f86436;
  border-radius:76px;
  overflow:visible;
}
.emp-photo-bg{
  position:absolute;inset:0;border-radius:70px;overflow:hidden;
  background:
    radial-gradient(circle at 75% 66%, rgba(255,255,255,.28), rgba(255,255,255,0) 22%),
    linear-gradient(90deg, rgba(25,42,54,.15), rgba(255,255,255,.02)),
    url('/assets/img/hero-bg.svg') center/cover no-repeat;
  filter:saturate(.93) brightness(1.08);
}
.emp-photo-bg::after{
  content:'';
  position:absolute;
  right:12%;top:10%;
  width:44%;height:78%;
  border-radius:42% 42% 18% 18%;
  background:linear-gradient(180deg,#27364b,#111827);
  opacity:.18;
}
.emp-float{
  position:absolute;
  display:flex;align-items:center;gap:14px;
  height:68px;
  padding:0 26px;
  border-radius:18px;
  color:#fff;
  box-shadow:0 14px 38px rgba(0,0,0,.18);
  font-size:18px;
}
.emp-float-top{top:70px;left:120px;background:#57c6c0}
.emp-float-orange{left:-56px;bottom:105px;background:#f56b3d}
.emp-float-ico{
  width:38px;height:38px;border-radius:12px;background:rgba(255,255,255,.22);display:inline-block;
}
.emp-response-card{
  position:absolute;
  right:-72px;
  bottom:158px;
  width:470px;
  min-height:150px;
  border:4px solid #98a0ad;
  border-radius:28px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(6px);
  padding:34px 30px;
  color:#4e5663;
  box-shadow:0 16px 38px rgba(0,0,0,.15);
}
.emp-response-line{height:26px;border-radius:9px;background:#f1f3f5;margin:20px 0 18px}
.emp-response-row{display:flex;align-items:center;gap:18px}
.emp-response-row span{width:132px;height:24px;border-radius:8px;background:#fff}
.emp-response-row i{flex:1;height:24px;border-radius:12px;background:#f0f3f6}
.emp-response-row b{background:#dcffd8;color:#45c744;border-radius:13px;padding:11px 20px;text-transform:uppercase;white-space:nowrap}

.emp-create{padding:54px 0 92px;background:#fff}
.emp-create-box{
  background:#f2f2f2;
  border-radius:56px;
  padding:70px 48px 64px;
  text-align:center;
}
.emp-create h2{font-size:48px;line-height:1.22;margin:0 0 24px;letter-spacing:-1px}
.emp-create p{max-width:820px;margin:0 auto 44px;color:#687486;font-size:20px;line-height:1.4}
.emp-create-form{display:flex;justify-content:center;gap:30px;margin:0 auto 42px}
.emp-create-form input,.emp-select,.emp-create-form button{
  height:60px;border-radius:18px;border:1px solid #dedede;background:#fff;
}
.emp-create-form input{width:360px;padding:0 22px;font-size:18px}
.emp-select{width:360px;position:relative;text-align:left;padding:11px 46px 7px 21px}
.emp-select span{display:block;color:#98a1ad;font-size:12px;margin-bottom:3px}
.emp-select select{border:0;background:transparent;width:100%;font-size:17px;color:#172438;outline:0}
.emp-create-form button{border:0;background:#004f43;color:#fff;font-size:17px;font-weight:800;padding:0 28px}
.emp-tags{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;max-width:760px;margin:0 auto}
.emp-tags b{width:100%;font-size:16px}
.emp-tags span{background:#fff;border-radius:999px;padding:8px 17px;font-size:15px}

.emp-steps{padding:54px 0 94px;background:#fff}
.emp-steps h2,.emp-save h2,.emp-do h2,.emp-pricing h2,.emp-reviews h2,.emp-trust h2,.emp-faq h2{
  text-align:center;
  font-size:54px;
  line-height:1.18;
  letter-spacing:-1.2px;
  margin:0 0 72px;
}
.emp-steps-grid{display:grid;grid-template-columns:1.35fr .7fr;gap:34px;align-items:center}
.emp-steps-preview{
  background:#f86436;
  border-radius:54px;
  padding:76px 70px 86px;
}
.emp-preview-inner{position:relative;background:#f2f2f2;border-radius:36px;padding:48px 32px 34px}
.emp-preview-window{background:#fff;border-radius:30px;padding:28px;text-align:center;min-height:290px}
.emp-preview-window h3{font-size:22px;margin:0 0 10px}.emp-preview-window p{color:#687486;margin:0 0 30px}
.fake-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}.fake-form-grid span{height:42px;border:2px solid #dce2e7;border-radius:12px}
.emp-stepper{position:absolute;left:16%;right:16%;bottom:-44px;height:72px;border-radius:22px;background:#fff3ef;box-shadow:0 12px 32px rgba(0,0,0,.14);display:flex;align-items:center;justify-content:center;gap:17px;color:#aaa;font-size:13px}
.emp-stepper b,.emp-stepper i{display:grid;place-items:center;width:34px;height:34px;border-radius:50%;font-style:normal;background:#dfe3e8}.emp-stepper b{background:#0b1831;color:#fff}
.emp-step-list article{position:relative;border-bottom:1px solid #dadfe5;padding:0 64px 34px 0;margin-bottom:34px}
.emp-step-list small{font-size:24px;color:#aeb4be}.emp-step-list article.is-active small{color:#f86436}
.emp-step-list h3{font-size:28px;line-height:1.25;margin:18px 0 18px}.emp-step-list p{font-size:20px;color:#687486;line-height:1.35}.emp-step-list span{position:absolute;right:0;top:0;font-size:54px;color:#c4c9d0}.emp-step-list article.is-active span{color:#f86436}

.emp-live,.emp-pricing,.emp-final{background:#004f43;color:#fff}
.emp-live{padding:118px 0 116px}.emp-eyebrow{text-align:center;font-size:17px;font-weight:800;margin:0 0 26px}.emp-eyebrow span{display:inline-block;width:10px;height:10px;background:#21d939;border-radius:50%;margin-right:12px}
.emp-live h2{font-size:54px;text-align:center;margin:0 0 64px}.emp-live-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px}
.emp-live-grid article{background:#fff;color:#142033;border-radius:24px;padding:28px 26px 26px}.emp-live-grid h3{font-size:26px;line-height:1.2;margin:0 0 22px}.emp-live-grid p{color:#8b93a1;margin:0 0 24px}.emp-live-grid hr{border:0;border-top:1px solid #ddd;margin:0 0 26px}.emp-live-grid ul{list-style:none;padding:0;margin:0 0 22px;display:grid;gap:14px;color:#687486}.emp-live-grid b{color:#0c1a31}.match{display:inline-block;border-radius:10px;padding:8px 14px}.match.good{background:#dcffd8;color:#0cbb27}.match.warn{background:#ffecd9;color:#f2693c}

.emp-save{padding:84px 0 96px}.emp-save-grid{display:grid;grid-template-columns:1fr 1fr;gap:38px;align-items:center}.emp-save-list{display:grid;gap:32px}.emp-save-list article{background:#f2f2f2;border-radius:26px;min-height:132px;display:grid;grid-template-columns:190px 1fr;align-items:center;padding:28px 42px}.emp-save-list b{font-size:36px}.emp-save-list span{font-size:22px;line-height:1.25}.emp-save-media{position:relative;min-height:470px}.laptop-card{position:absolute;inset:0;border:5px solid #f86436;border-radius:34px;background:linear-gradient(135deg,#f5e4c5,#dceef7 62%,#6c97bf);overflow:hidden}.laptop-card::after{content:'vacandi';position:absolute;left:36%;top:42%;font-size:46px;font-weight:900;color:#004f43;transform:rotate(9deg)}.emp-save-badge{position:absolute;display:inline-flex;align-items:center;gap:10px;height:68px;padding:0 24px;border-radius:18px;background:#fff;box-shadow:0 15px 36px rgba(0,0,0,.12);font-weight:800;color:#004f43}.emp-save-badge.b1{right:-34px;top:36px}.emp-save-badge.b2{left:-26px;top:118px;background:#f56b3d;color:#fff}.emp-save-badge.b3{right:-25px;bottom:62px;background:#64d4cf;color:#fff}

.emp-do{padding:84px 0 92px}.emp-mini-title{text-align:center;margin:0 0 22px;color:#687486;font-weight:800}.emp-do h2{margin-bottom:72px}.emp-do-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px}.emp-do-grid article{position:relative;min-height:430px;border:1.5px solid #004f43;border-radius:34px;padding:36px 32px;overflow:hidden}.emp-do-grid article.orange{background:#f86436;color:#fff;border-color:#004f43}.emp-do-grid article.dark{background:#004f43;color:#fff;border-color:#473cff}.emp-do-grid h3{font-size:26px;line-height:1.3;margin:0}.emp-do-grid b{position:absolute;right:28px;top:64px;font-size:260px;line-height:.8;color:rgba(0,79,67,.14);font-weight:900}.emp-do-grid .orange b,.emp-do-grid .dark b{color:rgba(255,255,255,.22)}.emp-do-grid p{position:absolute;left:32px;right:32px;bottom:34px;font-size:18px;line-height:1.45;margin:0}

.emp-pricing{padding:94px 0 92px}.emp-pricing h2{margin-bottom:22px;color:#fff}.emp-pricing>div>p{text-align:center;margin:0 0 64px;color:rgba(255,255,255,.82);font-size:18px}.emp-price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:34px}.emp-price-grid article{position:relative;background:#fff;color:#142033;border:4px solid #f86436;border-radius:28px;padding:48px 34px 34px}.popular{position:absolute;top:-27px;left:28px;background:#f86436;color:#fff;border-radius:999px;padding:9px 18px;font-weight:800}.emp-price-grid h3{font-size:28px;margin:0 0 30px}.emp-price-grid strong{display:block;font-size:38px;line-height:1.1;margin-bottom:10px}.emp-price-grid em{font-style:normal;color:#687486}.emp-price-grid ul{margin:28px 0 0;padding:26px 0 0;border-top:1px solid #ddd;list-style:none;display:grid;gap:18px}.emp-price-grid li::before{content:'✓';background:#067d6c;color:#fff;border-radius:50%;padding:2px 6px;margin-right:12px}.price-btn{display:flex;width:max-content;margin:58px auto 0;background:#fff;color:#004f43;border-radius:18px;height:62px;padding:0 32px;align-items:center;font-weight:800}

.emp-reviews{padding:112px 0}.emp-reviews h2{margin-bottom:64px}.review-row{position:relative;display:grid;grid-template-columns:repeat(5,1fr);gap:28px}.review-row article{min-height:360px;border-radius:20px;background:#f0f0f0;padding:30px 24px;display:flex;flex-direction:column}.review-row p{font-size:16px;line-height:1.25;margin:0 0 auto}.avatar,.review-mark{width:42px;height:42px;border-radius:50%;margin-top:24px;background:linear-gradient(135deg,#fbc2a3,#253858)}.review-mark{display:grid;place-items:center;background:transparent;color:#004f43;font-size:40px}.review-row b{margin-top:12px}.review-row span{color:#687486;font-size:14px}.review-next{position:absolute;right:-74px;top:50%;width:56px;height:56px;border:0;border-radius:16px;background:#004f43;color:#fff;font-size:42px}

.emp-trust{padding:60px 0 130px;overflow:hidden}.emp-trust h2{margin-bottom:62px}.logo-cloud{display:grid;grid-template-columns:repeat(5,1fr);gap:42px 60px;align-items:center}.logo-cloud span{display:grid;place-items:center;min-height:74px;font-size:32px;font-weight:900;color:#222;background:#fff}.logo-cloud small{font-size:18px;font-weight:600}

.emp-faq{padding:80px 0 88px}.emp-faq h2{margin-bottom:60px}.faq-grid{display:grid;grid-template-columns:.72fr 1.28fr;gap:36px}.faq-help{position:relative;min-height:575px;background:#f86436;color:#fff;border-radius:34px;padding:52px 32px;overflow:hidden}.faq-help h3{font-size:34px;line-height:1.18;margin:0 0 28px}.faq-help b{position:absolute;right:-15px;bottom:-80px;font-size:520px;line-height:.8;color:rgba(255,255,255,.55)}.faq-help a{position:absolute;left:32px;bottom:32px;background:#fff;color:#004f43;border-radius:18px;height:56px;padding:0 24px;display:flex;align-items:center;font-weight:800}.faq-list{background:#f8f8f8;border-radius:34px;padding:32px}.faq-list details{background:#fff;border-radius:18px;margin-bottom:22px;padding:24px 28px}.faq-list summary{cursor:pointer;font-size:24px;font-weight:900;list-style:none}.faq-list summary::-webkit-details-marker{display:none}.faq-list p{font-size:18px;line-height:1.45;color:#687486}

.emp-final{padding:120px 0 126px;text-align:center}.emp-final .subscribe-rocket{margin:0 auto 46px}.emp-final h2{font-size:60px;line-height:1.18;letter-spacing:-1.3px;margin:0 0 42px}.emp-final p{margin:0 auto 44px;max-width:900px;font-size:18px;color:rgba(255,255,255,.83)}.emp-final a{height:62px;background:#fff;color:#004f43;border-radius:18px;display:inline-flex;align-items:center;padding:0 32px;font-weight:800}

@media(max-width:1200px){
  .emp-hero-grid,.emp-steps-grid,.emp-save-grid,.faq-grid{grid-template-columns:1fr}
  .emp-live-grid,.emp-do-grid{grid-template-columns:repeat(2,1fr)}
  .emp-price-grid,.review-row,.logo-cloud{grid-template-columns:repeat(2,1fr)}
  .emp-response-card{right:20px;width:380px}
}
@media(max-width:760px){
  .emp-hero{padding:90px 0 42px}.emp-hero-copy{min-height:auto;border-radius:32px;padding:42px 22px}.emp-hero-copy h1{font-size:40px}.emp-photo-card{height:390px;border-radius:34px}.emp-photo-bg{border-radius:28px}.emp-float,.emp-response-card{display:none}
  .emp-create-box{border-radius:30px;padding:42px 18px}.emp-create h2,.emp-steps h2,.emp-save h2,.emp-do h2,.emp-pricing h2,.emp-reviews h2,.emp-trust h2,.emp-faq h2{font-size:34px}.emp-create-form{flex-direction:column;gap:12px}.emp-create-form input,.emp-select,.emp-create-form button{width:100%}
  .emp-steps-preview{border-radius:28px;padding:28px 16px 56px}.emp-stepper{display:none}.emp-step-list h3{font-size:22px}
  .emp-live-grid,.emp-do-grid,.emp-price-grid,.review-row,.logo-cloud{grid-template-columns:1fr}.emp-save-list article{grid-template-columns:1fr;gap:12px}.emp-save-media{min-height:320px}.emp-save-badge{display:none}
  .faq-help{min-height:330px}.faq-help b{font-size:300px}.emp-final h2{font-size:38px}
}


/* ===== Employer white footer from reference screenshot ===== */
.emp-white-footer{
  background:#fff;
  color:#071736;
  padding:70px 0 64px;
  border-top:1px solid #eef0f2;
}
.emp-footer-wrap{
  max-width:1660px;
  min-height:152px;
  display:grid;
  grid-template-columns:170px 1.1fr 1.32fr 1.12fr 130px;
  column-gap:74px;
  align-items:start;
}
.emp-footer-logo a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#004f43;
  font-weight:900;
  font-size:20px;
  letter-spacing:-.5px;
  margin-top:2px;
}
.emp-footer-logo .footer-logo-mark{
  width:23px;
  height:23px;
  flex:0 0 23px;
}
.emp-footer-logo .footer-logo-mark i{
  background:#004f43;
}
.emp-footer-links{
  display:grid;
  gap:24px;
}
.emp-footer-links a{
  color:#071736;
  font-size:17px;
  line-height:1.2;
  font-weight:500;
}
.emp-footer-links a:hover{color:#004f43}
.emp-footer-socials{
  display:flex;
  justify-content:flex-end;
  gap:14px;
}
.emp-footer-socials a{
  width:40px;
  height:40px;
  border:1px solid #d8dce2;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#071736;
  background:#fff;
}
.emp-footer-socials svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.emp-footer-socials a[aria-label="Telegram"] svg{
  fill:currentColor;
  stroke:none;
}
.employer-telegram-float{
  position:fixed;
  right:32px;
  bottom:32px;
  z-index:60;
}
@media(max-width:1200px){
  .emp-footer-wrap{
    grid-template-columns:1fr 1fr;
    gap:34px 40px;
  }
  .emp-footer-socials{justify-content:flex-start}
}
@media(max-width:760px){
  .emp-white-footer{padding:42px 0}
  .emp-footer-wrap{
    grid-template-columns:1fr;
    gap:24px;
  }
  .emp-footer-links{gap:14px}
  .emp-footer-links a{font-size:15px}
  .emp-footer-socials{gap:10px}
}


/* ===== Automation modal/forms ===== */
#landing-root.is-loading{opacity:.45;pointer-events:none;transition:opacity .18s ease}
.auth-modal-card{width:min(520px,100%)}
.auth-tabs{display:flex;gap:8px;margin-bottom:22px;background:#f3f4f6;border-radius:16px;padding:5px}
.auth-tab{flex:1;height:44px;border:0;border-radius:12px;background:transparent;color:#172438;font-weight:800;cursor:pointer}
.auth-tab.is-active{background:#004f43;color:#fff}
.auth-form{display:none;gap:14px}
.auth-form.is-active{display:grid}
.auth-form label{display:grid;gap:7px;color:#172438;font-weight:700;font-size:14px}
.auth-form input,.auth-form select{height:48px;border:1px solid #d9dde3;border-radius:14px;padding:0 14px;background:#fff;color:#172438}
.auth-submit{height:50px;border:0;border-radius:15px;background:#004f43;color:#fff;font-weight:900;cursor:pointer}
.auth-message{margin:0;min-height:20px;color:#004f43;font-size:14px}
.auth-message.is-error{color:#d22}
.dashboard-page{background:#f5f7f9;min-height:100vh;padding:110px 0 60px}
.dashboard-shell{display:grid;grid-template-columns:280px 1fr;gap:24px}
.dashboard-sidebar,.dashboard-content{background:#fff;border:1px solid #e5e7eb;border-radius:24px;padding:24px}
.dashboard-sidebar a{display:block;padding:13px 14px;border-radius:14px;color:#172438;font-weight:700}
.dashboard-sidebar a:hover,.dashboard-sidebar a.is-active{background:#004f43;color:#fff}
.dash-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.dash-card{background:#f6f7f8;border-radius:18px;padding:20px}
.dash-card b{display:block;font-size:28px;color:#004f43}
@media(max-width:900px){.dashboard-shell{grid-template-columns:1fr}.dash-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.dash-grid{grid-template-columns:1fr}}


/* === SEO + multilang + Russia pages === */
.public-header{background:#fff!important;border-bottom:1px solid #e5e7eb!important;backdrop-filter:none!important}.public-header .main-nav a{color:#172438!important;opacity:1}.public-header .main-nav a.is-active{color:#004f43;border-bottom:2px solid #004f43;}.public-header .btn-primary{background:#004f43;color:#fff}.public-header .btn-light{background:#f4f5f6;color:#004f43}.lang-dropdown{position:relative}.lang-toggle{border:0;background:transparent;display:flex;gap:8px;align-items:center;cursor:pointer}.lang-menu{position:absolute;right:0;top:46px;width:150px;background:#fff;border:1px solid #e5e7eb;border-radius:8px;box-shadow:0 12px 28px rgba(15,23,42,.12);display:none;overflow:hidden}.lang-dropdown.is-open .lang-menu{display:block}.lang-menu a{display:block;padding:12px 16px}.lang-menu a.is-active{background:#effdfb;color:#004f43}#landing-root.is-loading{opacity:.45;pointer-events:none;transition:.18s}
.vacancies-page,.about-page,.support-page,.faq-page,.vacancy-detail-page{background:#efefef;min-height:100vh}.vacancies-search{display:grid;grid-template-columns:1fr 108px;gap:12px;margin:0 auto 18px;max-width:1420px}.vac-search-input{height:58px;background:#fff;border:1px solid #d8dde3;border-radius:14px;display:flex;align-items:center;gap:14px;padding:0 18px;color:#7c8794}.vac-search-input input{border:0;outline:0;width:100%;height:100%;background:transparent}.vacancies-search button{border:0;border-radius:14px;background:#004f43;color:#fff;font-weight:800}.vac-found{max-width:1420px;margin:0 auto 24px;color:#7a8492}.vacancies-layout{max-width:1420px;margin:auto;display:grid;grid-template-columns:300px 1fr;gap:28px}.filters-card{background:#fff;border-radius:20px;padding:24px;border:1px solid #e4e6e9;height:max-content}.filters-card h3{margin:0 0 16px}.filter-group{border-top:1px solid #eceff2;padding:18px 0;display:grid;gap:12px}.filter-group h4{margin:0;display:flex;justify-content:space-between;color:#667084}.filter-group label{display:block;color:#596374}.filter-group select{width:100%;height:42px;border:1px solid #e2e5e9;border-radius:10px;padding:0 10px}.filter-submit{width:100%;height:46px;border:0;border-radius:12px;background:#004f43;color:#fff;font-weight:800}.vac-list{display:grid;gap:12px}.vac-list-card{position:relative;min-height:148px;background:#fff;border:1px solid #e1e5e9;border-radius:20px;padding:28px 78px 24px 28px}.vac-list-card h2{font-size:23px;margin:0 0 14px}.vac-salary{color:#004f43;font-size:18px;margin:0 0 8px}.vac-tags{display:inline-flex;gap:10px;margin-left:12px}.vac-tags span{background:#f0f1f3;color:#818997;border-radius:8px;padding:6px 12px}.vac-meta{color:#9aa3af}.vac-logo{position:absolute;right:28px;top:30px;width:38px;height:38px;background:#004f43;border-radius:50%}.vac-logo i{position:absolute;left:17px;top:7px;width:4px;height:12px;border-radius:6px;background:#fff;transform-origin:50% 12px}.vac-logo i:nth-child(1){transform:rotate(0)}.vac-logo i:nth-child(2){transform:rotate(45deg)}.vac-logo i:nth-child(3){transform:rotate(90deg)}.vac-logo i:nth-child(4){transform:rotate(135deg)}.vac-logo i:nth-child(5){transform:rotate(180deg)}.vac-logo i:nth-child(6){transform:rotate(225deg)}.vac-logo i:nth-child(7){transform:rotate(270deg)}.vac-logo i:nth-child(8){transform:rotate(315deg)}
.mission-card{background:#004f43;color:#fff;border-radius:72px;padding:80px;min-height:450px;display:grid;place-items:center;text-align:center;margin-bottom:120px}.mission-card span{background:#fff;color:#172438;border-radius:999px;padding:10px 22px}.mission-card h1{max-width:1050px;font-size:50px;line-height:1.28}.about-page h2{text-align:center;font-size:46px;margin:0 0 42px}.adv-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-bottom:120px}.adv-grid article{background:#fff;border-radius:28px;padding:30px}.adv-illustration{height:230px;border-radius:22px;background:linear-gradient(135deg,#e8fff8,#b6d9cc);position:relative;display:grid;place-items:center}.adv-1 b{background:#f86436;color:#fff;padding:12px 22px;border-radius:8px;transform:rotate(5deg)}.adv-2:before{content:'⌕✓';font-size:95px;color:#004f43}.adv-3:before{content:'🤝⭐';font-size:92px}.adv-grid h3{font-size:26px}.about-cta{background:#fff;border-radius:72px;text-align:center;padding:72px;margin-bottom:60px}.about-cta h2{margin-bottom:8px}.about-cta a{display:inline-flex;margin-top:28px;background:#004f43;color:#fff;border-radius:16px;padding:18px 28px;font-weight:800}
.support-page h1,.faq-page h1{text-align:center;font-size:60px;margin:0 0 24px}.support-page>div>p,.faq-page>div>p{text-align:center}.support-grid{display:grid;grid-template-columns:.85fr 1.25fr;gap:28px;margin-top:50px}.support-contacts-card{background:#004f43;color:#fff;border-radius:34px;padding:36px}.support-contacts-card h2{font-size:34px}.support-contacts-card h2 span{float:right;opacity:.55}.support-contacts-card>div:not(.support-socials){display:grid;grid-template-columns:40px 1fr auto;gap:14px;align-items:center;margin-top:22px}.support-contacts-card b{width:38px;height:38px;background:#fff;color:#004f43;border-radius:10px;display:grid;place-items:center}.support-contacts-card a{color:#fff}.support-contacts-card em{background:#effffb;color:#004f43;border-radius:999px;padding:5px 10px;font-style:normal}.support-socials{display:flex;gap:18px;margin-top:45px}.support-socials a{width:42px;height:42px;background:#fff;color:#004f43;border-radius:50%;display:grid;place-items:center;font-weight:900}.support-form{background:#f2f2f2;border-radius:34px;padding:28px;display:grid;gap:22px}.support-form input,.support-form textarea{border:1px solid #d9dde3;background:#fff;border-radius:14px;padding:18px}.support-form textarea{height:180px;resize:vertical}.support-form .two{display:grid;grid-template-columns:1fr 1fr;gap:20px}.support-form button{justify-self:end;background:#c6c8ce;color:#fff;border:0;border-radius:16px;height:58px;padding:0 28px;font-weight:800}
.faq-shell{background:#fff;border-radius:72px;padding:52px 58px;margin-top:40px}.faq-tabs{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:40px}.faq-tabs a{background:#f2f3f4;border-radius:999px;padding:10px 18px}.faq-tabs a.is-active{background:#f86436;color:#fff}.faq-items{display:grid;gap:18px}.faq-items details{background:#fafafa;border-radius:14px;padding:22px}.faq-items summary{cursor:pointer;list-style:none;font-size:22px;font-weight:900}.faq-items summary span{display:block;color:#f86436;font-size:14px;margin-bottom:8px}.faq-items p{color:#667084}.faq-bottom-cta{margin:56px 0 0;background:#004f43;color:#fff;border-radius:32px;text-align:center;padding:40px}.faq-bottom-cta a{display:inline-flex;background:#fff;color:#004f43;border-radius:14px;padding:15px 24px;font-weight:800}
.vacancy-detail-grid{display:grid;grid-template-columns:1fr 390px;gap:28px;align-items:start}.back-link{display:inline-block;color:#004f43;margin-bottom:24px}.vacancy-detail-card,.side-card{background:#fff;border-radius:34px;padding:40px;position:relative}.vacancy-detail-card h1{font-size:28px}.detail-logo{right:40px;top:40px}.vacancy-text{color:#5e6978;line-height:1.7}.published{margin-top:30px;color:#99a2ae}.detail-apply-btn,.apply-card button{width:100%;height:56px;border:0;border-radius:14px;background:#004f43;color:#fff;font-weight:900}.vacancy-side{display:grid;gap:20px;position:sticky;top:100px}.employer-mini{display:flex;align-items:center;gap:16px}.employer-mini span{width:42px;height:42px;background:#f2f3f4;border-radius:12px;display:grid;place-items:center;color:#004f43;font-weight:900}.ai-note{background:#e6fff3;border-radius:16px;padding:18px}
.auth-ui-modal,.support-modal{z-index:120;background:rgba(0,0,0,.28)}.auth-choice-card,.auth-start-card,.support-help-card{width:min(420px,calc(100% - 20px));background:#fff;border-radius:18px;padding:26px;position:relative;box-shadow:0 20px 60px rgba(0,0,0,.25)}.auth-close,.auth-back{position:absolute;top:16px;border:0;background:transparent;font-size:28px;color:#667084}.auth-close{right:18px}.auth-back{left:18px}.auth-choice-title{text-align:center;font-size:22px;font-weight:900;margin-bottom:24px}.auth-role-btn{width:100%;height:62px;border:1px solid #e0e3e6;border-radius:16px;background:#fff;margin-bottom:12px;text-align:left;padding:0 18px;font-size:17px}.auth-role-btn.is-selected{border-color:#004f43}.auth-role-icon{display:inline-grid;place-items:center;width:38px;height:38px;background:#f4f5f6;border-radius:10px;margin-right:14px}.auth-main-btn{width:100%;height:56px;border:0;border-radius:16px;background:#004f43;color:#fff;font-weight:900;margin-top:10px}.auth-register-link{display:block;text-align:center;margin-top:18px;color:#004f43;text-decoration:underline}.auth-logo-line{text-align:center;color:#004f43;font-size:26px}.auth-start-card h3{text-align:center}.auth-tabs{display:flex;background:#f1f1f1;border-radius:18px;padding:4px;margin:18px 0}.auth-tab{flex:1;height:40px;border:0;border-radius:14px;background:transparent}.auth-tab.is-active{background:#004f43;color:#fff}.auth-form{display:none;gap:12px}.auth-form.is-active{display:grid}.auth-form label{display:grid;gap:6px;color:#99a2ae}.auth-form input{height:54px;border:1px solid #dadde1;border-radius:16px;padding:0 16px}.auth-message.is-error{color:#d22}.support-help-card{width:min(700px,calc(100% - 20px));border-radius:12px}.support-modal-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}.support-modal-actions a{height:62px;border:1px solid #d9dde3;border-radius:14px;display:flex;align-items:center;gap:14px;padding:0 18px;font-weight:800}.support-modal-actions span{width:34px;height:34px;background:#f3f4f6;border-radius:10px;display:grid;place-items:center}.support-contact-line{display:grid;grid-template-columns:38px 110px 1fr auto;gap:10px;align-items:center;margin:14px 0}.support-contact-line span{width:38px;height:38px;background:#f3f4f6;border-radius:10px;display:grid;place-items:center}.support-contact-line a{color:#2f74ff}.support-contact-line em{font-style:normal;background:#fafafa;border-radius:999px;padding:6px 10px;color:#667084}.support-note{font-size:14px;color:#172438}
.emp-white-footer{background:#fff;color:#071736;padding:60px 0;border-top:1px solid #e5e7eb}.emp-footer-wrap{display:grid;grid-template-columns:170px 1fr 1.25fr 1fr 110px;gap:60px}.emp-footer-logo a{display:flex;align-items:center;gap:8px;color:#004f43;font-weight:900;font-size:20px}.emp-footer-links{display:grid;gap:18px}.emp-footer-socials{display:flex;gap:12px}.emp-footer-socials a{width:40px;height:40px;border:1px solid #d8dce2;border-radius:50%;display:grid;place-items:center}.employer-telegram-float{position:fixed;right:22px;bottom:22px}.dashboard-page,.admin-page{background:#f5f7f9;min-height:100vh;padding:110px 0 60px}.dashboard-shell,.admin-shell{display:grid;grid-template-columns:280px 1fr;gap:24px}.dashboard-sidebar,.dashboard-content,.admin-sidebar,.admin-content{background:#fff;border-radius:24px;padding:24px;border:1px solid #e5e7eb}.dashboard-sidebar a,.admin-sidebar a{display:block;padding:13px;border-radius:12px;font-weight:700}.dashboard-sidebar a.is-active,.admin-sidebar a.is-active,.dashboard-sidebar a:hover,.admin-sidebar a:hover{background:#004f43;color:#fff}.dash-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}.dash-card{background:#f3f5f7;border-radius:18px;padding:20px}.dash-card b{font-size:30px;color:#004f43}.admin-toolbar{display:flex;gap:12px;margin-bottom:20px}.admin-table{width:100%;border-collapse:collapse}.admin-table th,.admin-table td{padding:10px;border-bottom:1px solid #e5e7eb;text-align:left}.admin-form{display:grid;gap:12px}.admin-form input,.admin-form textarea{width:100%;border:1px solid #d9dde3;border-radius:10px;padding:10px}.admin-form textarea{min-height:90px}.admin-modal-card{width:min(760px,100%);max-height:90vh;overflow:auto}
@media(max-width:1100px){.vacancies-layout,.support-grid,.vacancy-detail-grid,.dashboard-shell,.admin-shell{grid-template-columns:1fr}.adv-grid{grid-template-columns:1fr}.emp-footer-wrap{grid-template-columns:1fr 1fr}.vacancy-side{position:static}.mission-card h1{font-size:36px}.support-form .two{grid-template-columns:1fr}}@media(max-width:700px){.vacancies-page,.about-page,.support-page,.faq-page,.vacancy-detail-page{}.vacancies-search{grid-template-columns:1fr}.mission-card{border-radius:32px;padding:40px 20px}.mission-card h1{font-size:28px}.faq-shell{border-radius:30px;padding:24px}.support-contact-line{grid-template-columns:38px 1fr}.support-contact-line em{grid-column:2}.emp-footer-wrap{grid-template-columns:1fr}.dash-grid{grid-template-columns:1fr}.vac-list-card{padding-right:28px}.vac-logo{display:none}}


/* v5 dynamic compatibility */
.lang-dropdown{position:relative}.lang-menu{display:none;position:absolute;right:0;top:100%;background:#fff;border:1px solid #e5e7eb;border-radius:10px;box-shadow:0 12px 35px rgba(0,0,0,.12);overflow:hidden;z-index:99}.lang-dropdown.is-open .lang-menu{display:block}.lang-menu a{display:block;padding:10px 16px;white-space:nowrap;color:#172438}.lang-menu a.is-active{background:#eefaf7;color:#004f43}.auth-message.is-error{color:#dc2626}#landing-root.is-loading{opacity:.45;pointer-events:none;transition:.18s}


/* ===== v6 image logo update ===== */
.brand.brand-image-link{
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  flex:0 0 auto;
  min-width:170px;
  text-decoration:none;
}
.brand-logo-img{
  display:block;
  width:178px;
  max-width:178px;
  height:auto;
  object-fit:contain;
}
.footer-logo.footer-logo-image{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}
.footer-logo-img{
  display:block;
  width:178px;
  max-width:178px;
  height:auto;
  object-fit:contain;
}
@media (max-width: 768px){
  .brand.brand-image-link{min-width:138px}
  .footer-logo-img{width:145px;max-width:145px}
}


/* ===== PATCH: language RU icon yonma-yon chiqishi ===== */
.lang-select .lang-toggle{
  width:auto !important;
  min-width:56px;
  height:42px;
  padding:0 10px;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  gap:6px;
  place-items:unset !important;
}

.lang-select .lang-toggle span{
  display:inline-flex;
  align-items:center;
  line-height:1;
}

.lang-select .lang-toggle{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:6px;
  line-height:1;
}

.lang-select .lang-toggle span{
  display:inline-flex;
  align-items:center;
  line-height:1;
}

/* Mobile holatda ham tagiga tushib qolmasin */
@media (max-width:520px){
  .lang-select .lang-toggle{
    width:auto !important;
    min-width:34px;
    height:22px;
    padding:0 5px;
    gap:3px;
    display:inline-flex !important;
  }

  .lang-select .lang-toggle svg{
    width:10px;
    height:10px;
  }
}

/* ===== PATCH: role-based auth, jobseeker resume wizard, employer vacancy wizard ===== */
.profile-icon-btn{
  width:42px;
  min-width:42px;
  padding:0;
  display:inline-grid;
  place-items:center;
}

.auth-ui-modal{padding:18px}
.auth-choice-card,.auth-start-card{
  width:min(430px, 100%);
  background:#fff;
  border-radius:20px;
  padding:26px 24px 18px;
  position:relative;
  box-shadow:0 24px 70px rgba(0,0,0,.22);
}
.auth-choice-title{
  text-align:center;
  font-size:24px;
  font-weight:900;
  color:#172438;
  margin:0 0 24px;
}
.auth-role-btn{
  width:100%;
  height:64px;
  border:1px solid #d9dde3;
  border-radius:15px;
  background:#fff;
  display:flex;
  align-items:center;
  gap:14px;
  padding:0 18px;
  color:#172438;
  font-size:18px;
  font-weight:700;
  cursor:pointer;
  margin-bottom:12px;
}
.auth-role-btn.is-selected{
  border-color:#004f43;
  box-shadow:0 0 0 1px #004f43 inset;
}
.auth-role-icon{
  width:42px;height:42px;border-radius:10px;background:#f4f5f6;
  display:grid;place-items:center;color:#172438;flex:0 0 auto;
}
.auth-main-btn{
  width:100%;height:58px;border:0;border-radius:15px;background:#005a4d;color:#fff;
  font-weight:900;font-size:16px;cursor:pointer;margin-top:12px;
}
.auth-main-btn:disabled{background:#c7c9ce;cursor:not-allowed}
.auth-register-link,.auth-login-link{
  display:block;text-align:center;margin-top:18px;color:#005a4d;text-decoration:underline;font-size:17px;
}
.auth-close,.auth-back{border:0;background:transparent;color:#7c8795;cursor:pointer}
.auth-close{position:absolute;top:18px;right:18px;font-size:30px;line-height:1}
.auth-back{position:absolute;top:20px;left:18px;font-size:24px}
.auth-logo-line{display:flex;justify-content:center;align-items:center;min-height:38px;margin:0 auto 18px}
.auth-logo-line img{max-width:170px;max-height:42px;object-fit:contain}
.auth-start-card h3{margin:0 0 20px;text-align:center;font-size:20px;font-weight:900;color:#343943}
.auth-tabs{display:flex;background:#f0f1f3;border-radius:18px;padding:5px;margin-bottom:18px}
.auth-tab{flex:1;height:43px;border:0;border-radius:14px;background:transparent;color:#172438;font-weight:800;cursor:pointer}
.auth-tab.is-active{background:#005a4d;color:#fff}
.auth-form{display:none;gap:12px}
.auth-form.is-active{display:grid}
.auth-form label{display:grid;gap:6px;font-size:13px;font-weight:600;color:#9aa3ae}
.auth-form input{
  width:100%;height:56px;border:1px solid #d9dde3;border-radius:15px;padding:0 14px;
  color:#172438;background:#fff;outline:none;font-size:16px;
}
.auth-form input:focus{border-color:#005a4d;box-shadow:0 0 0 1px #005a4d inset}
.auth-hint{margin:-2px 0 4px;color:#9aa3ae;font-size:13px;line-height:1.35}
.auth-message{min-height:20px;margin:4px 0 0;color:#005a4d;font-size:14px}
.auth-message.is-error{color:#dc2626}

.role-dashboard-page{
  min-height:100vh;
  background:#f1f1f1;
  padding:132px 0 80px;
}
.account-shell{width:min(1500px, calc(100% - 180px));margin:0 auto}
.account-shell h1{font-size:38px;letter-spacing:-.5px;margin:0 0 34px}
.account-tabs{
  display:flex;gap:34px;border-bottom:1px solid #c7ccd4;margin-bottom:28px;
}
.account-tabs a{padding:0 0 16px;color:#6b7483;font-weight:600}
.account-tabs a.is-active{color:#004f43;border-bottom:2px solid #004f43}
.account-card{
  background:#fff;border-radius:42px;padding:42px;margin-bottom:28px;
}
.account-primary,.flow-primary{
  display:inline-flex;align-items:center;justify-content:center;height:56px;padding:0 28px;border-radius:14px;
  border:0;background:#005a4d;color:#fff;font-weight:900;cursor:pointer;
}
.flow-secondary{
  display:inline-flex;align-items:center;justify-content:center;height:56px;padding:0 28px;border-radius:14px;
  border:0;background:#f3f4f5;color:#0f2137;font-weight:800;cursor:pointer;
}
.empty-state{
  min-height:180px;border:1px solid #edf0f3;border-radius:18px;display:grid;place-items:center;text-align:center;color:#6b7483;margin-top:24px;
}
.profile-photo-row{display:flex;align-items:center;gap:24px}
.profile-avatar{width:130px;height:130px;border:1px solid #005a4d;border-radius:50%;display:grid;place-items:center;font-size:42px;color:#005a4d;background:#effaf7}
.profile-form-grid,.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.profile-form-grid label{display:grid;gap:10px;font-weight:700}
.profile-form-grid input,.profile-form-grid select,.profile-form-grid textarea{
  height:58px;border:1px solid #d9dde3;border-radius:16px;padding:0 16px;background:#fff;
}
.profile-form-grid .full{grid-column:1/-1}
.contact-grid div{border:1px solid #d9dde3;border-radius:16px;padding:20px;display:grid;gap:6px}
.contact-grid a{color:#3b76ff}
.notifications-layout{display:grid;grid-template-columns:300px 1fr;gap:30px}
.notify-side label{display:flex;justify-content:space-between;margin:14px 0}
.notify-side button{height:42px;border:0;border-radius:10px;background:#0ea5e9;color:#fff;padding:0 18px}

.create-flow{text-align:center}
.flow-start h2,.flow-step h2{font-size:40px;margin:0 0 12px}
.flow-start p,.flow-step>p{color:#6f7785;margin:0 0 36px}
.flow-back-link{display:inline-block;margin-bottom:28px;color:#005a4d;text-decoration:underline}
.choice-stack{width:min(720px,100%);margin:0 auto;display:grid;gap:24px}
.choice-card{
  min-height:130px;border:1px solid #d9dde3;border-radius:28px;background:#fff;padding:28px 34px;
  display:grid;grid-template-columns:58px 1fr auto;gap:16px;align-items:center;text-align:left;cursor:pointer;
}
.choice-card.dashed{border-style:dashed}
.choice-card span{width:58px;height:58px;border-radius:14px;background:#f2f3f5;display:grid;place-items:center;font-size:25px}
.choice-card b{display:block;font-size:20px}.choice-card em{display:block;color:#6f7785;font-style:normal;margin-top:4px}.choice-card small{color:#8b94a3}
.flow-steps{
  display:flex;justify-content:center;gap:86px;margin-bottom:50px;
}
.flow-steps button{border:0;background:transparent;display:grid;gap:12px;place-items:center;color:#717b89}
.flow-steps b{width:44px;height:44px;border-radius:50%;background:#c7ccd4;color:#fff;display:grid;place-items:center}
.flow-steps .is-active b{background:#005a4d}
.flow-steps .is-done b{background:#22ad86}
.flow-steps .is-done b::before{content:"✓"}
.flow-steps .is-done b{font-size:0}
.flow-steps .is-done b::before{font-size:18px}
.flow-step{display:none}
.flow-step.is-active{display:block}
.flow-card{
  background:#fff;border-radius:42px;padding:42px;text-align:left;
  display:grid;grid-template-columns:1fr 1fr;gap:28px;border:1px solid #e3e7ec;
}
.flow-card label{display:grid;gap:10px;font-weight:800}
.flow-card input,.flow-card select,.flow-card textarea{
  width:100%;min-height:58px;border:1px solid #d9dde3;border-radius:16px;padding:0 16px;background:#fff;color:#172438;
}
.flow-card textarea{min-height:130px;padding:16px;resize:vertical}
.flow-card .full,.check-group.full,.simple-check.full,.add-line{grid-column:1/-1}
.flow-card small{color:#7b8492;font-weight:500}
.check-group{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.check-group b{width:100%;font-weight:900}
.check-group label,.simple-check{display:flex!important;align-items:center;gap:8px;font-weight:500!important}
.check-group input,.simple-check input{width:auto;height:auto;min-height:0}
.add-line{
  height:54px;border:1px solid #d9dde3;border-radius:16px;background:#f2f3f4;color:#172438;font-weight:700;display:flex;justify-content:center;align-items:center;gap:12px;
}
.add-line b{margin-left:auto;margin-right:18px;font-size:22px}
.flow-actions{display:flex;justify-content:flex-end;gap:18px;margin-top:28px}
.flow-primary.wide{width:100%;margin-top:20px}
.vacancy-preview-card,.publish-card{
  background:#fff;border-radius:42px;padding:38px;text-align:left;border:1px solid #e3e7ec;
}
.vacancy-preview-card h3{font-size:22px}.vacancy-preview-card em{font-style:normal;color:#6f7785;margin-left:14px}
.vacancy-preview-card dl{display:grid;grid-template-columns:150px 1fr;gap:12px}
.vacancy-preview-card article{border:1px solid #d9dde3;border-radius:18px;padding:22px;margin-top:18px}
.vacancy-preview-card h4{margin:0 0 14px}.vacancy-preview-card h4 button{margin-left:8px;border:0;background:#005a4d;color:#fff;border-radius:7px}
.skill-tags{display:flex;flex-wrap:wrap;gap:10px}.skill-tags span{border:1px solid #005a4d;border-radius:8px;padding:8px 12px;color:#005a4d}
.publish-grid{display:grid;grid-template-columns:1.4fr .9fr;gap:24px}
.channel-row{display:grid;grid-template-columns:24px 1fr auto;gap:12px;align-items:center;border:1px solid #d9dde3;border-radius:14px;padding:16px;margin:12px 0}
.channel-row.is-selected{border-color:#005a4d}
.pay-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}.pay-grid label{border:1px solid #d9dde3;border-radius:14px;padding:22px}
.publish-card strong{color:#005a4d}
@media(max-width:900px){
  .account-shell{width:calc(100% - 32px)}
  .account-tabs{overflow:auto;gap:20px}
  .flow-steps{gap:18px;overflow:auto;justify-content:flex-start}
  .flow-card,.profile-form-grid,.contact-grid,.publish-grid{grid-template-columns:1fr}
  .choice-card{grid-template-columns:48px 1fr}
  .choice-card small{grid-column:2}
  .notifications-layout{grid-template-columns:1fr}
}


/* ===== Optimized single-file additions: jobs / employers / candidates / news / admin ===== */
.mode-btn{display:inline-flex;align-items:center;justify-content:center;text-align:center;text-decoration:none}
.main-nav a.is-active{color:var(--green);}
.brand-image-link{min-width:auto}.brand-logo-img{display:block;max-width:168px;max-height:54px;object-fit:contain}
.site-header.is-scrolled .brand-logo-img,.public-header .brand-logo-img{max-height:46px}
.lang-toggle{height:42px;padding:0 12px;border-radius:12px;background:#fff;color:#172438;font-weight:800}.public-header .lang-toggle{background:#f4f5f6;color:#172438}
.plain-page,.candidates-page,.news-page{background:#efefef;min-height:100vh}
.page-hero-lite{background:#fff;border:1px solid #e4e7eb;border-radius:34px;padding:46px;margin-bottom:28px;box-shadow:0 20px 55px rgba(15,31,50,.05)}
.page-hero-lite span{display:inline-flex;background:#e9f8f5;color:#004f43;border-radius:999px;padding:8px 14px;font-weight:900;margin-bottom:18px}.page-hero-lite h1{margin:0 0 12px;font-size:46px;line-height:1.08;letter-spacing:-1.2px}.page-hero-lite p{margin:0;color:#667084;font-size:18px;max-width:760px;line-height:1.55}
.candidate-grid,.news-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.candidate-card,.news-card,.news-detail{background:#fff;border:1px solid #e2e6eb;border-radius:24px;padding:28px;box-shadow:0 14px 36px rgba(15,31,50,.045)}.candidate-card{display:flex;flex-direction:column;align-items:flex-start;min-height:260px}.candidate-avatar{width:58px;height:58px;border-radius:18px;background:#004f43;color:#fff;display:grid;place-items:center;font-size:26px;font-weight:900;margin-bottom:18px}.candidate-card h3{font-size:22px;line-height:1.25;margin:0 0 8px}.candidate-card p{color:#687385;margin:0 0 18px}.candidate-meta{display:flex;gap:10px;flex-wrap:wrap;margin:auto 0 18px}.candidate-meta span{background:#f1f3f5;border-radius:999px;padding:7px 12px;color:#667084;font-size:13px}.candidate-card button{height:44px;border:0;border-radius:12px;background:#004f43;color:#fff;padding:0 18px;font-weight:900;cursor:pointer}
.news-card img,.news-detail img{width:100%;height:210px;object-fit:cover;border-radius:18px;margin-bottom:18px;background:#f1f3f5}.news-card small,.news-detail small{display:inline-block;color:#7b8492;margin-bottom:12px}.news-card h2{margin:0 0 12px;font-size:23px;line-height:1.25}.news-card p{color:#667084;line-height:1.55}.news-more{color:#004f43;font-weight:900}.news-detail{max-width:980px;margin:auto;padding:44px}.news-detail h1{font-size:48px;line-height:1.08;letter-spacing:-1px;margin:10px 0 24px}.news-detail div{font-size:18px;line-height:1.75;color:#263447}.back-link{display:inline-flex;margin-bottom:20px;color:#004f43;font-weight:900}
.admin-head{display:flex;justify-content:space-between;gap:20px;align-items:flex-start;margin-bottom:24px}.admin-head h1{margin:0;font-size:38px}.admin-head p{margin:8px 0 0;color:#7b8492}.admin-toolbar input{height:42px;border:1px solid #d9dde3;border-radius:12px;padding:0 14px;min-width:220px}.admin-actions{display:flex;gap:8px;flex-wrap:wrap}.admin-actions button{height:34px;border:0;border-radius:9px;padding:0 11px;font-weight:800;cursor:pointer}.admin-actions .edit{background:#e8f7f4;color:#004f43}.admin-actions .delete{background:#fee2e2;color:#b91c1c}.admin-dashboard-note{margin-top:24px;background:#fff;border:1px solid #e5e7eb;border-radius:24px;padding:24px}.admin-crud{overflow:auto}.admin-form select,.admin-form textarea,.admin-form input{width:100%;border:1px solid #d9dde3;border-radius:10px;padding:10px;background:#fff}.admin-form select{height:42px}.admin-save-row{display:flex;gap:10px;justify-content:flex-end;margin-top:10px}.admin-save-row button{height:44px;border:0;border-radius:12px;padding:0 20px;font-weight:900;cursor:pointer}.admin-save-row .save{background:#004f43;color:#fff}.admin-save-row .cancel{background:#f2f4f7;color:#172438}.notice{padding:14px 16px;border-radius:12px;background:#effaf7;color:#004f43;font-weight:800;margin-bottom:14px}.notice.is-error{background:#fef2f2;color:#b91c1c}
.mobile-menu-open .main-nav{display:flex;position:fixed;left:16px;right:16px;top:86px;background:#fff;border:1px solid #e5e7eb;border-radius:20px;padding:16px;z-index:90;box-shadow:0 20px 60px rgba(0,0,0,.15);flex-direction:column;align-items:stretch}.mobile-menu-open .main-nav a{color:#172438!important;padding:12px;border-radius:12px}.mobile-menu-open .main-nav a:hover{background:#f3f5f7}
@media(max-width:1100px){.candidate-grid,.news-grid{grid-template-columns:1fr 1fr}.page-hero-lite h1{font-size:36px}.admin-head{display:block}.admin-toolbar{margin-top:14px;flex-wrap:wrap}.brand-logo-img{max-width:140px}.plain-page,.candidates-page,.news-page{}}
@media(max-width:700px){.candidate-grid,.news-grid{grid-template-columns:1fr}.page-hero-lite{padding:28px;border-radius:24px}.page-hero-lite h1{font-size:30px}.news-detail{padding:26px;border-radius:22px}.news-detail h1{font-size:32px}.admin-toolbar input{min-width:0;width:100%}.admin-toolbar .btn{width:100%}.plain-page,.candidates-page,.news-page{}}

/* ===== v7 header requested layout ===== */
.header-actions{
  gap:12px;
}
.lang-toggle{
  min-height:42px;
  padding:0 10px;
  border-radius:12px;
  color:#172438;
  font-weight:800;
}
.lang-menu{
  min-width:176px;
}
.lang-menu a{
  font-size:14px;
  font-weight:800;
}
@media (max-width:1400px){
  .brand.brand-image-link{min-width:150px}
  .brand-logo-img{width:150px;max-width:150px}
  .mode-switch{width:330px}
  .header-actions{gap:10px}
  .btn{padding:0 18px}
  .btn-primary{min-width:148px}
}
@media (max-width:520px){
  .btn-primary{display:inline-flex;align-items:center;justify-content:center}
  .header-actions .btn{padding:0 8px;font-size:8px}
  .lang-toggle{min-height:27px;padding:0 6px;font-size:8px}
  .lang-menu{min-width:132px;right:-8px}
  .lang-menu a{font-size:11px;padding:8px 10px}
}

/* ===== v8 header old links restored: O nas / Pomosh / FAQ ===== */
.main-nav{gap:16px}
.main-nav a{font-size:14px}
@media (max-width:1500px){
  .hm-container{width:min(1360px, calc(100% - 42px))}
  .brand.brand-image-link{min-width:128px}
  .brand-logo-img{width:132px;max-width:132px}
  .mode-switch{width:300px}
  .mode-btn{font-size:14px}
  .main-nav{gap:11px}
  .main-nav a{font-size:13px}
  .header-actions{gap:8px}
  .header-actions .btn{padding:0 13px;min-width:auto;font-size:13px}
}
@media (max-width:1180px){
  .main-nav{display:none}
}

/* ===== Profession pills modern v1 ===== */
.professions-modern{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(0,79,67,.12), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(47,116,255,.11), transparent 30%),
    linear-gradient(180deg,#f7faf9 0%,#eef4f2 100%);
}
.professions-modern:before,
.professions-modern:after{
  content:"";
  position:absolute;
  border-radius:999px;
  pointer-events:none;
  filter:blur(.2px);
}
.professions-modern:before{
  width:360px;height:360px;
  right:-150px;top:-120px;
  background:rgba(0,79,67,.08);
}
.professions-modern:after{
  width:260px;height:260px;
  left:-120px;bottom:-110px;
  background:rgba(59,118,255,.08);
}
.professions-modern .hm-container{position:relative;z-index:1}
.professions-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:34px;
  margin-bottom:42px;
}

.professions-head h2{
  flex:1;
  margin:0;
  color:#0e2136;
  font-size:42px;
  line-height:1.08;
  letter-spacing:-1.2px;
  font-weight:950;
}
.professions-head p{
  width:min(360px,100%);
  margin:4px 0 0;
  color:#637083;
  font-size:16px;
  line-height:1.55;
  font-weight:600;
}
.professions-pills-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.professions-pills-grid .profession-column{display:contents}
.profession-pill{
  position:relative;
  isolation:isolate;
  min-height:82px;
  display:grid;
  grid-template-columns:52px minmax(0,1fr) auto;
  align-items:center;
  gap:15px;
  padding:16px 18px;
  border:1px solid rgba(15,31,50,.08);
  border-radius:24px;
  background:#fff;
  color:#102238;
  overflow:hidden;
  box-shadow:0 12px 34px rgba(15,31,50,.06);
  transform:translateY(0);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.profession-pill:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 52px rgba(15,31,50,.12);
  border-color:rgba(0,79,67,.22);
}
.profession-pill:after{
  content:"↗";
  position:absolute;
  right:16px;
  top:13px;
  color:rgba(15,31,50,.28);
  font-size:14px;
  font-weight:900;
  transition:.22s ease;
}
.profession-pill:hover:after{color:var(--green);transform:translate(2px,-2px)}
.profession-glow{
  position:absolute;
  inset:auto -45px -70px auto;
  width:170px;
  height:120px;
  border-radius:999px;
  background:var(--pill-soft, rgba(0,79,67,.10));
  z-index:-1;
  transition:.22s ease;
}
.profession-pill:hover .profession-glow{transform:scale(1.15)}
.profession-ico{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:var(--pill-bg,#eef8f6);
  color:var(--pill-color,var(--green));
  font-size:24px;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.58);
}
.profession-name{
  display:block;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#102238;
  font-size:18px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:-.25px;
}
.profession-pill b{
  min-width:42px;
  height:34px;
  display:inline-grid;
  place-items:center;
  padding:0 10px;
  border-radius:999px;
  background:#0e2136;
  color:#fff;
  font-size:14px;
  line-height:1;
  font-weight:950;
  box-shadow:0 10px 22px rgba(14,33,54,.16);
}
.profession-pill-v1{--pill-bg:#eafaf6;--pill-color:#00806c;--pill-soft:rgba(0,128,108,.15)}
.profession-pill-v2{--pill-bg:#fff4e7;--pill-color:#f37a18;--pill-soft:rgba(243,122,24,.16)}
.profession-pill-v3{--pill-bg:#eef4ff;--pill-color:#2f74ff;--pill-soft:rgba(47,116,255,.15)}
.profession-pill-v4{--pill-bg:#f3efff;--pill-color:#7c3cff;--pill-soft:rgba(124,60,255,.15)}
.profession-pill-v5{--pill-bg:#ecfeff;--pill-color:#0ea5c6;--pill-soft:rgba(14,165,198,.15)}
.profession-pill-v6{--pill-bg:#fff0f7;--pill-color:#f02683;--pill-soft:rgba(240,38,131,.15)}
.profession-pill-v7{--pill-bg:#eefdf3;--pill-color:#16a34a;--pill-soft:rgba(22,163,74,.15)}
.profession-pill-v8{--pill-bg:#fff9df;--pill-color:#d99a00;--pill-soft:rgba(217,154,0,.16)}
.profession-pill-v9{--pill-bg:#eef1f5;--pill-color:#687385;--pill-soft:rgba(104,115,133,.16)}
@media (max-width:1100px){
  .professions-head{display:block;margin-bottom:30px}
  .professions-head h2{font-size:34px;margin-top:16px}
  .professions-head p{width:auto;margin-top:12px}
  .professions-pills-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
}
@media (max-width:680px){
  .professions-modern{padding:48px 0 56px;background:linear-gradient(180deg,#f7faf9 0%,#eef4f2 100%)}
  .professions-head{margin-bottom:22px}
  .professions-head span{font-size:11px;min-height:30px;padding:7px 12px}
  .professions-head h2{font-size:26px;margin-top:12px;letter-spacing:-.7px}
  .professions-head p{font-size:13px;line-height:1.45}
  .professions-pills-grid{grid-template-columns:1fr;gap:10px}
  .profession-pill{min-height:68px;grid-template-columns:42px minmax(0,1fr) auto;border-radius:18px;padding:12px 14px;gap:12px}
  .profession-ico{width:42px;height:42px;border-radius:14px;font-size:20px}
  .profession-name{font-size:15px}
  .profession-pill b{min-width:34px;height:28px;font-size:12px}
  .profession-pill:after{right:12px;top:10px;font-size:12px}
}
@media (max-width:520px){
  .professions-modern{padding:24px 0 26px !important;margin-top:0;background:linear-gradient(180deg,#f7faf9 0%,#eef4f2 100%) !important}
  .professions-head{margin-bottom:14px !important}
  .professions-head span{font-size:7.5px;min-height:18px;padding:5px 8px;border-radius:999px}
  .professions-head h2{font-size:13px !important;line-height:1.15;margin:8px 0 0 !important;letter-spacing:-.25px}
  .professions-head p{font-size:8px;line-height:1.45;margin-top:6px}
  .professions-pills-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:7px !important}
  .profession-pill{min-height:48px;grid-template-columns:26px minmax(0,1fr) 22px;gap:6px;padding:8px 8px;border-radius:12px;box-shadow:0 8px 18px rgba(15,31,50,.06)}
  .profession-ico{width:26px;height:26px;border-radius:9px;font-size:13px}
  .profession-name{font-size:8px;line-height:1.25;white-space:normal;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
  .profession-pill b{min-width:20px;height:20px;font-size:8px;padding:0 5px}
  .profession-pill:after{display:none}
}


/* ===== Day vacancies modern cards v2 ===== */
.day-vacancies.jobs-modern{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(0,79,67,.08), transparent 32%),
    radial-gradient(circle at 92% 0%, rgba(59,118,255,.09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}
.day-vacancies.jobs-modern:before{
  content:"";
  position:absolute;
  inset:34px 34px auto auto;
  width:260px;
  height:260px;
  border-radius:50%;
  background:rgba(0,79,67,.07);
  filter:blur(28px);
  pointer-events:none;
}
.jobs-modern-head{
  position:relative;
  z-index:1;
  align-items:flex-end;
  margin-bottom:42px;
}
.jobs-modern-head > div{max-width:760px}
.section-eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border:1px solid rgba(0,79,67,.13);
  border-radius:999px;
  background:rgba(255,255,255,.82);
  color:var(--green);
  font-size:13px;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
  box-shadow:0 12px 28px rgba(15,31,50,.04);
  margin-bottom:16px;
}
.jobs-modern-head h2{
  margin-bottom:12px;
  letter-spacing:-1.2px;
}
.jobs-modern-head p{
  margin:0;
  color:#667285;
  font-size:17px;
  line-height:1.55;
  font-weight:600;
}
.modern-section-link{
  display:inline-flex;
  align-items:center;
  gap:9px;
  height:48px;
  padding:0 18px;
  border-radius:15px;
  background:#fff;
  border:1px solid rgba(0,79,67,.11);
  color:var(--green);
  box-shadow:0 14px 36px rgba(15,31,50,.07);
}
.modern-section-link span{
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(0,79,67,.09);
  transition:.18s ease;
}
.modern-section-link:hover span{transform:translateX(2px)}
.vacancy-modern-grid{
  position:relative;
  z-index:1;
  gap:24px;
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.vacancy-card-modern{
  position:relative;
  min-height:258px;
  padding:0;
  border:0;
  border-radius:28px;
  background:transparent;
  box-shadow:none;
  overflow:visible;
}
.vacancy-card-modern:hover{
  border-color:transparent;
  box-shadow:none;
  transform:none;
}
.vacancy-card-link{
  position:relative;
  isolation:isolate;
  height:100%;
  min-height:258px;
  display:flex;
  flex-direction:column;
  padding:28px;
  border:1px solid rgba(15,31,50,.08);
  border-radius:28px;
  overflow:hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 100%);
  box-shadow:
    0 22px 58px rgba(15,31,50,.08),
    inset 0 1px 0 rgba(255,255,255,.92);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.vacancy-card-link:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:.9;
  background:
    radial-gradient(circle at 82% 12%, var(--job-accent-soft, rgba(0,79,67,.12)), transparent 34%),
    radial-gradient(circle at 10% 110%, rgba(255,255,255,.75), transparent 38%);
}
.vacancy-card-link:hover{
  transform:translateY(-8px);
  border-color:rgba(0,79,67,.18);
  box-shadow:0 32px 78px rgba(15,31,50,.14);
}
.vacancy-card-orb{
  position:absolute;
  right:-42px;
  top:-42px;
  width:142px;
  height:142px;
  border-radius:50%;
  background:var(--job-accent-soft, rgba(0,79,67,.12));
  filter:blur(1px);
  opacity:.9;
  z-index:-1;
}
.vacancy-card-orb:after{
  content:"";
  position:absolute;
  inset:34px;
  border-radius:50%;
  background:rgba(255,255,255,.44);
}
.vacancy-badge{
  width:max-content;
  max-width:100%;
  min-height:36px;
  padding:6px 12px 6px 8px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border-radius:999px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(15,31,50,.08);
  color:#526174;
  font-size:13px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(15,31,50,.06);
}
.vacancy-badge i{
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--job-accent, var(--green));
  color:#fff;
  font-style:normal;
  font-size:12px;
}
.vacancy-card-modern h3{
  margin:24px 0 20px;
  min-height:64px;
  color:#101d2f;
  font-size:23px;
  line-height:1.32;
  letter-spacing:-.45px;
  font-weight:900;
}
.salary-modern{
  width:max-content;
  max-width:100%;
  margin:0;
  padding:10px 13px;
  border-radius:15px;
  background:rgba(0,79,67,.08);
  color:var(--green);
}
.salary-modern strong{
  font-size:18px;
  line-height:1.1;
  font-weight:900;
}
.vacancy-meta-mini{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
  color:#667285;
  font-size:13px;
  font-weight:800;
}
.vacancy-meta-mini span{
  min-height:30px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(15,31,50,.06);
}
.vacancy-open{
  margin-top:auto;
  padding-top:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#162235;
  font-size:15px;
  font-weight:900;
}
.vacancy-open em{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:var(--job-accent, var(--green));
  color:#fff;
  font-style:normal;
  box-shadow:0 12px 24px var(--job-shadow, rgba(0,79,67,.2));
  transition:transform .18s ease;
}
.vacancy-card-link:hover .vacancy-open em{transform:translateX(3px)}
.vacancy-card-v1{--job-accent:#004f43;--job-accent-soft:rgba(0,79,67,.14);--job-shadow:rgba(0,79,67,.24)}
.vacancy-card-v2{--job-accent:#2563eb;--job-accent-soft:rgba(37,99,235,.13);--job-shadow:rgba(37,99,235,.22)}
.vacancy-card-v3{--job-accent:#7c3aed;--job-accent-soft:rgba(124,58,237,.13);--job-shadow:rgba(124,58,237,.22)}
.vacancy-card-v4{--job-accent:#ea580c;--job-accent-soft:rgba(234,88,12,.13);--job-shadow:rgba(234,88,12,.21)}
.vacancy-card-v5{--job-accent:#0891b2;--job-accent-soft:rgba(8,145,178,.13);--job-shadow:rgba(8,145,178,.22)}
.vacancy-card-v6{--job-accent:#be123c;--job-accent-soft:rgba(190,18,60,.12);--job-shadow:rgba(190,18,60,.2)}
.vacancy-card-v7{--job-accent:#16a34a;--job-accent-soft:rgba(22,163,74,.13);--job-shadow:rgba(22,163,74,.21)}
.btn-more-modern{
  gap:10px;
  min-width:275px;
  background:linear-gradient(135deg, var(--green), #08796a);
  box-shadow:0 18px 42px rgba(0,79,67,.22);
}
.btn-more-modern span{
  transition:transform .18s ease;
}
.btn-more-modern:hover span{transform:translateX(4px)}
@media (max-width:1120px){
  .day-vacancies.jobs-modern{padding:78px 0 72px}
  .jobs-modern-head{align-items:flex-start}
  .jobs-modern-head p{font-size:15px}
  .vacancy-modern-grid{grid-template-columns:repeat(2, minmax(0, 1fr));gap:20px}
  .vacancy-card-link{min-height:238px;padding:24px}
  .vacancy-card-modern h3{font-size:20px;min-height:54px}
}
@media (max-width:680px){
  .day-vacancies.jobs-modern{padding:58px 0 56px}
  .jobs-modern-head{display:block;margin-bottom:28px}
  .section-eyebrow{font-size:11px;min-height:30px;margin-bottom:12px}
  .jobs-modern-head h2{font-size:25px;margin-bottom:10px}
  .jobs-modern-head p{font-size:14px}
  .modern-section-link{margin-top:18px;width:100%;justify-content:center}
  .vacancy-modern-grid{grid-template-columns:1fr;gap:16px}
  .vacancy-card-link{min-height:218px;border-radius:22px;padding:22px}
  .vacancy-card-modern{min-height:218px;border-radius:22px}
  .vacancy-card-modern h3{margin:20px 0 16px;font-size:19px;min-height:auto}
  .salary-modern strong{font-size:16px}
  .vacancy-meta-mini{margin-top:14px}
  .vacancy-open{padding-top:18px}
  .btn-more-modern{width:100%;min-width:0}
}



/* ===== Popular categories modern cards v1 ===== */
.categories-section.categories-modern{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(0,79,67,.07), transparent 31%),
    radial-gradient(circle at 96% 22%, rgba(124,58,237,.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}
.categories-section.categories-modern:before{
  content:"";
  position:absolute;
  left:-120px;
  bottom:-160px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:rgba(0,79,67,.06);
  filter:blur(20px);
  pointer-events:none;
}
.categories-section.categories-modern:after{
  content:"";
  position:absolute;
  right:-80px;
  top:80px;
  width:230px;
  height:230px;
  border-radius:50%;
  background:rgba(37,99,235,.07);
  filter:blur(18px);
  pointer-events:none;
}
.categories-head{
  position:relative;
  z-index:1;
  max-width:780px;
  margin-bottom:44px;
}
.categories-head h2{
  margin:0 0 14px;
  color:#101d2f;
  font-size:44px;
  line-height:1.1;
  letter-spacing:-1.25px;
  font-weight:900;
}
.categories-head p{
  margin:0;
  max-width:620px;
  color:#657286;
  font-size:17px;
  line-height:1.58;
  font-weight:600;
}
.categories-eyebrow{
  margin-bottom:17px;
}
.categories-modern-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
}
.category-card-modern{
  position:relative;
  isolation:isolate;
  min-height:235px;
  padding:26px;
  border:1px solid rgba(15,31,50,.08);
  border-radius:30px;
  overflow:hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.82) 100%);
  box-shadow:
    0 22px 58px rgba(15,31,50,.075),
    inset 0 1px 0 rgba(255,255,255,.95);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.category-card-modern:hover{
  transform:translateY(-8px);
  border-color:var(--cat-border, rgba(0,79,67,.16));
  box-shadow:0 32px 78px rgba(15,31,50,.13);
}
.category-card-modern:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(circle at 86% 12%, var(--cat-soft, rgba(0,79,67,.12)), transparent 34%),
    radial-gradient(circle at 14% 110%, rgba(255,255,255,.82), transparent 42%);
  opacity:.96;
}
.category-bg-orb{
  position:absolute;
  right:-46px;
  top:-46px;
  width:142px;
  height:142px;
  border-radius:50%;
  background:var(--cat-soft, rgba(0,79,67,.12));
  z-index:-1;
}
.category-bg-orb:after{
  content:"";
  position:absolute;
  inset:36px;
  border-radius:50%;
  background:rgba(255,255,255,.48);
}
.category-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:26px;
}
.category-icon-modern{
  width:60px;
  height:60px;
  display:grid;
  place-items:center;
  border-radius:22px;
  background:var(--cat-main, var(--green));
  color:#fff;
  font-size:28px;
  line-height:1;
  box-shadow:0 16px 34px var(--cat-shadow, rgba(0,79,67,.22));
}
.category-arrow{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(15,31,50,.07);
  color:#172438;
  font-size:20px;
  font-weight:900;
  transition:transform .18s ease, background .18s ease, color .18s ease;
}
.category-card-modern:hover .category-arrow{
  transform:translateX(4px);
  background:var(--cat-main, var(--green));
  color:#fff;
}
.category-card-modern strong{
  display:block;
  min-height:52px;
  margin:0 0 18px;
  color:#101d2f;
  font-size:22px;
  line-height:1.25;
  letter-spacing:-.45px;
  font-weight:900;
}
.category-count-modern{
  width:max-content;
  max-width:100%;
  margin:0;
  padding:9px 13px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(15,31,50,.07);
  color:#657286;
  font-size:14px;
  line-height:1;
  font-weight:900;
}
.category-count-modern b{
  color:var(--cat-main, var(--green));
  font-size:17px;
  line-height:1;
}
.category-open{
  margin-top:22px;
  display:flex;
  align-items:center;
  color:var(--cat-main, var(--green));
  font-size:14px;
  font-weight:900;
}
.category-card-v1{--cat-main:#004f43;--cat-soft:rgba(0,79,67,.14);--cat-shadow:rgba(0,79,67,.24);--cat-border:rgba(0,79,67,.2)}
.category-card-v2{--cat-main:#2563eb;--cat-soft:rgba(37,99,235,.13);--cat-shadow:rgba(37,99,235,.22);--cat-border:rgba(37,99,235,.2)}
.category-card-v3{--cat-main:#7c3aed;--cat-soft:rgba(124,58,237,.13);--cat-shadow:rgba(124,58,237,.22);--cat-border:rgba(124,58,237,.2)}
.category-card-v4{--cat-main:#ea580c;--cat-soft:rgba(234,88,12,.13);--cat-shadow:rgba(234,88,12,.22);--cat-border:rgba(234,88,12,.2)}
.category-card-v5{--cat-main:#0891b2;--cat-soft:rgba(8,145,178,.13);--cat-shadow:rgba(8,145,178,.22);--cat-border:rgba(8,145,178,.2)}
.category-card-v6{--cat-main:#16a34a;--cat-soft:rgba(22,163,74,.13);--cat-shadow:rgba(22,163,74,.22);--cat-border:rgba(22,163,74,.2)}
.category-card-v7{--cat-main:#be123c;--cat-soft:rgba(190,18,60,.12);--cat-shadow:rgba(190,18,60,.20);--cat-border:rgba(190,18,60,.2)}
.category-card-v8{--cat-main:#4f46e5;--cat-soft:rgba(79,70,229,.13);--cat-shadow:rgba(79,70,229,.22);--cat-border:rgba(79,70,229,.2)}
@media (max-width:1180px){
  .categories-section.categories-modern{padding:84px 0 92px}
  .categories-modern-grid{grid-template-columns:repeat(2, minmax(0, 1fr));gap:20px}
  .categories-head h2{font-size:36px}
  .category-card-modern{min-height:218px}
}
@media (max-width:680px){
  .categories-section.categories-modern{padding:58px 0 64px}
  .categories-head{margin-bottom:30px}
  .categories-head h2{font-size:27px;letter-spacing:-.7px}
  .categories-head p{font-size:14px}
  .categories-modern-grid{grid-template-columns:1fr;gap:16px}
  .category-card-modern{min-height:194px;border-radius:22px;padding:22px}
  .category-top{margin-bottom:20px}
  .category-icon-modern{width:52px;height:52px;border-radius:18px;font-size:24px}
  .category-arrow{width:38px;height:38px;border-radius:14px}
  .category-card-modern strong{min-height:auto;font-size:19px;margin-bottom:14px}
  .category-open{margin-top:18px}
}

/* ===== Dream subscribe modern v2 ===== */
.dream-subscribe-section{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(49,212,165,.28), transparent 30%),
    radial-gradient(circle at 88% 14%, rgba(54,136,255,.18), transparent 28%),
    linear-gradient(135deg, #003f36 0%, #004f43 52%, #06362f 100%);
  color:#fff;
  padding:118px 0 104px;
  isolation:isolate;
}
.dream-subscribe-bg{position:absolute;inset:0;z-index:-1;pointer-events:none;overflow:hidden}
.dream-subscribe-bg span{position:absolute;border-radius:999px;background:rgba(255,255,255,.08);filter:blur(.2px)}
.dream-subscribe-bg span:nth-child(1){width:420px;height:420px;left:-140px;top:-160px}
.dream-subscribe-bg span:nth-child(2){width:300px;height:300px;right:7%;top:12%;background:rgba(50,183,255,.10)}
.dream-subscribe-bg span:nth-child(3){width:560px;height:560px;right:-220px;bottom:-300px;background:rgba(255,255,255,.06)}
.dream-subscribe-wrap{position:relative;text-align:center;max-width:1370px}
.dream-subscribe-icon{
  width:96px;height:96px;
  margin:0 auto 24px;
  display:grid;place-items:center;
  border-radius:32px;
  background:linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 24px 70px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.25);
  font-size:52px;
  transform:rotate(-8deg);
}
.dream-subscribe-eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 15px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.86);
  font-size:13px;
  font-weight:900;
  letter-spacing:.02em;
  text-transform:uppercase;
}
.dream-subscribe-section h2{
  margin:24px auto 16px;
  max-width:1180px;
  color:#fff;
  font-size:58px;
  line-height:1.08;
  letter-spacing:-2px;
  font-weight:950;
}
.dream-subscribe-subtitle{
  margin:0 auto 54px;
  max-width:720px;
  color:rgba(255,255,255,.78);
  font-size:18px;
  line-height:1.55;
  font-weight:600;
}
.dream-social-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
  text-align:left;
}
.dream-social-card{
  position:relative;
  min-height:128px;
  display:grid;
  grid-template-columns:72px minmax(0, 1fr) auto;
  align-items:center;
  gap:22px;
  padding:28px;
  border-radius:28px;
  background:rgba(255,255,255,.96);
  color:#0f2137;
  border:1px solid rgba(255,255,255,.66);
  box-shadow:0 22px 80px rgba(0,0,0,.18);
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.dream-social-card:before{
  content:"";
  position:absolute;
  inset:auto -80px -120px auto;
  width:250px;height:250px;
  border-radius:50%;
  background:var(--dream-soft, rgba(37,164,235,.12));
  transition:transform .25s ease, opacity .25s ease;
}
.dream-social-card:hover{
  transform:translateY(-5px);
  background:#fff;
  box-shadow:0 34px 100px rgba(0,0,0,.25);
}
.dream-social-card:hover:before{transform:scale(1.18);opacity:.95}
.dream-social-icon{
  position:relative;
  z-index:1;
  width:64px;height:64px;
  display:grid;place-items:center;
  border-radius:22px;
  background:var(--dream-main,#24a4eb);
  color:#fff;
  font-size:30px;
  font-weight:900;
  box-shadow:0 14px 34px var(--dream-shadow, rgba(36,164,235,.28));
}
.dream-social-tg{--dream-main:#25a4eb;--dream-soft:rgba(37,164,235,.13);--dream-shadow:rgba(37,164,235,.28)}
.dream-social-bot{--dream-main:#004f43;--dream-soft:rgba(0,79,67,.13);--dream-shadow:rgba(0,79,67,.26)}
.dream-social-tg-alt{--dream-main:#2563eb;--dream-soft:rgba(37,99,235,.13);--dream-shadow:rgba(37,99,235,.26)}
.dream-social-insta{--dream-main:#e1306c;--dream-soft:rgba(225,48,108,.14);--dream-shadow:rgba(225,48,108,.24)}
.dream-social-insta .dream-social-icon{
  background:radial-gradient(circle at 30% 105%, #fdf497 0 22%, #fd5949 42%, #d6249f 66%, #285AEB 100%);
}
.dream-social-text{position:relative;z-index:1;min-width:0;display:grid;gap:8px}
.dream-social-text strong{display:block;color:#0f2137;font-size:21px;line-height:1.18;font-weight:900;letter-spacing:-.35px}
.dream-social-text em{display:block;color:#697487;font-style:normal;font-size:16px;line-height:1.4;font-weight:600}
.dream-social-action{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  gap:7px;
  color:var(--dream-main,#25a4eb);
  font-size:15px;
  font-weight:900;
  white-space:nowrap;
}
.dream-social-action i{font-style:normal;transition:transform .18s ease}
.dream-social-card:hover .dream-social-action i{transform:translateX(4px)}
.dream-subscribe-action{display:flex;justify-content:center;margin-top:54px}
.dream-main-btn{
  min-width:248px;
  height:64px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:0 30px;
  border-radius:22px;
  background:#fff;
  color:#004f43;
  font-size:17px;
  font-weight:950;
  box-shadow:0 24px 70px rgba(0,0,0,.24);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.dream-main-btn span{
  width:30px;height:30px;
  display:grid;place-items:center;
  border-radius:12px;
  background:rgba(0,79,67,.10);
}
.dream-main-btn:hover{transform:translateY(-3px);box-shadow:0 30px 90px rgba(0,0,0,.30);background:#f6fffd}
@media (max-width:1180px){
  .dream-subscribe-section{padding:92px 0 84px}
  .dream-subscribe-section h2{font-size:44px;letter-spacing:-1.3px}
  .dream-social-card{grid-template-columns:62px minmax(0,1fr);gap:18px;padding:24px;min-height:122px}
  .dream-social-icon{width:58px;height:58px;border-radius:20px}
  .dream-social-action{grid-column:2;margin-top:-4px}
}
@media (max-width:760px){
  .dream-subscribe-section{padding:68px 0 64px}
  .dream-subscribe-icon{width:78px;height:78px;border-radius:26px;font-size:42px;margin-bottom:18px}
  .dream-subscribe-section h2{font-size:32px;line-height:1.13;letter-spacing:-.8px;margin-top:18px}
  .dream-subscribe-subtitle{font-size:15px;margin-bottom:34px}
  .dream-social-grid{grid-template-columns:1fr;gap:16px}
  .dream-social-card{border-radius:22px;grid-template-columns:54px minmax(0,1fr);padding:20px;gap:14px}
  .dream-social-icon{width:52px;height:52px;border-radius:18px;font-size:25px}
  .dream-social-text strong{font-size:17px}
  .dream-social-text em{font-size:13.5px}
  .dream-social-action{font-size:14px;grid-column:1 / -1;justify-self:start;margin-left:66px;margin-top:0}
  .dream-main-btn{width:100%;min-width:0;height:58px;border-radius:18px;font-size:15px}
}


/* ==========================================================
   Header + Hero + Footer responsive redesign v2
   ========================================================== */
body.mobile-menu-open{overflow:hidden}
.site-header-modern{
  height:88px;
  background:rgba(5,18,31,.48);
  border-bottom:1px solid rgba(255,255,255,.16);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  z-index:100;
}
.site-header-modern .header-modern-row{height:88px;gap:18px;position:relative}
.site-header-modern.is-scrolled,
.site-header-modern.public-header{
  height:76px;
  background:rgba(255,255,255,.96);
  border-bottom:1px solid rgba(15,23,42,.08);
  box-shadow:0 12px 34px rgba(15,23,42,.08);
}
.site-header-modern.is-scrolled .header-modern-row,
.site-header-modern.public-header .header-modern-row{height:76px}
.header-brand{min-width:170px;display:flex;align-items:center;gap:12px}
.brand-logo-img{display:block;max-width:150px;max-height:44px;object-fit:contain}
.brand-fallback{display:inline-flex;align-items:center;gap:10px;color:#fff;font-size:26px;font-weight:900;letter-spacing:-.6px}
.site-header-modern.is-scrolled .brand-fallback,
.site-header-modern.public-header .brand-fallback{color:var(--green)}
.mode-switch-modern{width:520px;max-width:42vw;height:46px;border-radius:999px;background:rgba(255,255,255,.92);padding:4px;box-shadow:0 10px 24px rgba(0,0,0,.08);display:flex;align-items:center}
.mode-switch-modern .mode-btn{flex:1 1 0;width:auto;min-width:0;height:38px;border-radius:999px;font-size:14px;font-weight:800;color:#435065;display:flex;align-items:center;justify-content:center;white-space:nowrap;padding:0 14px}
.mode-switch-modern .mode-btn.is-active{background:linear-gradient(135deg,#004f43,#0a7b6b);color:#fff;box-shadow:0 10px 22px rgba(0,79,67,.22)}
.main-nav-modern{gap:8px;margin-left:0;flex:1;justify-content:center;min-width:0}
.main-nav-modern a{position:relative;color:#fff;font-size:14px;font-weight:800;padding:11px 12px;border-radius:999px;opacity:.96;transition:.18s ease}
.main-nav-modern a:hover,.main-nav-modern a.is-active{background:rgba(255,255,255,.14);opacity:1}
.site-header-modern.is-scrolled .main-nav-modern a,
.site-header-modern.public-header .main-nav-modern a{color:#152437}
.site-header-modern.is-scrolled .main-nav-modern a:hover,
.site-header-modern.public-header .main-nav-modern a:hover,
.site-header-modern.is-scrolled .main-nav-modern a.is-active,
.site-header-modern.public-header .main-nav-modern a.is-active{background:#eef5f3;color:var(--green)}
.header-actions-modern{margin-left:0;gap:10px;flex:0 0 auto}
.lang-dropdown{position:relative}
.lang-toggle{height:42px;min-width:72px;border:0;border-radius:14px;background:rgba(255,255,255,.94);color:#152437;font-weight:900;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:5px;box-shadow:0 10px 22px rgba(0,0,0,.08)}
.lang-menu{position:absolute;right:0;top:calc(100% + 12px);width:190px;padding:8px;background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:18px;box-shadow:0 24px 60px rgba(15,23,42,.16);opacity:0;visibility:hidden;transform:translateY(8px);transition:.18s ease}
.lang-dropdown.is-open .lang-menu{opacity:1;visibility:visible;transform:translateY(0)}
.lang-menu a{display:block;padding:12px 14px;border-radius:12px;color:#1b2a3f;font-size:14px;font-weight:800}
.lang-menu a:hover,.lang-menu a.is-active{background:#eef7f5;color:var(--green)}
.header-actions-modern .btn{color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 17px;
    box-shadow: 0 12px 24px rgba(0, 79, 67, .22);
    height: 42px;
    background: var(--green);
    border-radius: 14px;
    padding: 0 18px;
    min-width: auto;
    white-space: nowrap;}
.header-actions-modern .btn-primary{background:linear-gradient(135deg,#004f43,#087765)}
.mobile-burger-modern{display:none;margin-left:auto;background:#fff;box-shadow:0 10px 22px rgba(0,0,0,.10);z-index:105}
.mobile-menu-panel{display:none}

.hero-modern-v2{align-items:center;background:#071827;isolation:isolate}
.hero-modern-v2 .hero-bg{background-image:url('/assets/background.jpg');filter:saturate(1.04) contrast(1.02);}
.hero-modern-v2 .hero-overlay{background:linear-gradient(90deg, rgba(1, 29, 25, .88) 0%, rgb(6 41 11 / 72%) 42%, rgba(2, 22, 40, .58) 100%), radial-gradient(circle at 70% 45%, rgb(15 45 13 / 22%), transparent 35%), linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .46))}
.hero-shapes span{position:absolute;border-radius:999px;filter:blur(2px);opacity:.5;z-index:1}
.hero-shapes span:nth-child(1){width:280px;height:280px;right:10%;top:19%;background:rgba(45,212,191,.16)}
.hero-shapes span:nth-child(2){width:170px;height:170px;left:8%;bottom:18%;background:rgba(255,255,255,.08)}
.hero-shapes span:nth-child(3){width:120px;height:120px;right:38%;bottom:12%;background:rgba(0,79,67,.28)}
.hero-modern-grid{position:relative;z-index:2;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.62fr);align-items:center;gap:54px;padding-top:118px;color:#fff}
.hero-copy{text-align:left;max-width:900px}
.hero-eyebrow{display:inline-flex;align-items:center;gap:8px;margin-bottom:18px;padding:9px 14px;border:1px solid rgba(255,255,255,.24);border-radius:999px;background:rgba(255,255,255,.10);font-size:14px;font-weight:900;color:rgba(255,255,255,.94)}
.hero-modern-v2 h1{margin:0;font-size:clamp(42px,5vw,78px);line-height:1.03;letter-spacing:-2.4px;max-width:900px;text-align:left;text-shadow:0 14px 40px rgba(0,0,0,.26)}
.hero-modern-v2 .hero-subtitle{margin:24px 0 34px;max-width:680px;text-align:left;font-size:18px;line-height:1.55;color:rgba(255,255,255,.88)}
.hero-search-modern{width:100%;max-width:960px;margin:0;display:grid;grid-template-columns:minmax(260px,1.1fr) minmax(230px,.8fr) 154px;gap:12px;padding:10px;background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.20);border-radius:24px;backdrop-filter:blur(16px);box-shadow:0 24px 80px rgba(0,0,0,.22)}
.hero-search-modern .search-field,.hero-search-modern .search-submit{height:58px;border-radius:17px;box-shadow:none}
.hero-search-modern .search-field{overflow:visible}
.hero-search-modern .search-keyword{overflow:hidden}
.hero-search-modern .search-submit{background:linear-gradient(135deg,#ffffff,#eef8f6);color:var(--green);font-weight:950}
.hero-stats-modern{justify-content:flex-start;gap:14px;margin-top:28px;flex-wrap:wrap}
.hero-stats-modern .stat-item{width:auto;min-width:150px;padding:14px 18px;border:1px solid rgba(255,255,255,.18);border-radius:20px;background:rgba(255,255,255,.10);backdrop-filter:blur(14px);text-align:left}
.hero-stats-modern .stat-item strong{font-size:28px;color:#fff}.hero-stats-modern .stat-item span{font-size:13px;color:rgba(255,255,255,.78)}
.hero-visual{position:relative;min-height:420px;display:flex;align-items:center;justify-content:center}
.hero-visual-card.main{width:min(420px,100%);padding:30px;border-radius:32px;background:rgba(255,255,255,.94);color:#152437;box-shadow:0 34px 90px rgba(0,0,0,.28);backdrop-filter:blur(20px)}
.visual-badge{display:inline-flex;padding:8px 12px;border-radius:999px;background:#eaf8f5;color:var(--green);font-weight:950;font-size:13px}
.hero-visual-card h3{margin:20px 0 10px;font-size:30px;line-height:1.1;letter-spacing:-.7px;color:#102238}.hero-visual-card p{margin:0;color:#617083;line-height:1.55;font-weight:600}
.visual-progress{height:10px;margin-top:24px;background:#e8eef2;border-radius:999px;overflow:hidden}.visual-progress i{display:block;height:100%;background:linear-gradient(90deg,#004f43,#27c3a7);border-radius:999px}
.hero-mini-card{position:absolute;padding:16px 18px;border-radius:22px;background:rgba(255,255,255,.96);color:#102238;box-shadow:0 24px 60px rgba(0,0,0,.20)}
.hero-mini-card b{display:block;font-size:26px;font-weight:950;color:var(--green)}.hero-mini-card span{font-size:12px;font-weight:800;color:#667486}.hero-mini-1{left:0;top:46px}.hero-mini-2{right:0;bottom:72px}
.hero-floating-list{position:absolute;bottom:10px;display:flex;gap:8px;flex-wrap:wrap;justify-content:center}.hero-floating-list span{padding:8px 12px;border-radius:999px;background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.20);font-size:12px;font-weight:900;color:#fff}
.city-picker-menu{z-index:120}

.site-footer-modern{background:#101a2b;color:#a9b7cb;padding:70px 0 56px;border-top:1px solid rgba(255,255,255,.06)}
.footer-modern-wrap{max-width:1420px}.footer-modern-top{display:grid;grid-template-columns:1.45fr 1fr 1.08fr 1fr 1.25fr;gap:56px;align-items:start}.footer-modern-brand{max-width:330px}.footer-logo-modern{margin-bottom:28px}.footer-logo-modern .brand-logo-img{max-width:160px;max-height:48px;}.footer-modern-brand p{margin:0;font-size:17px;line-height:1.55;color:#a9b7cb}.footer-modern-col h4{margin:0 0 22px;color:#fff;font-size:17px;font-weight:950}.footer-modern-col ul{list-style:none;margin:0;padding:0;display:grid;gap:15px}.footer-modern-col a{font-size:16px;color:#a9b7cb;font-weight:600}.footer-modern-col a:hover{color:#fff}.footer-modern-bottom{margin-top:50px;padding-top:34px;border-top:1px solid rgba(255,255,255,.10);display:flex;align-items:center;justify-content:space-between;gap:24px}.footer-copy{font-size:15px}.footer-socials-modern{display:flex;align-items:center;gap:24px}.footer-socials-modern a{font-size:16px;color:#a9b7cb;font-weight:700}.footer-socials-modern a:hover{color:#fff}

@media (max-width:1500px){
  .hm-container{width:min(1240px,calc(100% - 56px))}
  .header-brand{min-width:145px}.brand-logo-img{max-width:132px}.mode-switch-modern{width:455px;max-width:39vw}.mode-switch-modern .mode-btn{font-size:13px;padding:0 10px}.main-nav-modern a{font-size:13px;padding:10px 9px}.header-actions-modern .btn{padding:0 14px;font-size:13px}.hero-modern-grid{grid-template-columns:1fr .55fr;gap:34px}.footer-modern-top{gap:36px}
}
@media (max-width:1180px){
  .site-header-modern,.site-header-modern.is-scrolled,.site-header-modern.public-header{height:72px}.site-header-modern .header-modern-row,.site-header-modern.is-scrolled .header-modern-row,.site-header-modern.public-header .header-modern-row{height:72px}
  .main-nav-modern,.header-actions-modern{display:none!important}.mode-switch-modern{display:none}.mobile-burger-modern{display:grid}.header-brand{min-width:0}.mobile-menu-panel{display:block;position:fixed;top:72px;left:0;right:0;max-height:calc(100vh - 72px);overflow:auto;background:rgba(255,255,255,.98);border-bottom:1px solid rgba(15,23,42,.08);box-shadow:0 30px 80px rgba(15,23,42,.18);transform:translateY(-110%);opacity:0;visibility:hidden;transition:.24s ease;z-index:99}.mobile-menu-open .mobile-menu-panel{transform:translateY(0);opacity:1;visibility:visible}.mobile-menu-inner{padding:18px 0 24px}.mobile-mode-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:16px}.mobile-mode-row a{height:46px;display:flex;align-items:center;justify-content:center;border-radius:16px;background:#f1f5f7;color:#243446;font-weight:950}.mobile-mode-row a.is-active{background:var(--green);color:#fff}.mobile-nav-links{display:grid;grid-template-columns:1fr 1fr;gap:10px}.mobile-nav-links a{padding:15px 16px;border-radius:16px;background:#f7fafb;color:#172438;font-weight:850}.mobile-lang-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:16px}.mobile-lang-row a{padding:10px 12px;border-radius:999px;background:#f1f5f7;color:#243446;font-size:13px;font-weight:900}.mobile-lang-row a.is-active{background:#e3f4ef;color:var(--green)}.mobile-auth-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:16px}.mobile-auth-row .btn{font-size: 13px; width:100%;height:48px}
  .hero-modern-v2{min-height:auto;padding:118px 0 72px}.hero-modern-grid{grid-template-columns:1fr;gap:34px;padding-top:0}.hero-copy{text-align:center;margin:0 auto}.hero-eyebrow{margin-left:auto;margin-right:auto}.hero-modern-v2 h1,.hero-modern-v2 .hero-subtitle{text-align:center;margin-left:auto;margin-right:auto}.hero-search-modern{margin:0 auto}.hero-stats-modern{justify-content:center}.hero-visual{min-height:300px}.hero-mini-1{left:8%}.hero-mini-2{right:8%;bottom:40px}.footer-modern-top{grid-template-columns:1.3fr 1fr 1fr;gap:34px}.footer-docs{max-width:none}
}
@media (max-width:760px){
  .hm-container{width:calc(100% - 30px)}.site-header-modern,.site-header-modern.is-scrolled,.site-header-modern.public-header{height:66px}.site-header-modern .header-modern-row,.site-header-modern.is-scrolled .header-modern-row,.site-header-modern.public-header .header-modern-row{height:66px}.mobile-menu-panel{top:66px;max-height:calc(100vh - 66px)}.brand-logo-img{}.mobile-burger-modern{width:42px;height:42px;border-radius:14px}
  .hero-modern-v2{padding:104px 0 54px}.hero-modern-v2 h1{font-size:clamp(34px,10vw,48px);letter-spacing:-1.2px}.hero-modern-v2 .hero-subtitle{font-size:15px;margin:18px auto 24px}.hero-search-modern{grid-template-columns:1fr;padding:8px;border-radius:22px}.hero-search-modern .search-field,.hero-search-modern .search-submit{font-size: 13px;height:56px}.hero-stats-modern .stat-item{min-width:0;width:calc(33.333% - 10px);padding:12px 10px;text-align:center}.hero-stats-modern .stat-item strong{font-size:22px}.hero-stats-modern .stat-item span{font-size:11px}.hero-visual{display:none}.mobile-nav-links{grid-template-columns:1fr}.mobile-auth-row{grid-template-columns:1fr}
  .footer-modern-top{grid-template-columns:1fr 1fr;gap:28px}.footer-modern-brand{grid-column:1/-1;max-width:none}.footer-modern-bottom{align-items:flex-start;flex-direction:column}.footer-socials-modern{gap:18px;flex-wrap:wrap}
}
@media (max-width:520px){
  .hm-container{width:calc(100% - 24px)}.hero-modern-v2{padding-top:96px}.hero-eyebrow{font-size:12px}.hero-stats-modern{gap:8px}.hero-stats-modern .stat-item{width:100%;display:flex;align-items:center;justify-content:space-between;text-align:left}.footer-modern-top{grid-template-columns:1fr}.site-footer-modern{padding:46px 0 38px}.footer-modern-col h4{margin-bottom:12px}.footer-modern-col ul{gap:10px}.footer-modern-bottom{margin-top:30px;padding-top:24px}.dream-subscribe-section{border-radius:0}
}

.hero-floating-list span{
  display:inline-flex;
  align-items:center;
  gap:7px;
}

.hero-floating-list svg{
  width:15px;
  height:15px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
  flex:0 0 auto;
}

.telegram-float svg{
  width:26px;
  height:26px;
  fill:currentColor;
}
/* ===== City picker final clean dropdown v5 ===== */
.hero-modern-v2,
.hero-modern-grid,
.hero-copy,
.hero-search-modern{
  overflow:visible !important;
}

.hero-modern-grid{
  position:relative;
  z-index:5;
}

.hero-copy{
  position:relative;
  z-index:20;
}

.hero-visual{
  position:relative;
  z-index:3;
}

.search-field.search-city.city-picker{
  position:relative !important;
  overflow:visible !important;
  padding:0 !important;
  z-index:9999 !important;
}

.search-field.search-city.city-picker::after{
  display:none !important;
}

.city-picker-toggle{
  width:100% !important;
  height:100% !important;
  border:0 !important;
  outline:0 !important;
  background:#fff !important;
  color:#243446 !important;
  border-radius:17px !important;
  display:block !important;
  text-align:left !important;
  padding:10px 54px 9px 20px !important;
  cursor:pointer !important;
  appearance:none !important;
  -webkit-appearance:none !important;
}

.city-picker-toggle::after{
  content:"";
  position:absolute;
  right:22px;
  top:50%;
  width:13px;
  height:13px;
  border-right:2px solid #64748b;
  border-bottom:2px solid #64748b;
  transform:translateY(-70%) rotate(45deg);
  transition:.18s ease;
  pointer-events:none;
}

.city-picker.is-open .city-picker-toggle::after{
  transform:translateY(-30%) rotate(225deg);
}

.city-picker-toggle .field-caption{
  display:block !important;
  margin:0 0 4px !important;
  color:#98a3b3 !important;
  font-size:13px !important;
  line-height:1.15 !important;
  font-weight:600 !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}

.city-picker-toggle strong{
  display:block !important;
  color:#102238 !important;
  font-size:16px !important;
  line-height:1.15 !important;
  font-weight:900 !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
}

.city-picker-menu{
  position:absolute !important;
  left:0 !important;
  top:calc(100% + 12px) !important;
  right:auto !important;
  bottom:auto !important;
  width:420px !important;
  max-width:min(420px, 92vw) !important;
  transform:none !important;
  z-index:10000 !important;
  display:block !important;
  padding:14px !important;
  border:1px solid rgba(226,232,240,.95) !important;
  border-radius:20px !important;
  background:#fff !important;
  box-shadow:0 24px 70px rgba(15,23,42,.24) !important;
  overflow:hidden !important;
}

.city-picker-menu[hidden]{
  display:none !important;
}

.city-picker-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}

.city-picker-head strong{
  color:#102238;
  font-size:17px;
  line-height:1.2;
  font-weight:900;
}

.city-picker-close{
  width:32px;
  height:32px;
  border:0;
  border-radius:10px;
  background:#f1f5f9;
  color:#334155;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

.city-picker-search{
  width:100% !important;
  height:44px !important;
  display:flex !important;
  align-items:center !important;
  gap:9px !important;
  padding:0 13px !important;
  margin:0 0 10px !important;
  border:1px solid #e2e8f0 !important;
  border-radius:14px !important;
  background:#f8fafc !important;
  color:#64748b !important;
}

.city-picker-search span{
  display:grid;
  place-items:center;
  width:18px;
  height:18px;
  flex:0 0 18px;
}

.city-picker-search svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.city-picker-search input{
  width:100% !important;
  height:100% !important;
  min-width:0 !important;
  padding:0 !important;
  border:0 !important;
  outline:0 !important;
  background:transparent !important;
  color:#102238 !important;
  font-size:14px !important;
  font-weight:700 !important;
}

.city-picker-search input::placeholder{
  color:#94a3b8 !important;
}

.city-picker-list{
  max-height:270px !important;
  overflow-y:auto !important;
  overflow-x:hidden !important;
  display:grid !important;
  gap:5px !important;
  padding:2px 4px 2px 0 !important;
  scrollbar-width:thin;
}

.city-picker-list::-webkit-scrollbar{
  width:6px;
}

.city-picker-list::-webkit-scrollbar-track{
  background:#f1f5f9;
  border-radius:999px;
}

.city-picker-list::-webkit-scrollbar-thumb{
  background:#cbd5e1;
  border-radius:999px;
}

.city-picker-list button{
  width:100% !important;
  min-height:40px !important;
  border:0 !important;
  border-radius:12px !important;
  background:#fff !important;
  color:#475569 !important;
  text-align:left !important;
  padding:9px 12px !important;
  font-size:14px !important;
  line-height:1.25 !important;
  font-weight:800 !important;
  cursor:pointer !important;
  transition:.16s ease !important;
}

.city-picker-list button:hover,
.city-picker-list button.is-selected{
  background:#eaf8f5 !important;
  color:var(--green) !important;
}

.city-picker-list button[hidden]{
  display:none !important;
}

@media (max-width:720px){
  .city-picker-menu{
    left:0 !important;
    top:calc(100% + 10px) !important;
    width:100% !important;
    max-width:none !important;
    border-radius:18px !important;
    padding:12px !important;
  }

  .city-picker-head strong{
    font-size:16px !important;
  }

  .city-picker-search{
    height:42px !important;
  }

  .city-picker-list{
    max-height:230px !important;
  }

  .city-picker-list button{
    min-height:38px !important;
    font-size:13px !important;
  }
}



/* ===== FontAwesome vacancy modern icons ===== */
.section-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.section-eyebrow i{
  color:#f97316;
  font-size:15px;
}

.section-title-icon{
  width:46px;
  height:46px;
  display:inline-grid;
  place-items:center;
  border-radius:16px;
  background:linear-gradient(135deg, rgba(0,79,67,.12), rgba(0,79,67,.04));
  color:var(--green);
  box-shadow:0 12px 28px rgba(0,79,67,.12);
  flex:0 0 auto;
}

.section-title-icon i{
  font-size:21px;
}

.modern-section-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.modern-section-link i{
  font-size:13px;
  transition:.18s ease;
}

.modern-section-link:hover i{
  transform:translateX(3px);
}

.vacancy-card-modern .vacancy-card-link{
  position:relative;
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.vacancy-fa-icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border-radius:16px;
  background:rgba(0,79,67,.08);
  color:var(--green);
  box-shadow:inset 0 0 0 1px rgba(0,79,67,.08);
  position:relative;
  z-index:2;
}

.vacancy-fa-icon i{
  font-size:20px;
}

.salary-modern{
  display:flex;
  align-items:center;
  gap:10px;
}

.salary-fa-icon{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:rgba(0,79,67,.09);
  color:var(--green);
  flex:0 0 auto;
}

.salary-fa-icon i{
  font-size:14px;
}

.vacancy-meta-mini{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:9px;
  margin-top:18px;
}

.vacancy-meta-mini span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:32px;
  padding:7px 10px;
  border-radius:999px;
  background:#f8fafc;
  color:#64748b;
  font-size:13px;
  line-height:1;
  font-weight:700;
}

.vacancy-meta-mini i{
  color:var(--green);
  font-size:12px;
}

.vacancy-open{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.vacancy-open i{
  font-size:12px;
  transition:.18s ease;
}

.vacancy-card-modern:hover .vacancy-open i{
  transform:translateX(3px);
}

.btn-more-modern{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.btn-more-modern i{
  font-size:14px;
  transition:.18s ease;
}

.btn-more-modern:hover i{
  transform:translateX(4px);
}

/* Eski money iconni shu blockda ishlatmaymiz */
.vacancy-card-modern .money-ico{
  display:none !important;
}

@media (max-width:680px){
  .section-title-icon{
    width:38px;
    height:38px;
    border-radius:13px;
  }

  .section-title-icon i{
    font-size:17px;
  }

  .vacancy-fa-icon{
    width:40px;
    height:40px;
    border-radius:14px;
    margin-bottom:14px;
  }

  .vacancy-fa-icon i{
    font-size:17px;
  }

  .vacancy-meta-mini{
    margin-top:14px;
    gap:7px;
  }

  .vacancy-meta-mini span{
    min-height:30px;
    font-size:12px;
    padding:7px 9px;
  }
}

/* ===== Professions automatic FontAwesome icons ===== */
.professions-head span{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.professions-head span i{
  font-size:14px;
  color:var(--green);
}

.professions-head h2{
  display:flex;
  align-items:center;
  gap:14px;
}

.professions-title-icon{
  width:48px;
  height:48px;
  display:inline-grid;
  place-items:center;
  border-radius:17px;
  background:linear-gradient(135deg, rgba(0,79,67,.12), rgba(0,79,67,.04));
  color:var(--green);
  box-shadow:0 14px 30px rgba(0,79,67,.12);
  flex:0 0 auto;
}

.professions-title-icon i{
  font-size:21px;
}

.profession-ico i{
  font-size:21px;
  line-height:1;
}

.profession-pill:after{
  content:"\f061";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  position:absolute;
  right:16px;
  top:13px;
  color:rgba(15,31,50,.28);
  font-size:13px;
  transition:.22s ease;
}

.profession-pill:hover:after{
  color:var(--green);
  transform:translateX(3px);
}

@media (max-width:680px){
  .professions-head h2{
    gap:10px;
  }

  .professions-title-icon{
    width:40px;
    height:40px;
    border-radius:14px;
  }

  .professions-title-icon i{
    font-size:17px;
  }

  .profession-ico i{
    font-size:17px;
  }
}



/* ===== Same style for Jobs and Professions headers only ===== */
.jobs-modern-head.home-section-head,
.professions-head.home-section-head,
.categories-head.home-section-head{
  position:relative !important;
  z-index:2 !important;
  display:flex !important;
  align-items:flex-end !important;
  justify-content:space-between !important;
  gap:24px !important;
  margin-bottom:42px !important;
  text-align:left !important;
}

.professions-head.home-section-head,
.categories-head.home-section-head{
  margin-bottom:38px !important;
}

.home-section-copy{
  max-width:780px !important;
}

.home-section-badge{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  min-height:34px !important;
  padding:0 14px !important;
  border:1px solid rgba(0,79,67,.13) !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.82) !important;
  color:var(--green) !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:900 !important;
  letter-spacing:.04em !important;
  text-transform:uppercase !important;
  box-shadow:0 12px 28px rgba(15,31,50,.04) !important;
  margin:0 0 16px !important;
}

.home-section-badge i{
  color:var(--green) !important;
  font-size:14px !important;
  line-height:1 !important;
}

.home-section-copy h2{
  margin:0 0 12px !important;
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
  color:#0b203d !important;
  font-size:38px !important;
  line-height:1.15 !important;
  letter-spacing:-1.2px !important;
  font-weight:950 !important;
}

.home-section-icon{
  width:46px !important;
  height:46px !important;
  display:inline-grid !important;
  place-items:center !important;
  border-radius:16px !important;
  background:rgba(0,79,67,.09) !important;
  color:var(--green) !important;
  box-shadow:inset 0 0 0 1px rgba(0,79,67,.08), 0 12px 28px rgba(0,79,67,.10) !important;
  flex:0 0 auto !important;
}

.home-section-icon i{
  font-size:20px !important;
  line-height:1 !important;
}

.home-section-copy p{
  margin:0 !important;
  max-width:760px !important;
  color:#667285 !important;
  font-size:17px !important;
  line-height:1.55 !important;
  font-weight:600 !important;
}

.jobs-modern-head .modern-section-link{
  flex:0 0 auto !important;
}

@media (max-width:900px){
  .jobs-modern-head.home-section-head,
  .professions-head.home-section-head{
    display:block !important;
    margin-bottom:30px !important;
  }

  .jobs-modern-head .modern-section-link{
    margin-top:18px !important;
  }

  .home-section-copy h2{
    font-size:30px !important;
  }
}

@media (max-width:520px){
  .jobs-modern-head.home-section-head,
  .professions-head.home-section-head{
    margin-bottom:18px !important;
  }

  .home-section-badge{
    min-height:24px !important;
    padding:0 10px !important;
    font-size:8px !important;
    gap:5px !important;
    margin-bottom:9px !important;
  }

  .home-section-badge i{
    font-size:9px !important;
  }

  .home-section-copy h2{
    gap:8px !important;
    font-size:18px !important;
    line-height:1.18 !important;
    letter-spacing:-.45px !important;
    margin-bottom:7px !important;
  }

  .home-section-icon{
    width:30px !important;
    height:30px !important;
    border-radius:10px !important;
  }

  .home-section-icon i{
    font-size:13px !important;
  }

  .home-section-copy p{
    font-size:10px !important;
    line-height:1.45 !important;
  }
}

/* ===== Categories header + arrow icon polish ===== */
.category-arrow{
  display:inline-grid !important;
  place-items:center !important;
}

.category-arrow i{
  font-size:13px !important;
  line-height:1 !important;
}

.category-open{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
}

.category-open i{
  font-size:12px !important;
  transition:.18s ease !important;
}

.category-card-modern:hover .category-open i,
.category-card-modern:hover .category-arrow i{
  transform:translateX(3px) !important;
}

/* ===== Dream subscribe modern v2 ===== */
.dream-subscribe-modern{
  position:relative;
  overflow:hidden;
  padding:104px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.14), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(255,255,255,.10), transparent 30%),
    linear-gradient(135deg, #003f36 0%, #004f43 46%, #063f58 100%);
  color:#fff;
}

.dream-subscribe-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}

.dream-subscribe-bg span{
  position:absolute;
  display:block;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  filter:blur(.2px);
}

.dream-subscribe-bg span:nth-child(1){
  width:420px;
  height:420px;
  right:-120px;
  top:-150px;
}

.dream-subscribe-bg span:nth-child(2){
  width:260px;
  height:260px;
  left:-90px;
  bottom:-95px;
}

.dream-subscribe-bg span:nth-child(3){
  width:120px;
  height:120px;
  left:48%;
  top:72px;
  background:rgba(255,255,255,.07);
}

.dream-subscribe-wrap{
  position:relative;
  z-index:2;
}

.dream-subscribe-grid{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  align-items:center;
  gap:54px;
}

.dream-subscribe-copy{
  max-width:680px;
}

.dream-subscribe-badge{
  background:rgba(255,255,255,.12) !important;
  border-color:rgba(255,255,255,.18) !important;
  color:#fff !important;
  box-shadow:none !important;
}

.dream-subscribe-badge i{
  color:#9ff2df !important;
}

.dream-subscribe-copy h2{
  margin:18px 0 18px;
  display:flex;
  align-items:center;
  gap:16px;
  color:#fff;
  font-size:48px;
  line-height:1.12;
  letter-spacing:-1.4px;
  font-weight:950;
}

.dream-subscribe-title-icon{
  background:rgba(255,255,255,.12) !important;
  color:#9ff2df !important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.16), 0 18px 38px rgba(0,0,0,.16) !important;
}

.dream-subscribe-subtitle{
  margin:0;
  max-width:610px;
  color:rgba(255,255,255,.78);
  font-size:18px;
  line-height:1.55;
  font-weight:600;
}

.dream-subscribe-action{
  margin-top:34px;
  display:flex;
}

.dream-main-btn{
  height:60px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:11px;
  padding:0 24px;
  border-radius:18px;
  background:#fff;
  color:var(--green);
  font-size:16px;
  line-height:1;
  font-weight:900;
  box-shadow:0 18px 42px rgba(0,0,0,.18);
  transition:.18s ease;
}

.dream-main-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 54px rgba(0,0,0,.22);
}

.dream-main-btn > i{
  font-size:15px;
}

.dream-main-btn span{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:rgba(0,79,67,.09);
  color:var(--green);
}

.dream-main-btn span i{
  font-size:12px;
  transition:.18s ease;
}

.dream-main-btn:hover span i{
  transform:translateX(3px);
}

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

.dream-social-card{
  position:relative;
  min-height:178px;
  padding:24px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:26px;
  background:rgba(255,255,255,.10);
  color:#fff;
  display:flex;
  flex-direction:column;
  gap:18px;
  overflow:hidden;
  backdrop-filter:blur(16px);
  box-shadow:0 20px 50px rgba(0,0,0,.10);
  transition:.2s ease;
}

.dream-social-card::before{
  content:"";
  position:absolute;
  right:-42px;
  top:-48px;
  width:150px;
  height:150px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  transition:.2s ease;
}

.dream-social-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.14);
  box-shadow:0 28px 70px rgba(0,0,0,.18);
}

.dream-social-card:hover::before{
  transform:scale(1.12);
}

.dream-social-icon{
  position:relative;
  z-index:2;
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:17px;
  background:rgba(255,255,255,.14);
  color:#fff;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.12);
}

.dream-social-icon i{
  font-size:21px;
  line-height:1;
}

.dream-social-tg .dream-social-icon,
.dream-social-jobs .dream-social-icon{
  color:#9ff2df;
}

.dream-social-bot .dream-social-icon{
  color:#ffd28a;
}

.dream-social-insta .dream-social-icon{
  color:#ffb7df;
}

.dream-social-text{
  position:relative;
  z-index:2;
  min-width:0;
  display:grid;
  gap:8px;
}

.dream-social-text em{
  color:rgba(255,255,255,.62);
  font-size:12px;
  line-height:1;
  font-style:normal;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.dream-social-text strong{
  color:#fff;
  font-size:20px;
  line-height:1.24;
  letter-spacing:-.35px;
  font-weight:900;
}

.dream-social-text small{
  color:rgba(255,255,255,.72);
  font-size:14px;
  line-height:1.45;
  font-weight:600;
}

.dream-social-action{
  position:relative;
  z-index:2;
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#fff;
  font-size:14px;
  line-height:1;
  font-weight:900;
}

.dream-social-action i{
  font-size:12px;
  transition:.18s ease;
}

.dream-social-card:hover .dream-social-action i{
  transform:translateX(3px);
}

@media (max-width:1100px){
  .dream-subscribe-modern{
    padding:82px 0;
  }

  .dream-subscribe-grid{
    grid-template-columns:1fr;
    gap:36px;
  }

  .dream-subscribe-copy{
    max-width:820px;
  }

  .dream-subscribe-copy h2{
    font-size:40px;
  }
}

@media (max-width:720px){
  .dream-subscribe-modern{
    padding:58px 0;
  }

  .dream-subscribe-copy h2{
    font-size:30px;
    gap:12px;
  }

  .dream-subscribe-subtitle{
    font-size:15px;
  }

  .dream-social-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .dream-social-card{
    min-height:auto;
    padding:20px;
    border-radius:22px;
  }

  .dream-main-btn{
    width:100%;
    height:56px;
  }
}

@media (max-width:520px){
  .dream-subscribe-modern{
    padding:34px 0;
  }

  .dream-subscribe-grid{
    gap:22px;
  }

  .dream-subscribe-copy h2{
    font-size:20px;
    line-height:1.18;
    letter-spacing:-.5px;
    margin:10px 0 8px;
  }

  .dream-subscribe-title-icon{
    width:32px !important;
    height:32px !important;
    border-radius:11px !important;
  }

  .dream-subscribe-title-icon i{
    font-size:13px !important;
  }

  .dream-subscribe-subtitle{
    font-size:11px;
    line-height:1.45;
  }

  .dream-subscribe-action{
    margin-top:16px;
  }

  .dream-main-btn{
    height:38px;
    border-radius:12px;
    font-size:10px;
    gap:7px;
    padding:0 12px;
  }

  .dream-main-btn span{
    width:22px;
    height:22px;
    border-radius:8px;
  }

  .dream-main-btn span i,
  .dream-main-btn > i{
    font-size:9px;
  }

  .dream-social-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:9px;
  }

  .dream-social-card{
    min-height:122px;
    padding:12px;
    border-radius:16px;
    gap:10px;
  }

  .dream-social-icon{
    width:30px;
    height:30px;
    border-radius:11px;
  }

  .dream-social-icon i{
    font-size:14px;
  }

  .dream-social-text{
    gap:5px;
  }

  .dream-social-text em{
    font-size:7px;
  }

  .dream-social-text strong{
    font-size:10px;
    line-height:1.22;
  }

  .dream-social-text small{
    font-size:8px;
    line-height:1.28;
  }

  .dream-social-action{
    font-size:8px;
    gap:5px;
  }

  .dream-social-action i{
    font-size:7px;
  }
}

/* ==========================================================
   Region picker + Professions responsive final fix v5
   ========================================================== */
body.city-picker-open{
  overflow:hidden !important;
}



.city-picker-menu{
  position:fixed !important;
  left:50% !important;
  top:50% !important;
  right:auto !important;
  bottom:auto !important;
  width:min(460px, calc(100vw - 32px)) !important;
  max-width:none !important;
  max-height:calc(100dvh - 110px) !important;
  transform:translate(-50%, -50%) !important;
  z-index:100000 !important;
  border-radius:24px !important;
  padding:16px !important;
  background:#fff !important;
  border:1px solid rgba(226,232,240,.95) !important;
  box-shadow:0 34px 100px rgba(2,8,23,.34) !important;
  overflow:hidden !important;
}

.city-picker-menu[hidden]{
  display:none !important;
}

.city-picker-head{
  margin-bottom:12px !important;
}

.city-picker-head strong{
  font-size:18px !important;
  color:#102238 !important;
}

.city-picker-search{
  height:46px !important;
  border-radius:16px !important;
  background:#f8fafc !important;
}

.city-picker-list{
}

.city-picker-list button{
  min-height:42px !important;
  border-radius:13px !important;
  font-size:14px !important;
}

.search-field.search-city.city-picker{
  z-index:auto !important;
}

.hero-stats-modern{
  position:relative !important;
  z-index:1 !important;
}

@media (min-width:1181px){
  .hero-modern-v2{
  }

  .hero-modern-grid{
    padding-top:92px !important;
    grid-template-columns:minmax(0,1.04fr) minmax(350px,.58fr) !important;
    gap:44px !important;
  }

  .hero-modern-v2 h1{
    font-size:clamp(46px,4.8vw,72px) !important;
  }

  .hero-search-modern{
    max-width:930px !important;
  }
}

@media (max-width:760px){
  .city-picker-menu{
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    top:auto !important;
    width:auto !important;
    max-height:calc(100dvh - 90px) !important;
    transform:none !important;
    border-radius:24px !important;
    padding:14px !important;
  }

  .city-picker-list{
  }

  .city-picker-list button{
    min-height:42px !important;
    font-size:14px !important;
  }

  .hero-modern-v2{
    padding:86px 0 34px !important;
  }

  .hero-modern-grid{
    gap:20px !important;
  }

  .hero-eyebrow{
    max-width:100% !important;
    text-align:center !important;
    justify-content:center !important;
    font-size:11px !important;
    padding:7px 11px !important;
    margin-bottom:12px !important;
  }

  .hero-modern-v2 h1{
    font-size:clamp(28px,8.4vw,42px) !important;
    line-height:1.07 !important;
    letter-spacing:-1.05px !important;
    max-width:620px !important;
  }

  .hero-modern-v2 .hero-subtitle{
    font-size:13px !important;
    line-height:1.45 !important;
    margin:13px auto 18px !important;
    max-width:560px !important;
  }

  .hero-search-modern{
    width:100% !important;
    max-width:560px !important;
    grid-template-columns:1fr !important;
    gap:8px !important;
    padding:8px !important;
    border-radius:20px !important;
  }

  .hero-search-modern .search-field,
  .hero-search-modern .search-submit{
    height:54px !important;
    border-radius:16px !important;
  }

  .city-picker-toggle{
    padding:9px 48px 8px 18px !important;
  }

  .city-picker-toggle .field-caption{
    font-size:12px !important;
  }

  .city-picker-toggle strong{
    font-size:15px !important;
  }

  .hero-stats-modern{
    max-width:560px !important;
    margin:14px auto 0 !important;
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:8px !important;
  }

  .hero-stats-modern .stat-item{
    width:auto !important;
    min-width:0 !important;
    display:block !important;
    padding:10px 8px !important;
    border-radius:16px !important;
    text-align:center !important;
  }

  .hero-stats-modern .stat-item strong{
    font-size:20px !important;
  }

  .hero-stats-modern .stat-item span{
    font-size:10px !important;
  }
}

@media (max-width:420px){
  .hero-modern-v2{
    padding-top:78px !important;
  }

  .brand-logo-img{
  }

  .hero-modern-v2 h1{
    font-size:27px !important;
  }

  .hero-search-modern .search-field,
  .hero-search-modern .search-submit{
    height:50px !important;
  }

  .hero-stats-modern .stat-item strong{
    font-size:18px !important;
  }
}

.professions-modern{
  overflow:hidden !important;
}

.professions-head.home-section-head{
  display:flex !important;
  align-items:flex-end !important;
  justify-content:space-between !important;
  gap:24px !important;
  margin-bottom:34px !important;
}

.professions-head .home-section-copy{
  max-width:900px !important;
}

.professions-head .home-section-copy h2{
  max-width:100% !important;
}

.professions-pills-grid{
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:16px !important;
}

.profession-pill{
  min-width:0 !important;
  grid-template-columns:48px minmax(0,1fr) auto !important;
  min-height:78px !important;
  padding:15px 16px !important;
  border-radius:22px !important;
}

.profession-ico{
  width:48px !important;
  height:48px !important;
  border-radius:16px !important;
  font-size:20px !important;
}

.profession-name{
  min-width:0 !important;
  white-space:normal !important;
  display:-webkit-box !important;
  -webkit-line-clamp:2 !important;
  -webkit-box-orient:vertical !important;
  overflow:hidden !important;
  font-size:16px !important;
  line-height:1.24 !important;
}

@media (max-width:1100px){
  .professions-head.home-section-head{
    display:block !important;
  }

  .professions-pills-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }
}

@media (max-width:620px){
  .professions-modern{
    padding:42px 0 46px !important;
  }

  .professions-head.home-section-head{
    margin-bottom:20px !important;
  }

  .professions-head .home-section-badge{
    min-height:28px !important;
    padding:0 10px !important;
    font-size:10px !important;
    gap:6px !important;
    margin-bottom:10px !important;
  }

  .professions-head .home-section-copy h2{
    font-size:25px !important;
    line-height:1.15 !important;
    gap:10px !important;
    letter-spacing:-.7px !important;
    margin-bottom:8px !important;
  }

  .professions-head .home-section-icon{
    width:36px !important;
    height:36px !important;
    border-radius:12px !important;
  }

  .professions-head .home-section-icon i{
    font-size:15px !important;
  }

  .professions-head .home-section-copy p{
    font-size:13px !important;
    line-height:1.45 !important;
  }

  .professions-pills-grid{
    grid-template-columns:1fr !important;
    gap:10px !important;
  }

  .profession-pill{
    min-height:66px !important;
    grid-template-columns:42px minmax(0,1fr) 34px !important;
    gap:11px !important;
    padding:12px 13px !important;
    border-radius:18px !important;
  }

  .profession-ico{
    width:42px !important;
    height:42px !important;
    border-radius:14px !important;
    font-size:17px !important;
  }

  .profession-name{
    font-size:14px !important;
    line-height:1.22 !important;
    -webkit-line-clamp:2 !important;
  }

  .profession-pill b{
    min-width:30px !important;
    height:26px !important;
    font-size:12px !important;
    padding:0 8px !important;
  }
}



/* ===== Dream subscribe responsive final v6 ===== */
.dream-subscribe-section.dream-subscribe-modern{
  position:relative !important;
  width:100% !important;
  overflow:hidden !important;
  padding:clamp(56px, 7vw, 108px) 0 !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.14), transparent 34%),
    radial-gradient(circle at 86% 20%, rgba(255,255,255,.10), transparent 30%),
    linear-gradient(135deg, #003f36 0%, #004f43 48%, #07384f 100%) !important;
  color:#fff !important;
}

.dream-subscribe-section.dream-subscribe-modern *{
  box-sizing:border-box !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-bg{
  position:absolute !important;
  inset:0 !important;
  z-index:0 !important;
  pointer-events:none !important;
  overflow:hidden !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-bg span{
  position:absolute !important;
  display:block !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.08) !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-bg span:nth-child(1){
  width:clamp(220px, 26vw, 440px) !important;
  height:clamp(220px, 26vw, 440px) !important;
  right:-120px !important;
  top:-150px !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-bg span:nth-child(2){
  width:clamp(180px, 20vw, 300px) !important;
  height:clamp(180px, 20vw, 300px) !important;
  left:-100px !important;
  bottom:-110px !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-bg span:nth-child(3){
  width:120px !important;
  height:120px !important;
  left:48% !important;
  top:70px !important;
  background:rgba(255,255,255,.06) !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-wrap{
  position:relative !important;
  z-index:2 !important;
  width:min(1600px, calc(100% - 80px)) !important;
  max-width:1600px !important;
  margin:0 auto !important;
  text-align:left !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-grid{
  width:100% !important;
  display:grid !important;
  grid-template-columns:minmax(360px,.9fr) minmax(520px,1.1fr) !important;
  align-items:center !important;
  gap:clamp(34px, 4vw, 70px) !important;
  min-width:0 !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-copy{
  min-width:0 !important;
  max-width:720px !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-badge{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  width:max-content !important;
  max-width:100% !important;
  min-height:34px !important;
  padding:0 14px !important;
  margin:0 0 18px !important;
  border:1px solid rgba(255,255,255,.18) !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.12) !important;
  color:#fff !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:900 !important;
  letter-spacing:.035em !important;
  text-transform:uppercase !important;
  box-shadow:none !important;
  white-space:normal !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-badge i{
  color:#9ff2df !important;
  font-size:14px !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-copy h2{
  max-width:720px !important;
  margin:0 0 18px !important;
  display:flex !important;
  align-items:flex-start !important;
  gap:16px !important;
  color:#fff !important;
  font-size:clamp(34px, 3.9vw, 58px) !important;
  line-height:1.08 !important;
  letter-spacing:-1.6px !important;
  font-weight:950 !important;
  text-align:left !important;
  overflow-wrap:anywhere !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-title-icon{
  width:52px !important;
  height:52px !important;
  display:inline-grid !important;
  place-items:center !important;
  flex:0 0 52px !important;
  margin-top:4px !important;
  border-radius:18px !important;
  background:rgba(255,255,255,.13) !important;
  color:#9ff2df !important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.16), 0 18px 38px rgba(0,0,0,.16) !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-title-icon i{
  font-size:22px !important;
  line-height:1 !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-subtitle{
  max-width:620px !important;
  margin:0 !important;
  color:rgba(255,255,255,.78) !important;
  font-size:18px !important;
  line-height:1.55 !important;
  font-weight:650 !important;
  text-align:left !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-subscribe-action{
  margin-top:34px !important;
  display:flex !important;
  justify-content:flex-start !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-main-btn{
  min-width:0 !important;
  max-width:100% !important;
  height:60px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:11px !important;
  padding:0 24px !important;
  border-radius:18px !important;
  background:#fff !important;
  color:var(--green) !important;
  font-size:16px !important;
  line-height:1 !important;
  font-weight:900 !important;
  box-shadow:0 18px 42px rgba(0,0,0,.18) !important;
  white-space:normal !important;
  text-align:center !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-main-btn > i{
  flex:0 0 auto !important;
  font-size:15px !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-main-btn span{
  width:28px !important;
  height:28px !important;
  display:grid !important;
  place-items:center !important;
  flex:0 0 28px !important;
  border-radius:10px !important;
  background:rgba(0,79,67,.09) !important;
  color:var(--green) !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-main-btn span i{
  font-size:12px !important;
  line-height:1 !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-social-grid{
  width:100% !important;
  min-width:0 !important;
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:18px !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-social-card{
  position:relative !important;
  width:100% !important;
  min-width:0 !important;
  min-height:174px !important;
  display:grid !important;
  grid-template-columns:56px minmax(0,1fr) !important;
  grid-template-rows:auto 1fr auto !important;
  align-items:start !important;
  gap:12px 16px !important;
  padding:22px !important;
  border:1px solid rgba(255,255,255,.15) !important;
  border-radius:26px !important;
  background:rgba(255,255,255,.10) !important;
  color:#fff !important;
  overflow:hidden !important;
  backdrop-filter:blur(16px) !important;
  box-shadow:0 20px 50px rgba(0,0,0,.10) !important;
  transition:.2s ease !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-social-card::before{
  content:"" !important;
  position:absolute !important;
  right:-46px !important;
  top:-56px !important;
  width:150px !important;
  height:150px !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.10) !important;
  transition:.2s ease !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-social-card:hover{
  transform:translateY(-3px) !important;
  border-color:rgba(255,255,255,.28) !important;
  background:rgba(255,255,255,.14) !important;
  box-shadow:0 28px 70px rgba(0,0,0,.18) !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-social-icon{
  position:relative !important;
  z-index:2 !important;
  grid-column:1 !important;
  grid-row:1 / span 2 !important;
  width:56px !important;
  height:56px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:18px !important;
  background:rgba(255,255,255,.14) !important;
  color:#9ff2df !important;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.12) !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-social-icon i{
  font-size:23px !important;
  line-height:1 !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-social-bot .dream-social-icon{color:#ffd28a !important;}
.dream-subscribe-section.dream-subscribe-modern .dream-social-insta .dream-social-icon{color:#ffb7df !important;}

.dream-subscribe-section.dream-subscribe-modern .dream-social-text{
  position:relative !important;
  z-index:2 !important;
  grid-column:2 !important;
  grid-row:1 / span 2 !important;
  min-width:0 !important;
  display:grid !important;
  gap:7px !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-social-text em{
  color:rgba(255,255,255,.62) !important;
  font-size:12px !important;
  line-height:1 !important;
  font-style:normal !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  letter-spacing:.06em !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  white-space:nowrap !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-social-text strong{
  display:block !important;
  min-width:0 !important;
  color:#fff !important;
  font-size:19px !important;
  line-height:1.22 !important;
  letter-spacing:-.35px !important;
  font-weight:900 !important;
  overflow-wrap:anywhere !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-social-text small{
  display:block !important;
  color:rgba(255,255,255,.72) !important;
  font-size:14px !important;
  line-height:1.42 !important;
  font-weight:650 !important;
  overflow-wrap:anywhere !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-social-action{
  position:relative !important;
  z-index:2 !important;
  grid-column:2 !important;
  grid-row:3 !important;
  align-self:end !important;
  justify-self:start !important;
  margin:4px 0 0 !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  color:#fff !important;
  font-size:14px !important;
  line-height:1 !important;
  font-weight:900 !important;
  white-space:nowrap !important;
}

.dream-subscribe-section.dream-subscribe-modern .dream-social-action i{
  font-size:12px !important;
  line-height:1 !important;
}

@media (max-width:1200px){
  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-grid{
    grid-template-columns:1fr !important;
    gap:34px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-copy{
    max-width:900px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-copy h2,
  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-subtitle{
    max-width:900px !important;
  }
}

@media (max-width:820px){
  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-wrap{
    width:calc(100% - 36px) !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-copy h2{
    font-size:34px !important;
    line-height:1.12 !important;
    letter-spacing:-.9px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-subtitle{
    font-size:15px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-grid{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-card{
    min-height:142px !important;
    border-radius:22px !important;
  }
}

@media (max-width:560px){
  .dream-subscribe-section.dream-subscribe-modern{
    padding:42px 0 !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-wrap{
    width:calc(100% - 24px) !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-grid{
    gap:22px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-badge{
    min-height:28px !important;
    padding:0 10px !important;
    margin-bottom:12px !important;
    font-size:9px !important;
    gap:6px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-badge i{
    font-size:10px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-copy h2{
    display:grid !important;
    grid-template-columns:36px minmax(0,1fr) !important;
    gap:10px !important;
    align-items:start !important;
    font-size:24px !important;
    line-height:1.16 !important;
    letter-spacing:-.6px !important;
    margin-bottom:10px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-title-icon{
    width:36px !important;
    height:36px !important;
    flex-basis:36px !important;
    margin-top:0 !important;
    border-radius:12px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-title-icon i{
    font-size:15px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-subtitle{
    font-size:13px !important;
    line-height:1.45 !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-action{
    margin-top:18px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-main-btn{
    width:100% !important;
    height:auto !important;
    min-height:46px !important;
    border-radius:14px !important;
    padding:10px 12px !important;
    font-size:12px !important;
    line-height:1.2 !important;
    gap:8px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-main-btn span{
    width:24px !important;
    height:24px !important;
    flex-basis:24px !important;
    border-radius:8px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-main-btn > i,
  .dream-subscribe-section.dream-subscribe-modern .dream-main-btn span i{
    font-size:10px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-card{
    min-height:auto !important;
    grid-template-columns:42px minmax(0,1fr) !important;
    gap:9px 12px !important;
    padding:14px !important;
    border-radius:18px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-icon{
    width:42px !important;
    height:42px !important;
    border-radius:14px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-icon i{
    font-size:17px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-text{
    gap:5px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-text em{
    font-size:8px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-text strong{
    font-size:14px !important;
    line-height:1.2 !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-text small{
    font-size:11px !important;
    line-height:1.34 !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-action{
    grid-column:2 !important;
    font-size:10px !important;
    gap:6px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-action i{
    font-size:8px !important;
  }
}

@media (max-width:380px){
  .dream-subscribe-section.dream-subscribe-modern .dream-subscribe-copy h2{
    font-size:21px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-card{
    grid-template-columns:38px minmax(0,1fr) !important;
    padding:12px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-icon{
    width:38px !important;
    height:38px !important;
  }

  .dream-subscribe-section.dream-subscribe-modern .dream-social-text strong{
    font-size:13px !important;
  }
}

/* ===== Footer modern responsive final v7 ===== */
.footer-v7{
  position:relative !important;
  overflow:hidden !important;
  padding:76px 0 34px !important;
  background:
    radial-gradient(circle at 12% 12%, rgba(24,204,167,.15), transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(72,129,255,.12), transparent 30%),
    linear-gradient(135deg, #061327 0%, #071736 46%, #032f2b 100%) !important;
  color:#fff !important;
}

.footer-v7::before{
  content:"";
  position:absolute;
  inset:1px;
  pointer-events:none;
  background:linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,0) 42%);
}

.footer-v7-wrap{
  position:relative !important;
  z-index:2 !important;
  max-width:none !important;
}

.footer-v7-top{
  display:grid !important;
  grid-template-columns:minmax(260px, 1.25fr) repeat(4, minmax(145px, 1.85fr)) !important;
  gap:28px !important;
  align-items:stretch !important;
}

.footer-v7-brand,
.footer-v7-col{
  min-width:0 !important;
  border:1px solid rgba(255,255,255,.10) !important;
  border-radius:26px !important;
  background:rgba(255,255,255,.055) !important;
  box-shadow:0 20px 55px rgba(0,0,0,.10) !important;
  backdrop-filter:blur(14px) !important;
}

.footer-v7-brand{
  max-width:none !important;
  padding:28px !important;
  display:flex !important;
  flex-direction:column !important;
}

.footer-v7-logo{
  display:inline-flex !important;
  align-items:center !important;
  width:max-content !important;
  max-width:100% !important;
  margin:0 0 22px !important;
}

.footer-v7-logo .brand-logo-img{
  width:auto !important;
  max-width:175px !important;
  max-height:58px !important;
  object-fit:contain !important;
  display:block !important;
}

.footer-logo-fallback{
  color:#fff !important;
  font-size:24px !important;
  line-height:1 !important;
  font-weight:950 !important;
  letter-spacing:-.6px !important;
}

.footer-v7-brand p{
  margin:0 !important;
  max-width:310px !important;
  color:rgba(229,239,247,.78) !important;
  font-size:15px !important;
  line-height:1.55 !important;
  font-weight:600 !important;
}

.footer-v7-socials{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:10px !important;
  margin-top:auto !important;
  padding-top:28px !important;
}

.footer-v7-socials a{
  height:42px !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:9px !important;
  padding:0 13px !important;
  border-radius:14px !important;
  background:rgba(255,255,255,.09) !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.12) !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:900 !important;
  transition:.18s ease !important;
}

.footer-v7-socials a:hover{
  transform:translateY(-2px) !important;
  background:rgba(255,255,255,.15) !important;
  border-color:rgba(255,255,255,.22) !important;
}

.footer-v7-socials i{
  color:#9ff2df !important;
  font-size:16px !important;
  line-height:1 !important;
}

.footer-v7-col{
  padding:24px !important;
}

.footer-v7-col h4{
  margin:0 0 20px !important;
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  color:#fff !important;
  font-size:15px !important;
  line-height:1.25 !important;
  letter-spacing:-.1px !important;
  font-weight:950 !important;
}

.footer-v7-col h4 span{
  width:34px !important;
  height:34px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:12px !important;
  background:rgba(159,242,223,.11) !important;
  color:#9ff2df !important;
  flex:0 0 auto !important;
}

.footer-v7-col h4 i{
  font-size:14px !important;
  line-height:1 !important;
}

.footer-v7-col ul{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
  display:grid !important;
  gap:10px !important;
}

.footer-v7-col a{
  min-width:0 !important;
  display:flex !important;
  align-items:flex-start !important;
  gap:8px !important;
  color:rgba(229,239,247,.70) !important;
  font-size:14px !important;
  line-height:1.35 !important;
  font-weight:700 !important;
  transition:.18s ease !important;
}

.footer-v7-col a i{
  width:13px !important;
  margin-top:3px !important;
  color:rgba(159,242,223,.72) !important;
  font-size:10px !important;
  line-height:1 !important;
  transition:.18s ease !important;
  flex:0 0 13px !important;
}

.footer-v7-col a:hover{
  color:#fff !important;
}

.footer-v7-col a:hover i{
  color:#9ff2df !important;
  transform:translateX(3px) !important;
}

.footer-v7-bottom{
  margin-top:28px !important;
  padding-top:24px !important;
  border-top:1px solid rgba(255,255,255,.10) !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:18px !important;
}

.footer-v7-bottom .footer-copy{
  color:rgba(229,239,247,.68) !important;
  font-size:14px !important;
  line-height:1.4 !important;
  font-weight:600 !important;
}

.footer-v7-toplink{
  height:40px !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:9px !important;
  padding:0 13px !important;
  border-radius:14px !important;
  background:rgba(255,255,255,.08) !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.12) !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:900 !important;
}

.footer-v7-toplink i{
  color:#9ff2df !important;
  font-size:12px !important;
}

@media (max-width:1320px){
  .footer-v7-top{
    grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
    gap:18px !important;
  }

  .footer-v7-brand{
    grid-column:1 / -1 !important;
    display:grid !important;
    grid-template-columns:minmax(0, 1fr) auto !important;
    align-items:center !important;
    gap:20px !important;
  }

  .footer-v7-logo{margin-bottom:14px !important;}
  .footer-v7-socials{margin-top:0 !important;padding-top:0 !important;justify-content:flex-end !important;}
}

@media (max-width:980px){
  .footer-v7{
    padding:58px 0 30px !important;
  }

  .footer-v7-top{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }

  .footer-v7-brand{
    grid-template-columns:1fr !important;
  }

  .footer-v7-socials{
    justify-content:flex-start !important;
  }
}

@media (max-width:620px){
  .footer-v7{
    padding:36px 0 22px !important;
  }

  .footer-v7-top{
    grid-template-columns:1fr !important;
    gap:12px !important;
  }

  .footer-v7-brand,
  .footer-v7-col{
    border-radius:20px !important;
    padding:18px !important;
  }

  .footer-v7-logo .brand-logo-img{
    max-width:145px !important;
    max-height:46px !important;
  }

  .footer-v7-brand p{
    max-width:none !important;
    font-size:13px !important;
    line-height:1.45 !important;
  }

  .footer-v7-socials{
    gap:8px !important;
    padding-top:18px !important;
  }

  .footer-v7-socials a{
    height:38px !important;
    padding:0 11px !important;
    border-radius:12px !important;
    font-size:12px !important;
  }

  .footer-v7-col h4{
    margin-bottom:14px !important;
    font-size:14px !important;
  }

  .footer-v7-col h4 span{
    width:30px !important;
    height:30px !important;
    border-radius:10px !important;
  }

  .footer-v7-col h4 i{
    font-size:12px !important;
  }

  .footer-v7-col ul{
    gap:8px !important;
  }

  .footer-v7-col a{
    font-size:13px !important;
    line-height:1.35 !important;
  }

  .footer-v7-bottom{
    margin-top:16px !important;
    padding-top:16px !important;
    flex-direction:column !important;
    align-items:flex-start !important;
  }

  .footer-v7-bottom .footer-copy{
    font-size:12px !important;
  }

  .footer-v7-toplink{
    width:100% !important;
    justify-content:center !important;
  }
}



/* ===== Employer hero modern responsive v9 ===== */
.emp-hero-modern-v9{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:154px 0 86px;
  background:
    radial-gradient(circle at 12% 12%, rgba(0,79,67,.12), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(248,100,54,.10), transparent 32%),
    linear-gradient(180deg,#ffffff 0%,#f6faf9 100%);
}

.emp-hero-modern-v9 .emp-hero-pattern{
  position:absolute;
  inset:0;
  z-index:-2;
  background-image:
    linear-gradient(rgba(0,79,67,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,79,67,.045) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.08));
}

.emp-hero-v9-grid{
  position:relative;
  z-index:2;
  display:grid !important;
  grid-template-columns:minmax(0, .95fr) minmax(440px, .9fr) !important;
  align-items:center !important;
  gap:54px !important;
}

.emp-hero-v9-copy{
  min-height:auto !important;
  padding:62px 56px 58px !important;
  border:1px solid rgba(0,79,67,.12) !important;
  border-radius:42px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
    radial-gradient(circle at 0 0, rgba(0,79,67,.10), transparent 38%) !important;
  box-shadow:0 30px 90px rgba(15,31,50,.10) !important;
  backdrop-filter:blur(16px);
}

.emp-badges-v9{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:10px !important;
  margin:0 0 18px !important;
}

.emp-badges-v9 span{
  min-height:36px !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  padding:0 14px !important;
  border:1px solid rgba(0,79,67,.12) !important;
  border-radius:999px !important;
  background:#fff !important;
  color:var(--green) !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:900 !important;
  box-shadow:0 10px 26px rgba(15,31,50,.05) !important;
}

.emp-badges-v9 i{
  font-size:13px;
  color:#f86436;
}

.emp-hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin:0 0 18px;
  color:#f86436;
  font-size:14px;
  line-height:1;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.055em;
}

.emp-hero-v9-copy h1{
  margin:0 0 22px !important;
  max-width:780px;
  color:#0b203d !important;
  font-size:clamp(42px, 4.1vw, 70px) !important;
  line-height:1.04 !important;
  letter-spacing:-2.2px !important;
  font-weight:950 !important;
}

.emp-hero-v9-copy p{
  max-width:690px !important;
  margin:0 0 32px !important;
  color:#667285 !important;
  font-size:18px !important;
  line-height:1.58 !important;
  font-weight:650 !important;
}

.emp-hero-actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
}

.emp-primary-btn-v9{
  height:62px !important;
  padding:0 18px 0 22px !important;
  gap:11px !important;
  border-radius:18px !important;
  background:linear-gradient(135deg, var(--green), #087462) !important;
  color:#fff !important;
  box-shadow:0 18px 42px rgba(0,79,67,.24) !important;
}

.emp-primary-btn-v9 span{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:rgba(255,255,255,.16);
}

.emp-secondary-btn-v9{
  height:62px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 22px;
  border:1px solid rgba(0,79,67,.13);
  border-radius:18px;
  background:#fff;
  color:#0b203d;
  font-size:16px;
  font-weight:900;
  box-shadow:0 14px 34px rgba(15,31,50,.06);
  transition:.18s ease;
}

.emp-primary-btn-v9:hover,
.emp-secondary-btn-v9:hover{
  transform:translateY(-2px);
}

.emp-hero-trust{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:34px;
}

.emp-hero-trust span{
  min-height:84px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  padding:16px;
  border:1px solid rgba(0,79,67,.11);
  border-radius:20px;
  background:rgba(255,255,255,.70);
  color:#667285;
  font-size:13px;
  line-height:1.25;
  font-weight:800;
}

.emp-hero-trust b{
  color:var(--green);
  font-size:26px;
  line-height:1;
  font-weight:950;
}

.emp-hero-v9-media{
  min-width:0;
}

.emp-photo-card-v9{
  position:relative !important;
  height:680px !important;
  border:0 !important;
  border-radius:44px !important;
  overflow:visible !important;
  background:linear-gradient(145deg, #003f36, #0b203d) !important;
  box-shadow:0 36px 110px rgba(15,31,50,.22) !important;
}

.emp-photo-bg-v9{
  position:absolute !important;
  inset:16px !important;
  border-radius:34px !important;
  overflow:hidden !important;
  background:#eaf4f1 !important;
}

.emp-photo-bg-v9::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:
    linear-gradient(180deg, rgba(0,79,67,.06), rgba(0,31,27,.16)),
    radial-gradient(circle at 74% 20%, rgba(255,255,255,.35), transparent 22%);
  pointer-events:none;
}

.emp-photo-bg-v9 img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}

.emp-media-glass-card{
  position:absolute;
  z-index:5;
  right:46px;
  top:110px;
  width:min(360px, 62%);
  padding:26px;
  border:1px solid rgba(255,255,255,.42);
  border-radius:28px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(16px);
  box-shadow:0 24px 70px rgba(15,31,50,.18);
}

.emp-media-glass-card span{
  display:block;
  margin-bottom:14px;
  color:var(--green);
  font-size:13px;
  font-weight:950;
}

.emp-media-glass-card strong{
  display:block;
  color:#102238;
  font-size:25px;
  line-height:1.18;
  letter-spacing:-.5px;
  font-weight:950;
}

.emp-media-glass-card p{
  margin:12px 0 18px;
  color:#667285;
  font-size:14px;
  line-height:1.45;
  font-weight:700;
}

.emp-media-progress{
  height:9px;
  border-radius:999px;
  background:#e8eef2;
  overflow:hidden;
}

.emp-media-progress i{
  display:block;
  width:78%;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg, var(--green), #29d2bb);
}

.emp-float-v9{
  z-index:7 !important;
  min-height:56px !important;
  height:auto !important;
  padding:12px 16px !important;
  border:1px solid rgba(255,255,255,.28) !important;
  border-radius:18px !important;
  background:rgba(255,255,255,.16) !important;
  color:#fff !important;
  backdrop-filter:blur(14px);
  box-shadow:0 18px 46px rgba(15,31,50,.20) !important;
  font-size:14px !important;
  line-height:1.2 !important;
  max-width:270px;
}

.emp-float-v9 .emp-float-ico{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:rgba(255,255,255,.18);
  color:#fff;
  flex:0 0 36px;
}

.emp-float-v9 b{
  font-size:14px;
  line-height:1.25;
  font-weight:900;
}

.emp-float-top.emp-float-v9{
  top:34px !important;
  left:34px !important;
}

.emp-float-orange.emp-float-v9{
  left:-20px !important;
  bottom:116px !important;
  background:rgba(248,100,54,.92) !important;
}

.emp-float-channel{
  right:32px;
  bottom:34px;
}

.emp-response-card-v9{
  z-index:8 !important;
  left:42px !important;
  right:auto !important;
  bottom:34px !important;
  width:360px !important;
  min-height:auto !important;
  border:1px solid rgba(255,255,255,.42) !important;
  border-radius:24px !important;
  padding:22px !important;
  background:rgba(255,255,255,.90) !important;
  color:#102238 !important;
  box-shadow:0 24px 70px rgba(15,31,50,.18) !important;
}

.emp-response-head{
  display:flex;
  align-items:center;
  gap:12px;
}

.emp-response-head span{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:rgba(0,79,67,.09);
  color:var(--green);
}

.emp-response-head strong{
  font-size:15px;
  line-height:1.25;
  font-weight:950;
}

.emp-response-card-v9 .emp-response-line{
  height:9px !important;
  margin:18px 0 14px !important;
  border-radius:999px !important;
  background:linear-gradient(90deg, #e8eef2 0 38%, rgba(0,79,67,.20) 38% 100%) !important;
}

.emp-response-card-v9 .emp-response-row{
  gap:10px !important;
}

.emp-response-card-v9 .emp-response-row span{
  width:68px !important;
  height:16px !important;
  border-radius:999px !important;
  background:#e8eef2 !important;
}

.emp-response-card-v9 .emp-response-row i{
  height:16px !important;
  border-radius:999px !important;
  background:#edf2f6 !important;
}

.emp-response-card-v9 .emp-response-row b{
  padding:8px 10px !important;
  border-radius:999px !important;
  background:#dcffd8 !important;
  color:#0f9f2d !important;
  font-size:11px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.emp-response-status{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid #edf2f6;
}

.emp-response-status em{
  color:#667285;
  font-style:normal;
  font-size:13px;
  font-weight:800;
}

.emp-response-status strong{
  color:var(--green);
  font-size:28px;
  line-height:1;
  font-weight:950;
}

@media (max-width:1280px){
  .emp-hero-modern-v9{
    padding:132px 0 70px;
  }

  .emp-hero-v9-grid{
    grid-template-columns:1fr !important;
    gap:34px !important;
  }

  .emp-hero-v9-copy{
    padding:48px !important;
  }

  .emp-photo-card-v9{
    height:560px !important;
    max-width:820px;
    margin:0 auto;
  }
}

@media (max-width:820px){
  .emp-hero-modern-v9{
    padding:112px 0 54px;
  }

  .emp-hero-v9-copy{
    padding:34px 26px !important;
    border-radius:30px !important;
  }

  .emp-hero-v9-copy h1{
    font-size:clamp(32px, 8.6vw, 48px) !important;
    letter-spacing:-1.3px !important;
  }

  .emp-hero-v9-copy p{
    font-size:16px !important;
  }

  .emp-hero-trust{
    grid-template-columns:1fr;
  }

  .emp-hero-trust span{
    min-height:72px;
  }

  .emp-photo-card-v9{
    height:500px !important;
    border-radius:32px !important;
  }

  .emp-photo-bg-v9{
    inset:12px !important;
    border-radius:24px !important;
  }

  .emp-media-glass-card{
    width:auto;
    left:28px;
    right:28px;
    top:42px;
  }

  .emp-float-top.emp-float-v9{
    top:auto !important;
    left:28px !important;
    bottom:146px !important;
  }

  .emp-float-orange.emp-float-v9{
    left:28px !important;
    bottom:86px !important;
  }

  .emp-float-channel{
    right:28px;
    bottom:28px;
  }

  .emp-response-card-v9{
    display:none;
  }
}

@media (max-width:560px){
  .emp-hero-modern-v9{
    padding:86px 0 38px;
  }

  .emp-hero-v9-grid{
    gap:22px !important;
  }

  .emp-hero-v9-copy{
    padding:24px 18px !important;
    border-radius:24px !important;
  }

  .emp-badges-v9{
    gap:8px !important;
    margin-bottom:14px !important;
  }

  .emp-badges-v9 span{
    min-height:30px !important;
    padding:0 10px !important;
    font-size:10px !important;
  }

  .emp-hero-kicker{
    margin-bottom:12px;
    font-size:10px;
  }

  .emp-hero-v9-copy h1{
    margin-bottom:14px !important;
    font-size:28px !important;
    line-height:1.12 !important;
    letter-spacing:-.8px !important;
  }

  .emp-hero-v9-copy p{
    margin-bottom:20px !important;
    font-size:13px !important;
    line-height:1.5 !important;
  }

  .emp-hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
  }

  .emp-primary-btn-v9,
  .emp-secondary-btn-v9{
    width:100%;
    height:50px !important;
    font-size:13px !important;
    border-radius:15px !important;
  }

  .emp-primary-btn-v9 span{
    width:26px;
    height:26px;
    border-radius:9px;
  }

  .emp-hero-trust{
    gap:8px;
    margin-top:20px;
  }

  .emp-hero-trust span{
    min-height:62px;
    padding:12px;
    border-radius:16px;
    font-size:11px;
  }

  .emp-hero-trust b{
    font-size:21px;
  }

  .emp-photo-card-v9{
    height:360px !important;
    border-radius:24px !important;
  }

  .emp-photo-bg-v9{
    inset:8px !important;
    border-radius:18px !important;
  }

  .emp-media-glass-card{
    left:16px;
    right:16px;
    top:20px;
    padding:16px;
    border-radius:18px;
  }

  .emp-media-glass-card span{
    margin-bottom:8px;
    font-size:10px;
  }

  .emp-media-glass-card strong{
    font-size:16px;
  }

  .emp-media-glass-card p{
    margin:8px 0 12px;
    font-size:11px;
    line-height:1.35;
  }

  .emp-float-v9{
    min-height:42px !important;
    padding:8px 10px !important;
    border-radius:14px !important;
    max-width:calc(100% - 32px);
  }

  .emp-float-v9 .emp-float-ico{
    width:28px;
    height:28px;
    flex-basis:28px;
    border-radius:9px;
  }

  .emp-float-v9 b{
    font-size:10px;
  }

  .emp-float-top.emp-float-v9{
    left:16px !important;
    bottom:102px !important;
  }

  .emp-float-orange.emp-float-v9{
    left:16px !important;
    bottom:56px !important;
  }

  .emp-float-channel{
    display:none !important;
  }
}


/* ===== Employer quick vacancy form modern v10 ===== */
.emp-create-modern-v10{
  position:relative !important;
  overflow:hidden !important;
  padding:88px 0 92px !important;
  background:
    radial-gradient(circle at 12% 14%, rgba(0,79,67,.08), transparent 30%),
    linear-gradient(180deg,#ffffff 0%,#f7fbfa 100%) !important;
}
.emp-create-v10-bg{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.emp-create-v10-bg span{position:absolute;border-radius:999px;background:rgba(0,79,67,.06);filter:blur(.2px)}
.emp-create-v10-bg span:nth-child(1){width:360px;height:360px;left:-120px;top:16%}
.emp-create-v10-bg span:nth-child(2){width:430px;height:430px;right:-160px;bottom:-170px;background:rgba(6,63,88,.07)}
.emp-create-v10-bg span:nth-child(3){width:120px;height:120px;right:28%;top:92px;background:rgba(248,100,54,.09)}
.emp-create-v10-box{
  position:relative !important;
  z-index:2 !important;
  padding:44px !important;
  border-radius:44px !important;
  background:rgba(255,255,255,.92) !important;
  border:1px solid rgba(0,79,67,.10) !important;
  box-shadow:0 28px 90px rgba(15,31,50,.10) !important;
  overflow:hidden !important;
  text-align:left !important;
}
.emp-create-v10-box::before{content:"";position:absolute;inset:0 0 auto;height:7px;background:linear-gradient(90deg,var(--green),#0ea58f,#f86436);opacity:.9}
.emp-create-v10-grid{display:grid;grid-template-columns:minmax(0,.95fr) minmax(430px,.78fr);gap:42px;align-items:stretch}
.emp-create-v10-copy{display:flex;flex-direction:column;justify-content:center;min-width:0;padding:12px 0}
.emp-create-badge-v10{width:max-content;max-width:100%;display:inline-flex;align-items:center;gap:9px;min-height:36px;padding:0 15px;border-radius:999px;background:rgba(0,79,67,.08);color:var(--green);font-size:13px;line-height:1;font-weight:950;text-transform:uppercase;letter-spacing:.045em;margin:0 0 18px}
.emp-create-badge-v10 i{font-size:14px;color:var(--green)}
.emp-create-v10-copy h2{margin:0 0 18px !important;max-width:760px;color:#0b203d !important;font-size:46px !important;line-height:1.08 !important;letter-spacing:-1.5px !important;font-weight:950 !important}
.emp-create-v10-copy p{margin:0;max-width:690px;color:#607085;font-size:18px;line-height:1.62;font-weight:600}
.emp-create-benefits-v10{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.emp-create-benefits-v10 span{display:inline-flex;align-items:center;gap:8px;min-height:38px;padding:0 13px;border-radius:999px;background:#f4f8f7;color:#314155;font-size:14px;line-height:1;font-weight:800;border:1px solid rgba(0,79,67,.08)}
.emp-create-benefits-v10 i{width:18px;height:18px;display:grid;place-items:center;border-radius:50%;background:rgba(0,79,67,.12);color:var(--green);font-size:10px}
.emp-create-stats-v10{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:28px;max-width:560px}
.emp-create-stats-v10 div{min-height:86px;padding:17px 18px;border-radius:22px;background:#fff;border:1px solid rgba(226,232,240,.9);box-shadow:0 14px 34px rgba(15,31,50,.05)}
.emp-create-stats-v10 strong{display:block;color:var(--green);font-size:24px;line-height:1.05;font-weight:950;letter-spacing:-.6px;margin-bottom:7px}
.emp-create-stats-v10 span{display:block;color:#6b7787;font-size:13px;line-height:1.25;font-weight:800}
.emp-create-panel-v10{position:relative;min-width:0;padding:24px;border-radius:34px;background:linear-gradient(180deg,#0b3f39 0%,#07372f 100%);color:#fff;box-shadow:0 28px 70px rgba(0,79,67,.18);overflow:hidden}
.emp-create-panel-v10::before{content:"";position:absolute;right:-80px;top:-90px;width:220px;height:220px;border-radius:50%;background:rgba(255,255,255,.10)}
.emp-create-panel-v10::after{content:"";position:absolute;left:-80px;bottom:-100px;width:240px;height:240px;border-radius:50%;background:rgba(248,100,54,.18)}
.emp-create-panel-head-v10{position:relative;z-index:2;display:flex;align-items:center;gap:14px;margin-bottom:18px}
.emp-create-panel-head-v10>span{width:48px;height:48px;display:grid;place-items:center;border-radius:16px;background:rgba(255,255,255,.13);color:#9ff2df;box-shadow:inset 0 0 0 1px rgba(255,255,255,.14);flex:0 0 auto}
.emp-create-panel-head-v10 strong{display:block;color:#fff;font-size:19px;line-height:1.2;font-weight:950;letter-spacing:-.25px}
.emp-create-panel-head-v10 em{display:block;margin-top:5px;color:rgba(255,255,255,.66);font-size:13px;line-height:1.35;font-style:normal;font-weight:700}
.emp-create-form-v10{position:relative;z-index:2;display:grid !important;grid-template-columns:1fr !important;gap:12px !important;margin:0 !important}
.emp-create-field-v10{height:auto !important;min-height:66px !important;display:block !important;padding:11px 16px 10px !important;border-radius:18px !important;background:#fff !important;border:1px solid rgba(255,255,255,.18) !important;box-shadow:0 14px 32px rgba(0,0,0,.10) !important;color:#102238 !important;text-align:left !important;overflow:hidden !important}
.emp-create-field-v10 span{display:block;margin:0 0 7px;color:#7a8697;font-size:12px;line-height:1;font-weight:900;text-transform:uppercase;letter-spacing:.04em}
.emp-create-field-v10 input,.emp-create-field-v10 select{width:100% !important;height:26px !important;min-height:26px !important;border:0 !important;outline:0 !important;background:transparent !important;color:#102238 !important;font-size:16px !important;line-height:1.2 !important;font-weight:850 !important;padding:0 !important}
.emp-create-field-v10 input::placeholder{color:#9aa6b4 !important;font-weight:750 !important}
.emp-create-select-v10{position:relative !important;padding-right:44px !important}
.emp-create-select-v10::after{content:"";position:absolute;right:18px;top:50%;width:11px;height:11px;border-right:2px solid #687588;border-bottom:2px solid #687588;transform:translateY(-65%) rotate(45deg);pointer-events:none}
.emp-create-select-v10 select{appearance:none !important;-webkit-appearance:none !important;cursor:pointer !important}
.emp-create-submit-v10{width:100%;height:62px;border:0;border-radius:19px;background:#f86436;color:#fff;display:flex;align-items:center;justify-content:center;gap:10px;font-size:15px;line-height:1;font-weight:950;cursor:pointer;box-shadow:0 18px 38px rgba(248,100,54,.28);transition:.18s ease}
.emp-create-submit-v10:hover{transform:translateY(-2px);box-shadow:0 24px 52px rgba(248,100,54,.34)}
.emp-create-submit-v10>span{width:27px;height:27px;display:grid;place-items:center;border-radius:10px;background:rgba(255,255,255,.17);margin-left:2px}
.emp-create-submit-v10 i{font-size:13px}.emp-create-submit-v10:hover>span i{transform:translateX(3px);transition:.18s ease}
.emp-create-note-v10{position:relative;z-index:2;margin:13px 0 18px !important;display:flex;align-items:flex-start;gap:9px;color:rgba(255,255,255,.72);font-size:13px;line-height:1.45;font-weight:700}
.emp-create-note-v10 i{color:#9ff2df;margin-top:2px}
.emp-create-preview-v10{position:relative;z-index:2;min-height:214px;border-radius:24px;background:rgba(255,255,255,.10);border:1px solid rgba(255,255,255,.14);overflow:hidden;display:flex;align-items:center;justify-content:center;padding:18px}
.emp-create-preview-v10 img{width:100%;max-width:330px;height:auto;display:block;filter:drop-shadow(0 18px 30px rgba(0,0,0,.18))}
.emp-create-ai-card-v10{position:absolute;left:16px;right:16px;bottom:14px;padding:12px 14px;border-radius:18px;background:rgba(255,255,255,.88);backdrop-filter:blur(10px);color:#102238;box-shadow:0 15px 35px rgba(0,0,0,.16)}
.emp-create-ai-card-v10 small{display:block;color:var(--green);font-size:10px;line-height:1;font-weight:950;text-transform:uppercase;letter-spacing:.05em;margin-bottom:5px}
.emp-create-ai-card-v10 strong{display:block;color:#102238;font-size:14px;line-height:1.2;font-weight:950;margin-bottom:8px}
.emp-create-ai-card-v10 span{display:block;height:7px;border-radius:999px;background:#e2e8f0;overflow:hidden}.emp-create-ai-card-v10 span i{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,var(--green),#10b981)}
.emp-tags-v10{position:relative;z-index:2;margin-top:26px !important;padding-top:24px !important;border-top:1px solid rgba(0,79,67,.10);display:flex !important;align-items:center !important;justify-content:flex-start !important;gap:10px !important;flex-wrap:wrap !important;max-width:none !important}
.emp-tags-v10 b{width:auto !important;color:#0f2137;font-size:14px;line-height:1;font-weight:950;margin-right:2px}
.emp-tags-v10 span{display:inline-flex !important;align-items:center;min-height:34px;padding:0 13px !important;border-radius:999px !important;background:#fff !important;border:1px solid rgba(0,79,67,.11) !important;color:#546174 !important;font-size:13px !important;line-height:1 !important;font-weight:800 !important;box-shadow:0 9px 22px rgba(15,31,50,.04)}
.emp-tags-v10 span:hover{color:var(--green) !important;border-color:rgba(0,79,67,.26) !important;background:#f4fbf9 !important}
@media (max-width:1280px){.emp-create-modern-v10{padding:76px 0 82px !important}.emp-create-v10-grid{grid-template-columns:minmax(0,1fr) minmax(370px,.78fr);gap:30px}.emp-create-v10-box{padding:34px !important;border-radius:36px !important}.emp-create-v10-copy h2{font-size:38px !important}.emp-create-v10-copy p{font-size:16px}.emp-create-stats-v10{max-width:520px}.emp-create-panel-v10{padding:22px;border-radius:30px}}
@media (max-width:1040px){.emp-create-v10-grid{grid-template-columns:1fr}.emp-create-v10-copy{padding:0}.emp-create-panel-v10{max-width:720px}.emp-create-v10-copy h2{max-width:780px}.emp-create-v10-copy p{max-width:760px}.emp-create-preview-v10{min-height:190px}.emp-tags-v10{margin-top:22px !important}}
@media (max-width:720px){.emp-create-modern-v10{padding:52px 0 56px !important}.emp-create-v10-box{padding:22px !important;border-radius:28px !important}.emp-create-v10-grid{gap:22px}.emp-create-badge-v10{min-height:30px;padding:0 11px;font-size:10px;gap:6px;margin-bottom:12px}.emp-create-badge-v10 i{font-size:11px}.emp-create-v10-copy h2{font-size:27px !important;line-height:1.12 !important;letter-spacing:-.8px !important;margin-bottom:12px !important}.emp-create-v10-copy p{font-size:14px;line-height:1.5}.emp-create-benefits-v10{gap:8px;margin-top:16px}.emp-create-benefits-v10 span{min-height:32px;font-size:11px;padding:0 10px}.emp-create-stats-v10{grid-template-columns:1fr 1fr 1fr;gap:8px;margin-top:18px}.emp-create-stats-v10 div{min-height:72px;padding:13px 10px;border-radius:16px}.emp-create-stats-v10 strong{font-size:18px}.emp-create-stats-v10 span{font-size:10px}.emp-create-panel-v10{padding:16px;border-radius:24px}.emp-create-panel-head-v10{gap:10px;margin-bottom:14px}.emp-create-panel-head-v10>span{width:40px;height:40px;border-radius:14px}.emp-create-panel-head-v10 strong{font-size:15px}.emp-create-panel-head-v10 em{font-size:11px}.emp-create-field-v10{min-height:58px !important;border-radius:16px !important;padding:9px 13px 8px !important}.emp-create-field-v10 span{font-size:10px;margin-bottom:6px}.emp-create-field-v10 input,.emp-create-field-v10 select{font-size:14px !important}.emp-create-submit-v10{height:54px;border-radius:16px;font-size:13px}.emp-create-preview-v10{min-height:170px;border-radius:20px;padding:14px}.emp-create-preview-v10 img{max-width:270px}.emp-create-ai-card-v10{left:10px;right:10px;bottom:10px;border-radius:15px;padding:10px 11px}.emp-tags-v10{gap:7px !important;padding-top:18px !important}.emp-tags-v10 b{width:100% !important;font-size:12px}.emp-tags-v10 span{min-height:29px !important;padding:0 10px !important;font-size:11px !important}}
@media (max-width:460px){.emp-create-modern-v10{padding:34px 0 40px !important}.emp-create-v10-box{padding:16px !important;border-radius:22px !important}.emp-create-v10-copy h2{font-size:22px !important}.emp-create-v10-copy p{font-size:12px}.emp-create-benefits-v10{display:grid;grid-template-columns:1fr;gap:7px}.emp-create-stats-v10{grid-template-columns:1fr;gap:7px}.emp-create-stats-v10 div{min-height:auto;display:flex;align-items:center;justify-content:space-between;gap:10px}.emp-create-stats-v10 strong{margin-bottom:0}.emp-create-panel-v10{padding:13px;border-radius:20px}.emp-create-panel-head-v10>span{width:34px;height:34px;border-radius:12px}.emp-create-panel-head-v10 strong{font-size:13px}.emp-create-panel-head-v10 em{font-size:10px}.emp-create-form-v10{gap:9px !important}.emp-create-field-v10{min-height:54px !important}.emp-create-submit-v10{height:50px;font-size:11px;gap:7px}.emp-create-submit-v10>span{width:24px;height:24px;border-radius:8px}.emp-create-note-v10{font-size:10px;margin:10px 0 12px !important}.emp-create-preview-v10{min-height:138px}.emp-create-preview-v10 img{max-width:220px}.emp-create-ai-card-v10 strong{font-size:11px}.emp-create-ai-card-v10 small{font-size:8px}.emp-tags-v10 span{font-size:10px !important}}

/* ===== PATCH v19: register fields + profile dropdown ===== */
.header-actions-modern{position:relative}
.header-notify-btn{
  width:42px;height:42px;min-width:42px;border:0;border-radius:14px;background:#fff;color:#172438;
  display:grid;place-items:center;cursor:pointer;font-size:18px;box-shadow:0 10px 22px rgba(0,0,0,.08)
}
.header-user-menu{position:relative;display:flex;align-items:center}
.header-user-toggle{
  width:42px;height:42px;border:0;border-radius:14px;background:var(--green);color:#fff;display:grid;place-items:center;
  cursor:pointer;font-size:17px;box-shadow:0 12px 24px rgba(0,79,67,.22)
}
.header-user-dropdown{
  position:absolute;right:0;top:calc(100% + 10px);width:220px;background:#fff;border:1px solid rgba(15,23,42,.08);
  border-radius:0 0 14px 14px;box-shadow:0 26px 70px rgba(15,23,42,.18);padding:12px;z-index:120;
}
.header-user-dropdown[hidden]{display:none!important}
.header-user-card-head{padding:4px 0 12px;margin-bottom:8px;border-bottom:1px solid #d9dde3;display:grid;gap:6px}
.header-user-card-head strong{font-size:16px;line-height:1.15;color:#1d2738;font-weight:900;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.header-user-card-head span{font-size:14px;color:#6c7685;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.header-user-dropdown a,.header-user-logout{
  width:100%;min-height:42px;display:flex;align-items:center;gap:12px;border:0;background:transparent;border-radius:12px;
  padding:9px 2px;color:#253145;font-size:16px;font-weight:500;text-align:left;cursor:pointer
}
.header-user-dropdown a:hover,.header-user-logout:hover{background:#f7f8fa;padding-left:10px}
.header-user-dropdown i{width:24px;min-width:24px;text-align:center;color:#152437;font-size:18px}
.header-user-logout{color:#ff3b30}.header-user-logout i{color:#ff3b30}
.auth-subtitle{margin:-6px 0 16px;text-align:center;color:#6b7483;font-size:14px;line-height:1.45}
.auth-start-card{width:min(520px,100%)}
.auth-register-form{grid-template-columns:1fr 1fr;gap:12px}
.auth-register-form label{min-width:0}
.auth-register-form label:first-of-type,
.auth-register-form label[data-role-only="employer"]:first-of-type,
.auth-register-form .auth-main-btn,
.auth-register-form .auth-message{grid-column:1/-1}
.auth-form select,
.auth-form input[type="file"]{
  width:100%;height:56px;border:1px solid #d9dde3;border-radius:15px;padding:0 14px;color:#172438;background:#fff;outline:none;font-size:16px
}
.auth-form input[type="file"]{padding:14px;background:#f8fafb}
.auth-form select:focus{border-color:#005a4d;box-shadow:0 0 0 1px #005a4d inset}
.mobile-user-card{margin-top:16px;padding:16px;border-radius:18px;background:#f7fafb;border:1px solid rgba(15,23,42,.08);display:grid;gap:6px}
.mobile-user-card b{font-size:17px;color:#172438}.mobile-user-card span{font-size:14px;color:#667084}.mobile-user-actions{display:grid;gap:8px;margin-top:8px}.mobile-user-actions a,.mobile-user-actions button{min-height:44px;border:0;border-radius:14px;background:#fff;color:#172438;font-weight:900;display:flex;align-items:center;justify-content:center;cursor:pointer}.mobile-user-actions button{color:#ff3b30}
@media (max-width:1500px){.header-create-btn{min-width:150px!important}.header-notify-btn,.header-user-toggle{width:40px;height:40px;min-width:40px}.header-user-dropdown{right:-4px}}
@media (max-width:560px){.auth-start-card{width:min(430px,100%)}.auth-register-form{grid-template-columns:1fr}.auth-register-form label,.auth-register-form label:first-of-type,.auth-register-form .auth-main-btn,.auth-register-form .auth-message{grid-column:1/-1}}
.auth-register-form label:has(input[type="file"]){grid-column:1/-1}


/* ===== PATCH v20: full-screen auth flow, separate login/register ===== */
.auth-fullscreen-modal{
  z-index:140;
  padding:0!important;
  place-items:stretch!important;
  align-items:stretch!important;
  justify-items:stretch!important;
  overflow:auto;
  background:
    radial-gradient(circle at 12% 18%, rgba(0,79,67,.18), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(0,79,67,.14), transparent 38%),
    linear-gradient(135deg,#f4faf8 0%,#ffffff 42%,#eef5f3 100%)!important;
}
.auth-fullscreen-modal[hidden]{display:none!important}
.auth-fullscreen-modal .auth-choice-card,
.auth-fullscreen-modal .auth-start-card{
  position:relative;
  align-self:center;
  justify-self:center;
  border:1px solid rgba(0,79,67,.10);
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(18px);
  border-radius:32px;
  box-shadow:0 34px 120px rgba(15,23,42,.18);
  padding:clamp(24px,4vw,56px);
  max-height:none;
}
.auth-fullscreen-modal .auth-register-choice-card{width:min(1120px,calc(100% - 32px))}
.auth-fullscreen-modal.is-login-mode .auth-form-card{width:min(560px,calc(100% - 32px))}
.auth-fullscreen-modal.is-register-mode .auth-form-card{width:min(960px,calc(100% - 32px))}
.auth-fullscreen-modal .auth-logo-line{
  text-align:center;
  color:var(--green);
  font-size:30px;
  line-height:1;
  font-weight:950;
  letter-spacing:-1px;
  margin-bottom:18px;
}
.auth-choice-kicker{
  width:max-content;
  margin:0 auto 14px;
  padding:8px 14px;
  border-radius:999px;
  background:#e8f4f1;
  color:var(--green);
  font-size:13px;
  font-weight:900;
}
.auth-fullscreen-modal .auth-choice-title{
  margin:0;
  text-align:center;
  color:#142437;
  font-size:clamp(28px,3vw,44px);
  line-height:1.1;
  font-weight:950;
  letter-spacing:-1.1px;
}
.auth-choice-subtitle{
  max-width:680px;
  margin:16px auto 34px;
  text-align:center;
  color:#657184;
  font-size:16px;
  line-height:1.55;
  font-weight:600;
}
.auth-choice-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.auth-fullscreen-modal .auth-role-card{
  width:100%;
  height:auto;
  min-height:210px;
  display:grid;
  grid-template-columns:auto 1fr;
  grid-template-rows:auto auto;
  align-content:start;
  gap:10px 18px;
  margin:0;
  padding:28px;
  text-align:left;
  border:1px solid #dce3e1;
  border-radius:26px;
  background:#fff;
  box-shadow:0 14px 34px rgba(15,23,42,.06);
  transition:.18s ease;
}
.auth-fullscreen-modal .auth-role-card:hover,
.auth-fullscreen-modal .auth-role-card.is-selected{
  transform:translateY(-2px);
  border-color:var(--green);
  box-shadow:0 22px 55px rgba(0,79,67,.13);
}
.auth-fullscreen-modal .auth-role-card .auth-role-icon{
  grid-row:1/3;
  width:58px;
  height:58px;
  border-radius:18px;
  margin:0;
  background:#edf7f4;
  color:var(--green);
  font-size:24px;
}
.auth-fullscreen-modal .auth-role-card strong{
  display:block;
  color:#142437;
  font-size:25px;
  line-height:1.2;
  font-weight:950;
}
.auth-fullscreen-modal .auth-role-card em{
  display:block;
  color:#657184;
  font-style:normal;
  font-size:15px;
  line-height:1.55;
  font-weight:600;
}
.auth-choice-bottom{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:28px;
  color:#657184;
  font-size:15px;
  font-weight:700;
}
.auth-choice-bottom a{
  color:var(--green);
  text-decoration:underline;
  text-underline-offset:3px;
  font-weight:950;
}
.auth-fullscreen-modal .auth-start-card h3{
  margin:0 52px 10px;
  text-align:center;
  color:#142437;
  font-size:clamp(24px,2.3vw,34px);
  line-height:1.18;
  font-weight:950;
  letter-spacing:-.6px;
}
.auth-fullscreen-modal .auth-subtitle{
  max-width:720px;
  margin:0 auto 22px;
  text-align:center;
  color:#657184;
  font-size:15px;
  line-height:1.55;
  font-weight:600;
}
.auth-fullscreen-modal .auth-close,
.auth-fullscreen-modal .auth-back{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border:1px solid #e1e7e5;
  border-radius:15px;
  background:#fff;
  color:#243245;
  font-size:25px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}
.auth-fullscreen-modal .auth-close{top:22px;right:22px}
.auth-fullscreen-modal .auth-back{top:22px;left:22px}
.auth-fullscreen-modal .auth-back[hidden]{display:none!important}
.auth-fullscreen-modal .auth-form{gap:14px}
.auth-fullscreen-modal .auth-form label{
  gap:7px;
  color:#596579;
  font-size:13px;
  font-weight:850;
}
.auth-fullscreen-modal .auth-form input,
.auth-fullscreen-modal .auth-form select{
  width:100%;
  height:56px;
  border:1px solid #dce3e1;
  border-radius:17px;
  padding:0 16px;
  background:#fff;
  color:#142437;
  font-size:16px;
  outline:none;
  transition:.16s ease;
}
.auth-fullscreen-modal .auth-form input:focus,
.auth-fullscreen-modal .auth-form select:focus{
  border-color:var(--green);
  box-shadow:0 0 0 4px rgba(0,79,67,.10);
}
.auth-fullscreen-modal .auth-form input[type="file"]{
  height:auto;
  min-height:58px;
  padding:15px 16px;
  background:#f8faf9;
}
.auth-fullscreen-modal .auth-main-btn{
  height:58px;
  margin-top:6px;
  border-radius:18px;
  background:var(--green);
  color:#fff;
  font-size:16px;
  font-weight:950;
  box-shadow:0 16px 34px rgba(0,79,67,.20);
}
.auth-fullscreen-modal .auth-main-btn:disabled{
  background:#c7cdd2;
  box-shadow:none;
  cursor:not-allowed;
}
.auth-fullscreen-modal .auth-hint{
  margin:-2px 0 2px;
  color:#8a95a5;
  font-size:13px;
  line-height:1.45;
}
.auth-fullscreen-modal .auth-message{
  min-height:20px;
  margin:2px 0 0;
  text-align:center;
  font-size:14px;
  font-weight:800;
}
.auth-fullscreen-modal .auth-message.is-success{color:var(--green)}
.auth-fullscreen-modal .auth-message.is-error{color:#d22}
.auth-fullscreen-modal .auth-form-bottom{margin-top:14px}
.auth-fullscreen-modal.is-login-mode .auth-form-bottom{display:flex}
.auth-fullscreen-modal.is-register-mode .auth-register-form{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.auth-fullscreen-modal.is-register-mode .auth-register-form label:first-of-type,
.auth-fullscreen-modal.is-register-mode .auth-register-form label:has(input[type="file"]),
.auth-fullscreen-modal.is-register-mode .auth-register-form .auth-main-btn,
.auth-fullscreen-modal.is-register-mode .auth-register-form .auth-message{
  grid-column:1/-1;
}
@media (max-width:760px){
  .auth-fullscreen-modal .auth-choice-card,
  .auth-fullscreen-modal .auth-start-card{border-radius:24px;padding:24px 18px;margin:16px auto}
  .auth-choice-grid{grid-template-columns:1fr;gap:14px}
  .auth-fullscreen-modal .auth-role-card{min-height:150px;padding:20px;border-radius:22px}
  .auth-fullscreen-modal .auth-role-card strong{font-size:21px}
  .auth-fullscreen-modal .auth-start-card h3{margin:58px 0 10px;font-size:24px}
  .auth-fullscreen-modal .auth-logo-line{font-size:25px;margin-top:40px}
  .auth-fullscreen-modal .auth-choice-card .auth-logo-line{margin-top:4px}
  .auth-fullscreen-modal.is-register-mode .auth-register-form{grid-template-columns:1fr}
  .auth-fullscreen-modal.is-register-mode .auth-register-form label,
  .auth-fullscreen-modal.is-register-mode .auth-register-form label:first-of-type,
  .auth-fullscreen-modal.is-register-mode .auth-register-form label:has(input[type="file"]),
  .auth-fullscreen-modal.is-register-mode .auth-register-form .auth-main-btn,
  .auth-fullscreen-modal.is-register-mode .auth-register-form .auth-message{grid-column:1/-1}
}
@media (max-width:420px){
  .auth-fullscreen-modal .auth-choice-card,
  .auth-fullscreen-modal .auth-start-card{width:calc(100% - 20px);padding:20px 14px;border-radius:20px}
  .auth-choice-subtitle{font-size:14px;margin-bottom:22px}
  .auth-choice-bottom{flex-wrap:wrap;text-align:center}
}


/* ===== PATCH v21: stable separated login/register fullscreen auth ===== */
.auth-login-fullscreen-modal,
.auth-register-fullscreen-modal{
  min-height:100vh;
}
.auth-login-fullscreen-modal .auth-login-card{width:min(560px,calc(100% - 32px))}
.auth-register-fullscreen-modal.is-choice-mode .auth-register-choice-card{display:block;width:min(1120px,calc(100% - 32px))}
.auth-register-fullscreen-modal.is-choice-mode .auth-register-card{display:none!important}
.auth-register-fullscreen-modal.is-register-mode .auth-register-choice-card{display:none!important}
.auth-register-fullscreen-modal.is-register-mode .auth-register-card{display:block;width:min(960px,calc(100% - 32px))}
.auth-register-fullscreen-modal .auth-register-card[hidden],
.auth-register-fullscreen-modal .auth-register-choice-card[hidden]{display:none!important}
.auth-login-fullscreen-modal .auth-form{display:grid!important}
.auth-register-fullscreen-modal .auth-register-form{display:grid!important}
.auth-register-fullscreen-modal .auth-back{display:grid!important}
.auth-register-fullscreen-modal.is-choice-mode .auth-back{display:none!important}
.auth-fullscreen-modal svg{width:18px;height:18px;display:block}
.auth-fullscreen-modal .auth-main-btn[disabled]{pointer-events:none}
@media (max-width:760px){
  .auth-login-fullscreen-modal .auth-login-card,
  .auth-register-fullscreen-modal.is-register-mode .auth-register-card,
  .auth-register-fullscreen-modal.is-choice-mode .auth-register-choice-card{width:calc(100% - 24px)}
}


/* ===== Auth separated role forms patch ===== */
.auth-register-fullscreen-modal [data-register-panel][hidden]{display:none!important}
.auth-register-fullscreen-modal [data-register-panel]{width:min(560px, calc(100% - 32px));}
.auth-register-fullscreen-modal .auth-register-form label{margin:0;}
.auth-register-fullscreen-modal .auth-register-form input,
.auth-register-fullscreen-modal .auth-register-form select{min-height:48px;}
.auth-register-fullscreen-modal .auth-register-form input[type="file"]{padding:12px;background:#fff;}
@media (max-width:680px){
  .auth-register-fullscreen-modal [data-register-panel]{width:100%;}
}

/* ===== Jobseeker profile personal final patch ===== */
:root{--jp-green:#004f43;--jp-blue:#0b1f3a;--jp-muted:#647084;--jp-bg:#f0f0f0;--jp-line:#d4d9e2;--jp-accent:#45c9c6;}
.header-modern-row{min-height:70px}.header-brand .brand-logo-img{max-height:42px}.main-nav-modern a[data-header-section].is-active{color:var(--jp-green);border-bottom:1px solid var(--jp-green)}
.header-notify-wrap{position:relative;display:inline-flex}.header-notify-btn{position:relative}.notify-dot{position:absolute;right:-7px;top:-6px;min-width:18px;height:18px;border-radius:999px;background:var(--jp-green);color:#fff;font-size:11px;display:grid;place-items:center;border:2px solid #fff}.header-notify-dropdown{position:absolute;right:-150px;top:52px;width:438px;background:#fff;border-radius:0 0 22px 22px;box-shadow:0 18px 45px rgba(11,31,58,.13);padding:18px 18px 20px;z-index:90}.notify-drop-head{display:flex;justify-content:space-between;gap:20px;border-bottom:1px solid var(--jp-line);padding-bottom:14px;color:var(--jp-blue)}.notify-drop-head span{color:#8993a3;font-size:14px}.notify-drop-item{display:grid;grid-template-columns:22px 1fr;gap:14px;padding:24px 0;border-bottom:1px solid #e2e6ec}.notify-drop-item i{color:var(--jp-green);font-size:18px;margin-top:2px}.notify-drop-item strong{display:block;color:#283447;font-size:17px;line-height:1.35;font-weight:500}.notify-drop-item p{margin:10px 0 6px;color:#7a8494}.notify-drop-item small{display:block;color:#9aa2ae;margin-bottom:16px}.notify-drop-item a{display:inline-flex;align-items:center;justify-content:center;background:var(--jp-green);color:#fff;border-radius:9px;padding:10px 18px;font-weight:700;font-size:14px}.notify-drop-all{display:block;text-align:center;color:#3678ff;font-size:17px;padding-top:14px}
.jp-shell{background:var(--jp-bg);padding:34px 0 80px;min-height:calc(100vh - 80px);color:var(--jp-blue)}.jp-container{max-width:1240px}.jp-shell h1{font-size:36px;line-height:1.15;margin:0 0 26px;font-weight:800;color:var(--jp-blue)}.jp-tabs{display:flex;gap:30px;border-bottom:1px solid #bdc5d1;margin-bottom:16px;overflow:auto}.jp-tabs a{color:#687386;padding:0 0 14px;white-space:nowrap;font-weight:500}.jp-tabs a.is-active{color:var(--jp-green);border-bottom:2px solid var(--jp-green);font-weight:800}.jp-section[hidden],.jp-shell[hidden]{display:none!important}.jp-card{background:#fff;border-radius:32px;padding:32px;margin:0 0 24px;box-shadow:none}.jp-card h2{font-size:24px;color:var(--jp-blue);margin:0 0 12px}.jp-card p{color:var(--jp-muted);font-size:16px;line-height:1.55}.jp-card-head{display:flex;justify-content:space-between;gap:24px;align-items:flex-start}.jp-primary{background:var(--jp-green);color:#fff!important;border:0;border-radius:22px;padding:20px 26px;font-weight:800;display:inline-flex;align-items:center;justify-content:center}.jp-light-btn{display:inline-flex;background:#f1f1f2;border-radius:10px;padding:11px 24px;cursor:pointer;color:var(--jp-green);font-weight:700}.jp-accent{display:inline-flex;gap:10px;align-items:center;background:var(--jp-accent);color:#fff!important;border-radius:8px;padding:11px 18px}.jp-save{background:var(--jp-green);color:#fff;border:0;border-radius:18px;padding:18px 26px;font-weight:800;float:right;min-width:134px}.jp-save:disabled{background:#dedee1;color:#fff}.jp-message{clear:both;margin:14px 0 0!important;color:var(--jp-green)!important}.jp-empty{min-height:115px;display:grid;place-items:center;text-align:center}.jp-empty p{margin:0 0 14px}.jp-resume-list{display:grid;gap:14px;margin-top:18px}.jp-resume-item{border:1px solid #e1e4ea;border-radius:18px;padding:18px 20px;display:flex;align-items:center;justify-content:space-between;gap:16px}.jp-resume-item h3{margin:0 0 7px;font-size:18px}.jp-resume-item p{margin:0}.jp-resume-item span,.jp-resume-item a{color:#3678ff}.jp-photo-card{padding:32px}.jp-photo-form{display:flex;align-items:center;gap:24px}.jp-avatar{width:136px;height:136px;border:1px solid var(--jp-green);border-radius:999px;display:grid;place-items:center;background:#f3fffc;color:var(--jp-green);overflow:hidden;flex:0 0 136px}.jp-avatar i{font-size:48px}.jp-avatar img{width:100%;height:100%;object-fit:cover}.jp-info-card{position:relative;padding-bottom:84px}.jp-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px 24px}.jp-form-grid label{display:grid;gap:12px;color:var(--jp-blue);font-weight:800}.jp-form-grid label b{color:#ff4a5f}.jp-form-grid input,.jp-form-grid select{height:62px;border:1px solid #d7dbe2;border-radius:16px;padding:0 16px;background:#fff;color:#14233b;font-size:16px}.jp-form-grid input:disabled{background:#fff}.jp-form-grid small{font-weight:400;color:#69778b;margin-top:-4px}.jp-wide{grid-column:1/-1}.jp-contacts-card h2{margin-bottom:18px}.jp-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}.jp-contact-item{border:1px solid #d8dce4;border-radius:16px;padding:20px;display:grid;grid-template-columns:58px 1fr auto;align-items:center;gap:14px}.jp-contact-item>i{font-size:54px}.jp-contact-telegram>i{color:#229ed9}.jp-contact-whatsapp>i{color:#25d366}.jp-contact-github>i{color:#141414}.jp-contact-linkedin>i{color:#0a66c2}.jp-contact-item strong{font-size:20px;color:var(--jp-blue);font-weight:500}.jp-contact-item p{margin:6px 0 0}.jp-contact-item button{border:0;background:transparent;color:#3d78ff;font-size:16px;cursor:pointer}.jp-responses-card{min-height:380px}.jp-empty-big{min-height:260px;border:1px solid #eef0f4;border-radius:14px}.jp-empty-big span{width:96px;height:96px;border-radius:50%;background:#f0f1f4;display:grid;place-items:center;color:#949ba7;font-size:34px}.jp-empty-big h3{margin:18px 0 6px;font-size:22px;color:#020b1d}.jp-response-list{display:grid;gap:14px;margin-top:20px}.jp-response-list article{border:1px solid #e3e7ef;border-radius:18px;padding:20px;display:grid;gap:7px}.jp-response-list h3{margin:0;color:var(--jp-blue)}.jp-response-list a{color:#fff;background:var(--jp-green);width:max-content;padding:10px 16px;border-radius:9px;margin-top:8px}.jp-notify-layout{display:grid;grid-template-columns:320px 1fr;gap:32px}.jp-notify-settings{border-radius:28px}.jp-notify-settings label{display:grid;grid-template-columns:1fr 44px;align-items:center;margin:18px 0;color:var(--jp-blue);font-size:17px}.jp-notify-settings input{display:none}.jp-notify-settings label i{height:24px;width:44px;border-radius:99px;background:#8caaa3;position:relative}.jp-notify-settings label i:after{content:"";position:absolute;right:4px;top:4px;width:16px;height:16px;border-radius:50%;background:#fff}.jp-notify-settings input:checked+i{background:var(--jp-green)}.jp-telegram-box{border:1px solid #9ed8ff;background:#eef8ff;border-radius:14px;padding:18px;margin-top:16px}.jp-telegram-box a{display:inline-flex;gap:8px;align-items:center;background:#159bdc;color:#fff!important;border-radius:10px;padding:11px 17px;margin-top:10px;font-weight:800}.jp-notify-top{display:flex;justify-content:space-between;gap:20px;margin-bottom:18px}.jp-notify-tabs{display:flex;gap:30px;border-bottom:1px solid #bdc5d1}.jp-notify-tabs button{background:transparent;border:0;padding:0 0 16px;font-size:16px;color:#768092;cursor:pointer}.jp-notify-tabs button.is-active{color:var(--jp-green);border-bottom:2px solid var(--jp-green);font-weight:800}.jp-notify-tabs b{display:inline-grid;place-items:center;min-width:22px;height:22px;border-radius:999px;background:var(--jp-green);color:#fff;font-size:13px;margin-left:4px}.jp-notify-top select{min-width:252px;border:0;border-radius:16px;background:#fff;padding:0 16px;font-size:16px;color:var(--jp-blue)}.jp-notify-list{padding:32px}.jp-notify-list article{display:grid;grid-template-columns:22px 1fr;gap:14px;background:#f0fffb;border-radius:22px;padding:26px;margin-bottom:14px}.jp-notify-list article>i{color:var(--jp-green);margin-top:3px}.jp-notify-list h3{margin:0 0 8px;font-size:17px;color:#283447;font-weight:500}.jp-notify-list p{font-size:20px;margin:0 0 6px;color:#768092}.jp-notify-list small{display:block;color:#7b8492;margin-bottom:18px}.jp-notify-list a{display:inline-flex;background:var(--jp-green);color:#fff!important;border-radius:10px;padding:12px 22px;font-weight:700}.jp-back{display:inline-flex;align-items:center;gap:8px;color:var(--jp-green);margin:10px 0 28px}.jp-create-head{text-align:center;margin-bottom:50px}.jp-create-head h1{margin-bottom:18px}.jp-create-head p{color:var(--jp-muted);font-size:17px}.jp-create-option{width:100%;max-width:700px;margin:0 auto 24px;min-height:122px;border-radius:28px;border:1px solid #d8dce4;background:#fff;display:grid;grid-template-columns:54px 1fr auto;align-items:center;gap:14px;padding:28px 32px;text-align:left;color:var(--jp-blue);cursor:pointer}.jp-upload-option{border-style:dashed}.jp-create-option label{display:contents;cursor:pointer}.jp-create-option span{width:54px;height:54px;border-radius:12px;background:#f0f0f1;display:grid;place-items:center;color:#2c3a4f;font-size:20px}.jp-create-option strong{font-size:20px}.jp-create-option em{font-style:normal;color:var(--jp-muted);grid-column:2}.jp-create-option b{color:#8a93a1;font-weight:500}.route-jobs .site-footer{
  display:block;
}.jp-shell.is-hidden-by-hash{display:none!important}.vacancies-page.is-hidden-by-hash{display:none!important}
@media (max-width:900px){.header-notify-dropdown{right:-90px;width:min(92vw,438px)}.jp-shell{padding-top:24px}.jp-shell h1{font-size:30px}.jp-card{border-radius:24px;padding:24px}.jp-card-head,.jp-photo-form{display:grid}.jp-form-grid,.jp-contact-grid,.jp-notify-layout{grid-template-columns:1fr}.jp-notify-top{display:grid}.jp-notify-top select{height:56px;width:100%}.jp-create-option{grid-template-columns:54px 1fr;padding:22px}.jp-create-option b{grid-column:2}.jp-avatar{width:112px;height:112px;flex-basis:112px}.jp-primary{padding:16px 20px}.jp-tabs{gap:22px}.jp-contact-item{grid-template-columns:50px 1fr}.jp-contact-item button{grid-column:2;text-align:left}.jp-contact-item>i{font-size:46px}}

/* === Jobseeker personal profile AJAX patch v19 === */
.jp-card-note{margin:-2px 0 18px!important;color:var(--jp-muted)!important}.jp-photo-body{min-width:0}.jp-photo-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap}.jp-danger-btn{display:inline-flex;align-items:center;justify-content:center;min-height:43px;border:0;border-radius:10px;background:#fff1f2;color:#d92d20;padding:11px 20px;font-weight:800;cursor:pointer}.jp-danger-btn[hidden]{display:none!important}.jp-photo-form.is-loading,.jp-info-card.is-loading,.jp-contact-modal-card.is-loading{opacity:.72;pointer-events:none}.jp-avatar{position:relative}.jp-avatar img{display:block}

.jp-contact-modal{position: fixed;
    inset: 0;
    z-index: 120;
    /* display: grid; */
    place-items: center;
    padding: 18px;
    }

.jp-contact-modal[hidden]{display:none!important}.jp-contact-modal-card{width:min(520px,100%);background:#fff;border-radius:28px;padding:30px;box-shadow:0 24px 70px rgba(11,31,58,.24);position:relative}.jp-contact-modal-close{position:absolute;right:16px;top:14px;width:38px;height:38px;border:0;border-radius:12px;background:#f2f4f7;color:#172438;font-size:28px;line-height:1;cursor:pointer}.jp-contact-modal-card form{display:grid;gap:16px;margin-top:18px}.jp-contact-modal-card label{display:grid;gap:9px;color:var(--jp-blue);font-weight:800}.jp-contact-modal-card label b{color:#ff4a5f}.jp-contact-modal-card input,.jp-contact-modal-card textarea{width:100%;border:1px solid #d7dbe2;border-radius:16px;background:#fff;color:#14233b;font-size:16px;outline:0}.jp-contact-modal-card input{height:58px;padding:0 16px}.jp-contact-modal-card textarea{padding:14px 16px;resize:vertical;min-height:92px}.jp-contact-save{float:none;width:100%;margin-top:2px}.jp-contact-item p{word-break:break-word}.jp-contact-item button{font-weight:800}.jp-contact-item.is-saved{border-color:rgba(0,79,67,.34);background:#f7fffc}
@media (max-width:900px){.jp-photo-actions{display:grid;align-items:stretch}.jp-photo-actions .jp-light-btn,.jp-danger-btn{justify-content:center}.jp-contact-modal-card{border-radius:22px;padding:24px}.jp-contact-item{grid-template-columns:48px 1fr}.jp-contact-item button{grid-column:1/-1;text-align:center;background:#f4f7fb;border-radius:12px;padding:12px}}


/* ===== Jobseeker personal patch v3 fixes ===== */
.jp-avatar.has-photo{background:#fff;border-color:rgba(0,79,67,.55)}
.jp-avatar img{display:block;width:100%;height:100%;object-fit:cover;border-radius:inherit}
.jp-message.is-error{color:#d92d20!important}.jp-message.is-success{color:var(--jp-green)!important}
.jp-photo-form.is-loading,.jp-info-card.is-loading,.jp-contact-modal-card.is-loading{opacity:.72;pointer-events:none}
.jp-save:disabled,.jp-contact-save:disabled{cursor:not-allowed;opacity:.78}
.jp-contact-modal-card .jp-message{min-height:20px}
.jp-contact-item.is-saved [data-contact-value]{color:#334155;font-weight:600}


/* ===== Resume builder wizard v1 ===== */
.resume-create-only-head{margin-top:8px;margin-bottom:34px}.resume-create-manual-card{max-width:760px}.resume-builder{max-width:1260px;margin:0 auto;color:var(--jp-blue)}.resume-builder.is-loading{opacity:.72;pointer-events:none}.resume-stepper{display:flex;justify-content:center;align-items:flex-start;gap:120px;margin:30px auto 58px}.resume-step-dot{border:0;background:transparent;display:grid;justify-items:center;gap:14px;color:#7b8494;cursor:pointer}.resume-step-dot span{width:44px;height:44px;border-radius:50%;display:grid;place-items:center;background:#c9cdd3;color:#fff;font-weight:900}.resume-step-dot b{font-size:16px;font-weight:500;color:#667085}.resume-step-dot.is-active span{background:var(--jp-green)}.resume-step-dot.is-active b{color:var(--jp-green);font-weight:700}.resume-step-dot.is-done span{background:#25ad8a}.resume-step-title{text-align:center!important;margin:0 0 38px!important;font-size:34px!important}.resume-form-card{position:relative;background:#fff;padding:34px;margin-bottom:18px}.resume-grid{display:grid;gap:24px}.resume-grid.two{grid-template-columns:1fr 1fr}.resume-field{display:grid;gap:10px;color:var(--jp-blue);font-weight:800}.resume-field span{font-size:15px}.resume-field b{color:#ff3048}.resume-field input,.resume-field select,.resume-field textarea{width:100%;border:1px solid #d7dce4;background:#fff;border-radius:16px;outline:0;color:#1f2d44;font-size:16px}.resume-field input,.resume-field select{height:62px;padding:0 16px}.resume-field textarea{min-height:110px;padding:16px;resize:vertical}.resume-field small{font-weight:400;color:#6b7484;margin-top:-2px}.phone-combo{display:grid;grid-template-columns:78px 1fr;border:1px solid #d7dce4;border-radius:16px;overflow:hidden;height:62px;background:#fff}.phone-combo b{display:grid;place-items:center;border-right:1px solid #d7dce4;color:#344054;background:#fafafa}.phone-combo input{border:0!important;border-radius:0!important;height:60px!important}.resume-special-box{display:grid;grid-template-columns:1fr 34px auto;align-items:center;height:62px;border:1px solid #d7dce4;border-radius:16px;background:#fff;padding:0 16px}.resume-special-box input{border:0!important;padding:0!important;height:58px!important}.resume-special-box button{border:0;background:transparent;color:#98a2b3;font-size:20px;cursor:pointer}.resume-special-box em{font-style:normal;color:var(--jp-green);font-weight:800;padding-left:12px}.resume-check-row{display:flex;align-items:center;flex-wrap:wrap;gap:16px 18px;margin:26px 0}.resume-check-row strong{width:100%;font-size:15px;color:var(--jp-blue)}.resume-check-row label{display:inline-flex;align-items:center;gap:9px;color:#26364f;font-weight:500}.resume-check-row input,.resume-noexp input{width:18px;height:18px;accent-color:var(--jp-green)}.resume-add-line{width:100%;height:54px;border:1px solid #d7dce4;background:#f1f1f2;color:#29374d;font-size:16px;display:flex;align-items:center;justify-content:center;gap:12px;margin:14px 0 18px;cursor:pointer}.resume-add-line i{margin-left:auto;margin-right:20px;color:#687386}.resume-delete{position:absolute;right:34px;top:24px;border:0;background:transparent;color:#f04438;font-weight:600;cursor:pointer}.resume-noexp{display:inline-flex;gap:10px;align-items:center;color:#26364f;font-weight:600;margin-top:4px}.resume-step-panel[hidden]{display:none!important}.resume-builder-actions{display:flex;justify-content:flex-end;gap:18px;margin:34px 0 0}.resume-btn{height:62px;border:0;border-radius:18px;padding:0 28px;font-weight:900;cursor:pointer}.resume-btn-light{background:#f1f1f2;color:var(--jp-green)}.resume-btn-primary{background:var(--jp-green);color:#fff;min-width:270px}.resume-btn:disabled{background:#dedee1;color:#fff;cursor:not-allowed}.resume-builder-message{text-align:right}.resume-skill-tags{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:18px}.resume-skill-tags span{display:inline-flex;align-items:center;gap:8px;border:1px solid var(--jp-green);color:var(--jp-green);border-radius:10px;padding:10px 12px;font-weight:600}.resume-skill-tags button{border:0;background:transparent;color:var(--jp-green);font-size:18px;line-height:1;cursor:pointer}.resume-skill-input{display:grid;grid-template-columns:1fr 140px;gap:10px}.resume-skill-input input{height:56px;border:1px solid #d7dce4;border-radius:14px;padding:0 16px}.resume-skill-input button{border:0;border-radius:12px;background:#dedee1;color:#fff;font-weight:800}.resume-suggested-skills{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}.resume-suggested-skills button{border:1px solid #d8dde5;background:#fff;border-radius:10px;padding:11px 16px;color:#1f2d44;cursor:pointer}.resume-language-row{display:grid;grid-template-columns:1fr 1fr auto;gap:16px;align-items:center;margin-bottom:12px}.resume-language-row input,.resume-language-row select{height:54px;border:1px solid #d7dce4;border-radius:14px;padding:0 16px;background:#fff}.resume-language-row button{border:0;background:transparent;color:#f04438;font-weight:600;cursor:pointer}.resume-language-card{padding:24px}.resume-repeat-item{margin-top:0}.resume-builder .jp-message.is-error{color:#d92d20!important}.resume-builder .jp-message.is-success{color:var(--jp-green)!important}
@media (max-width:1100px){.resume-stepper{gap:48px}.resume-grid.two{grid-template-columns:1fr}.resume-check-row{display:grid}.resume-special-box{grid-template-columns:1fr 34px}.resume-special-box em{grid-column:1/-1;padding:0 0 10px}.resume-language-row{grid-template-columns:1fr}.resume-builder-actions{display:grid}.resume-btn,.resume-btn-primary{width:100%;min-width:0}.resume-skill-input{grid-template-columns:1fr}.resume-skill-input button{height:52px}}
@media (max-width:700px){.resume-stepper{gap:14px;justify-content:space-between}.resume-step-dot b{font-size:12px}.resume-step-dot span{width:36px;height:36px}.resume-step-title{font-size:26px!important}.resume-form-card{border-radius:20px;padding:22px}.resume-check-row label{font-size:14px}}

/* ===== HandyMens resume/profile professional refresh v2 ===== */
.route-jobs{
  background:#f4f5f6;
}
.route-jobs .site-header{
  height:74px!important;
  background:rgba(255,255,255,.98)!important;
  border-bottom:1px solid #e8ecf1!important;
  box-shadow:0 1px 0 rgba(15,23,42,.03)!important;
  backdrop-filter:blur(18px)!important;
}
.route-jobs .site-header .header-row{height:74px!important}
.route-jobs .main-nav a{color:#1a283c!important;opacity:1!important}
.route-jobs .brand-text,.route-jobs .brand{color:var(--green)!important}
.route-jobs .brand-mark i{background:var(--green)!important}
.route-jobs .btn-primary{border-radius:14px;height:46px;min-width:150px}
.route-jobs .btn-light{background: linear-gradient(135deg, #004f43, #087765);}
.route-jobs .jp-shell{
  --jp-bg:#f4f5f6;
  --jp-card:#ffffff;
  --jp-blue:#101d33;
  --jp-muted:#667085;
  --jp-green:#004f43;
  --jp-line:#dde3eb;
  background:var(--jp-bg)!important;
  padding:108px 0 96px!important;
  min-height:100vh!important;
}
.route-jobs .jp-container{
  width:min(1580px, calc(100% - 96px))!important;
  max-width:none!important;
  margin:0 auto!important;
}
.route-jobs .jp-shell h1{
  font-size:42px!important;
  line-height:1.12!important;
  letter-spacing:-.9px!important;
  margin:0 0 30px!important;
}
.route-jobs .jp-tabs{
  background:transparent;
  border-bottom:1px solid #c8d0db!important;
  gap:34px!important;
  margin-bottom:28px!important;
}
.route-jobs .jp-tabs a{
  font-size:16px!important;
  color:#687386!important;
}
.route-jobs .jp-tabs a.is-active{
  color:var(--jp-green)!important;
  border-bottom:3px solid var(--jp-green)!important;
}
.route-jobs .jp-card{
  border-radius:34px!important;
  background:#fff!important;
  border:1px solid rgba(221,227,235,.72)!important;
  box-shadow:0 24px 70px rgba(16,29,51,.04)!important;
  padding:42px!important;
}
.route-jobs .jp-card h2{font-size:28px!important;letter-spacing:-.35px!important}
.route-jobs .jp-card p{font-size:16px!important;color:#667085!important}
.route-jobs .jp-card-head{align-items:center!important}
.route-jobs .jp-primary,.route-jobs .jp-save,.route-jobs .jp-accent{
  border-radius:18px!important;
  min-height:52px!important;
  box-shadow:0 14px 28px rgba(0,79,67,.12)!important;
}
.route-jobs .jp-resume-card,.route-jobs .jp-personal-resume-mini,.route-jobs .jp-info-card,.route-jobs .jp-contacts-card,.route-jobs .jp-responses-card,.route-jobs .jp-notify-list,.route-jobs .jp-notify-settings{
  width:100%!important;
}
.route-jobs .jp-resume-item,.route-jobs .jp-contact-item,.route-jobs .jp-response-list article,.route-jobs .jp-notify-list article{
  border-color:#dfe5ed!important;
  border-radius:20px!important;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease!important;
}
.route-jobs .jp-resume-item:hover,.route-jobs .jp-contact-item:hover,.route-jobs .jp-response-list article:hover,.route-jobs .jp-notify-list article:hover{
  transform:translateY(-1px);
  border-color:#cbd5e1!important;
  box-shadow:0 14px 40px rgba(16,29,51,.06)!important;
}
.route-jobs .jp-form-grid input,.route-jobs .jp-form-grid select,.route-jobs .resume-field input,.route-jobs .resume-field select,.route-jobs .resume-field textarea,.route-jobs .resume-language-row input,.route-jobs .resume-language-row select{
  border-color:#d9dfe8!important;
  background:#fff!important;
  border-radius:18px!important;
  color:#142238!important;
  transition:border-color .18s ease, box-shadow .18s ease!important;
}
.route-jobs .jp-form-grid input:focus,.route-jobs .jp-form-grid select:focus,.route-jobs .resume-field input:focus,.route-jobs .resume-field select:focus,.route-jobs .resume-field textarea:focus,.route-jobs .resume-language-row input:focus,.route-jobs .resume-language-row select:focus{
  border-color:rgba(0,79,67,.72)!important;
  box-shadow:0 0 0 4px rgba(0,79,67,.08)!important;
}
.route-jobs .jp-contact-grid{gap:26px!important}
.route-jobs .jp-contact-item{padding:24px!important;grid-template-columns:64px 1fr auto!important;background:#fff!important}
.route-jobs .jp-contact-item>i{font-size:58px!important}
.route-jobs .jp-contact-item strong{font-weight:800!important;font-size:19px!important}
.route-jobs .jp-contact-item button{font-weight:800!important}
.route-jobs .jp-notify-layout{grid-template-columns:360px minmax(0,1fr)!important;align-items:start!important}
.route-jobs .jp-notify-top{align-items:center!important}
.route-jobs .jp-notify-top select{height:54px!important;border:1px solid #d9dfe8!important}

.route-jobs .jp-create-head.resume-create-only-head{
  margin:8px auto 34px!important;
  max-width:820px;
}
.route-jobs .jp-create-head h1{text-align:center!important;font-size:44px!important}
.route-jobs .jp-create-option.resume-create-manual-card{
  width:min(880px,100%)!important;
  max-width:none!important;
  min-height:136px!important;
  border-radius:30px!important;
  border:1px solid #dce3ec!important;
  box-shadow:0 24px 70px rgba(16,29,51,.045)!important;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease!important;
}
.route-jobs .jp-create-option.resume-create-manual-card:hover{
  transform:translateY(-2px);
  border-color:rgba(0,79,67,.35)!important;
  box-shadow:0 30px 85px rgba(16,29,51,.075)!important;
}
.route-jobs .resume-builder{
  width:min(1500px,100%)!important;
  max-width:none!important;
  margin:0 auto!important;
}
.route-jobs .resume-stepper{
  gap:clamp(34px,8vw,150px)!important;
  margin:20px auto 52px!important;
  padding:40px 20px!important;
}
.route-jobs .resume-step-dot span{
  width:48px!important;
  height:48px!important;
  box-shadow:0 10px 22px rgba(16,29,51,.08)!important;
}
.route-jobs .resume-step-dot b{font-size:15px!important;white-space:nowrap!important}
.route-jobs .resume-step-title{
  font-size:38px!important;
  letter-spacing:-.7px!important;
  margin-bottom:34px!important;
}
.route-jobs .resume-form-card{
  
  padding:38px!important;
  margin-bottom:22px!important;
  box-shadow:0 24px 70px rgba(16,29,51,.045)!important;
}
.route-jobs .resume-grid{gap:26px!important}
.route-jobs .resume-grid.two{margin-top: 18px; grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important}
.route-jobs .resume-field{gap:11px!important}
.route-jobs .resume-field span,.route-jobs .resume-check-row strong{
  font-size:15px!important;
  color:#142238!important;
  font-weight:900!important;
}
.route-jobs .resume-field input,.route-jobs .resume-field select,.route-jobs .resume-field textarea{
  font-size:16px!important;
  min-height:64px!important;
}
.route-jobs .resume-field textarea{min-height:128px!important}
.route-jobs .phone-combo{
  grid-template-columns:58px minmax(0,1fr)!important;
  height:64px!important;
  border-color:#d9dfe8!important;
  border-radius:18px!important;
}
.route-jobs .phone-combo b{
  font-size:19px!important;
  color:#142238!important;
  background:#f7f8fa!important;
}
.route-jobs .phone-combo input{height:62px!important}
.route-jobs .resume-check-row{
  background:#fbfcfd;
  border:1px solid #edf1f5;
  border-radius:20px;
  padding:18px 20px;
  margin:26px 0!important;
}
.route-jobs .resume-check-row label{
  background:#fff;
  border:1px solid #dfe5ed;
  border-radius:999px;
  padding:10px 14px;
}
.route-jobs .resume-add-line{
  height:58px!important;
  background:#f0f2f4!important;
  border-color:#dbe2eb!important;
  font-weight:800!important;
}
.route-jobs .resume-delete{top:22px!important;right:30px!important}
.route-jobs .resume-builder-actions{
  position:sticky;
  bottom:18px;
  z-index:8;
  background:rgba(244,245,246,.88);
  backdrop-filter:blur(10px);
 
  padding:14px;
}
.route-jobs .resume-btn{height:58px!important;border-radius:16px!important}
.route-jobs .resume-btn-primary{background:var(--jp-green)!important}
.route-jobs .resume-skill-input{grid-template-columns:minmax(0,1fr) 150px!important}
.route-jobs .resume-skill-input input{height:58px!important;border-radius:16px!important}
.route-jobs .resume-skill-input button{border-radius:14px!important;background:#d9dde4!important}
.route-jobs .resume-suggested-skills button{border-radius:14px!important;background:#fff!important}
.route-jobs .resume-language-row{grid-template-columns:minmax(0,1fr) minmax(0,1fr) auto!important}

.resume-media-card{margin-top:22px!important}
.resume-media-head{display:flex;justify-content:space-between;gap:20px;align-items:flex-start;margin-bottom:22px}
.resume-media-head h3{margin:0 0 8px;color:#142238;font-size:22px;letter-spacing:-.25px}
.resume-media-head p{margin:0;color:#667085!important}
.resume-upload-field{
  position:relative;
  display:grid;
  gap:12px;
  border:1.5px dashed #cbd5e1;
  background:linear-gradient(180deg,#fff,#fbfcfd);
  border-radius:24px;
  padding:24px;
  cursor:pointer;
  min-height:220px;
  transition:border-color .18s ease, background .18s ease, transform .18s ease;
}
.resume-upload-field:hover{border-color:rgba(0,79,67,.55);transform:translateY(-1px);background:#fafffd}
.resume-upload-field>span{font-weight:900;color:#142238;font-size:16px}
.resume-upload-field input[type=file]{position:absolute;inset:0;opacity:0;cursor:pointer}
.resume-upload-field strong{display:inline-flex;align-items:center;gap:10px;width:max-content;max-width:100%;height:46px;padding:0 18px;border-radius:14px;background:var(--green);color:#fff;font-weight:900}
.resume-upload-field small{color:#667085;font-weight:500;line-height:1.45}
.resume-file-preview{display:grid;gap:10px;margin-top:6px;position:relative;z-index:2}
.resume-image-preview{grid-template-columns:repeat(auto-fill,minmax(92px,1fr))}
.resume-file-item{border:1px solid #dfe5ed;border-radius:16px;background:#fff;min-height:54px;padding:8px;display:flex;align-items:center;gap:10px;overflow:hidden}
.resume-file-item img{width:100%;aspect-ratio:1.15/1;object-fit:cover;border-radius:12px;display:block}
.resume-image-preview .resume-file-item{display:grid;gap:8px;padding:8px}
.resume-file-item i{width:38px;height:38px;border-radius:12px;display:grid;place-items:center;background:#eef8f5;color:var(--green);font-size:16px;flex:0 0 auto}
.resume-file-item span{font-size:12px;color:#475467;line-height:1.35;overflow:hidden;text-overflow:ellipsis}

@media (max-width:1180px){
  .route-jobs .jp-container{width:min(100% - 48px, 980px)!important}
  .route-jobs .jp-notify-layout{grid-template-columns:1fr!important}
  .route-jobs .resume-stepper{gap:28px!important;overflow-x:auto;justify-content:flex-start!important}
  .route-jobs .resume-grid.two,.route-jobs .resume-media-grid{grid-template-columns:1fr!important}
  .route-jobs .resume-language-row{grid-template-columns:1fr!important}
}
@media (max-width:760px){
  .route-jobs .site-header{height:70px!important}
  .route-jobs .site-header .header-row{height:70px!important}
  .route-jobs .jp-shell{padding:92px 0 70px!important}
  .route-jobs .jp-container{width:calc(100% - 24px)!important}
  .route-jobs .jp-shell h1{font-size:30px!important}
  .route-jobs .jp-card{border-radius:24px!important;padding:22px!important}
  .route-jobs .jp-card-head{display:grid!important;gap:16px!important}
  .route-jobs .jp-primary{width:100%!important}
  .route-jobs .jp-tabs{gap:18px!important}
  .route-jobs .jp-contact-item{grid-template-columns:48px 1fr!important;padding:18px!important}
  .route-jobs .jp-contact-item button{grid-column:2;text-align:left;padding:0!important}
  .route-jobs .jp-contact-item>i{font-size:42px!important}
  .route-jobs .resume-stepper{margin-bottom:30px!important;padding:8px 0!important}
  .route-jobs .resume-step-dot span{width:40px!important;height:40px!important}
  .route-jobs .resume-step-dot b{font-size:12px!important;max-width:100px;white-space:normal!important;text-align:center}
  .route-jobs .resume-step-title{font-size:28px!important;margin-bottom:22px!important}
  .route-jobs .resume-form-card{border-radius:24px!important;padding:20px!important}
  .route-jobs .resume-check-row{display:grid!important;gap:10px!important;padding:14px!important}
  .route-jobs .resume-check-row label{border-radius:14px!important;width:100%}
  .route-jobs .resume-skill-input{grid-template-columns:1fr!important}
  .route-jobs .resume-skill-input button{height:52px!important}
  .route-jobs .resume-builder-actions{position:static!important;display:grid!important;gap:10px!important;margin-top:22px!important}
  .route-jobs .resume-btn{width:100%!important;min-width:0!important}
  .resume-image-preview{grid-template-columns:repeat(2,minmax(0,1fr))}
  .resume-upload-field strong{width:100%;justify-content:center}
}
@media (max-width:420px){
  .route-jobs .jp-container{width:calc(100% - 16px)!important}
  .route-jobs .jp-card,.route-jobs .resume-form-card{padding:16px!important;border-radius:20px!important}
  .route-jobs .resume-field input,.route-jobs .resume-field select{height:56px!important;min-height:56px!important}
  .route-jobs .phone-combo{height:56px!important}
  .route-jobs .phone-combo input{height:54px!important}
}


/* ===== Resume save v3: clear feedback + live resume list ===== */
.jp-resume-head-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
}
.jp-resume-head-actions .jp-light-btn{
  height:48px;
  padding:0 18px;
  border:0;
  border-radius:15px;
  background:#f3f5f7;
  color:#142334;
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-weight:800;
  cursor:pointer;
}
.jp-resume-head-actions .jp-light-btn:hover{background:#e9eef2}
.resume-save-result{
  margin:18px 0 20px;
  padding:18px 20px;
  border-radius:20px;
  display:flex;
  align-items:flex-start;
  gap:14px;
  border:1px solid rgba(0,79,67,.18);
  background:linear-gradient(135deg,#ecfdf7,#ffffff);
  color:#0f3f36;
  box-shadow:0 16px 34px rgba(0,79,67,.08);
}
.resume-save-result[hidden]{display:none}
.resume-save-result i{
  width:36px;
  height:36px;
  flex:0 0 36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#004f43;
  color:#fff;
}
.resume-save-result strong{
  display:block;
  margin:0 0 4px;
  font-size:16px;
  line-height:1.25;
  font-weight:900;
}
.resume-save-result p{
  margin:0;
  color:#5d6a7a;
  font-size:14px;
  line-height:1.45;
}
.resume-save-result.is-error{
  border-color:rgba(217,45,32,.22);
  background:linear-gradient(135deg,#fff1f1,#ffffff);
  color:#9b1c17;
}
.resume-save-result.is-error i{background:#d92d20}
.jp-resume-list[data-resume-list]{
  display:grid;
  gap:14px;
}
.jp-resume-item.is-fresh{
  animation:resumeFreshIn .42s ease both;
  border-color:rgba(0,79,67,.2);
  box-shadow:0 12px 28px rgba(0,79,67,.06);
}
.jp-resume-item small{
  display:block;
  margin-top:6px;
  color:#7a8593;
  font-size:13px;
  line-height:1.35;
}
@keyframes resumeFreshIn{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:translateY(0)}
}
.resume-builder-message.is-success{
  margin-top:18px;
  padding:14px 16px;
  border-radius:16px;
  background:#ecfdf7;
  color:#004f43 !important;
  border:1px solid rgba(0,79,67,.18);
}
.resume-builder-message.is-error{
  margin-top:18px;
  padding:14px 16px;
  border-radius:16px;
  background:#fff1f1;
  color:#d92d20 !important;
  border:1px solid rgba(217,45,32,.18);
}

@media (max-width:760px){
  .jp-resume-head-actions{
    width:100%;
    justify-content:stretch;
  }
  .jp-resume-head-actions .jp-light-btn,
  .jp-resume-head-actions .jp-primary{
    width:100%;
    justify-content:center;
  }
  .resume-save-result{
    padding:15px;
    border-radius:16px;
  }
}



/* ===== Resume visibility fix v5 ===== */
.jp-resume-list:not([hidden]){display:grid!important}
.jp-resume-item{background:#fff!important;visibility:visible!important;opacity:1!important}
.resume-save-result.is-error{background:#fff5f5;border:1px solid #ffd2d2;color:#b42318}
.resume-save-result.is-success{background:#effff8;border:1px solid #baf5d5;color:#027a48}
.resume-save-result{border-radius:18px;padding:16px 18px;margin:18px 0;display:flex;gap:12px;align-items:flex-start}
.jp-resume-head-actions{display:flex;gap:12px;align-items:center;flex-wrap:wrap}


[hidden],
.is-hidden-by-hash {
  display: none !important;
}

.jp-shell:not([hidden]) {
  display: block !important;
}


/* ===== Resume modern v11 ===== */
.jp-resume-card {
  border: 0 !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at top left, rgba(255, 136, 0, .12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
  box-shadow: 0 26px 80px rgba(15, 23, 42, .10) !important;
  overflow: hidden;
}

.jp-resume-card .jp-card-head {
  padding: 26px !important;
  border-bottom: 1px solid rgba(15, 23, 42, .07);
}

.jp-resume-head-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.jp-resume-list {
  gap: 18px !important;
}

.jp-resume-modern-item {
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 20px !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 24px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,250,252,.96)),
    radial-gradient(circle at right top, rgba(255, 136, 0, .12), transparent 40%) !important;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .08) !important;
  transition: .22s ease !important;
}

.jp-resume-modern-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 136, 0, .30) !important;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .13) !important;
}

.jp-resume-modern-icon {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: #004f43;
  color: #fff;
  font-size: 26px;
}

.jp-resume-modern-main {
  min-width: 0;
}

.jp-resume-modern-top {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 6px;
}

.jp-resume-modern-top h3 {
  margin: 0 !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  color: #0f172a !important;
  letter-spacing: -0.03em;
}

.jp-resume-modern-main p {
  margin: 0 0 12px !important;
  color: #64748b !important;
  font-size: 14px !important;
}

.jp-resume-modern-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.jp-resume-modern-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-size: 12px;
  font-weight: 800;
}

.jp-resume-modern-meta i {
  color: #f97316;
}

.jp-resume-status {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.jp-resume-status-active {
  color: #047857;
  background: rgba(16, 185, 129, .12);
}

.jp-resume-status-draft {
  color: #b45309;
  background: rgba(245, 158, 11, .14);
}

.jp-resume-status-hidden {
  color: #64748b;
  background: rgba(100, 116, 139, .13);
}

.jp-resume-modern-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.jp-resume-modern-actions button,
.resume-view-actions button {
  border: 0;
  border-radius: 16px;
  padding: 12px 16px;
  background: #f1f5f9;
  color: #0f172a;
  font-weight: 900;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .2s ease;
}

.jp-resume-modern-actions button:hover,
.resume-view-actions button:hover {
  transform: translateY(-2px);
  background: #e2e8f0;
}

.jp-resume-modern-actions button.is-primary,
.resume-view-actions button.is-primary {
  background: #004f43;
  color: #fff;
}

.jp-empty-modern {
  border: 1px dashed rgba(15, 23, 42, .14) !important;
  border-radius: 24px !important;
  background: rgba(248, 250, 252, .85) !important;
  padding: 34px !important;
  text-align: center;
}

.jp-empty-modern span {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 138, 0, .16), rgba(255, 176, 0, .18));
  color: #f97316;
  font-size: 28px;
}

.jp-empty-modern h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #0f172a;
}

.jp-empty-modern p {
  margin: 0 auto 18px;
  max-width: 460px;
  color: #64748b;
}

/* Personal resume modern */
.jp-personal-resume-modern {
  margin-top: 22px;
}

.jp-personal-resume-head {
  align-items: center;
}

.jp-personal-resume-head p {
  margin: 5px 0 0;
  color: #64748b;
}

.jp-personal-resume-list {
  display: grid;
  gap: 12px;
}

.jp-personal-resume-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 42px 42px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
}

.jp-personal-resume-item > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 138, 0, .12);
  color: #f97316;
}

.jp-personal-resume-item strong {
  display: block;
  color: #0f172a;
  font-weight: 900;
}

.jp-personal-resume-item p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 13px;
}

.jp-personal-resume-item button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  color: #0f172a;
  background: #f1f5f9;
}

.jp-personal-resume-item button:hover {
  background: #ff8a00;
  color: #fff;
}

/* Direct create resume */
.resume-builder-start[hidden] {
  display: none !important;
}

.resume-builder {
  border-radius: 30px !important;
  background:
    radial-gradient(circle at top right, rgba(255, 138, 0, .10), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8fafc) !important;
  box-shadow: 0 26px 80px rgba(15, 23, 42, .10) !important;
}


/* Resume view modal */
.resume-view-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, .58);
  backdrop-filter: blur(12px);
  overflow: auto;
}

.resume-view-card {
  background: #fff;
  box-shadow: 0 40px 120px rgba(15, 23, 42, .35);
  position: relative;
  overflow: hidden;
}

.resume-view-close {
  position: absolute;
  right: 18px;
  top: 4px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  background: #f1f5f9;
  font-size: 24px;
  font-weight: 900;
  color: #0f172a;
  z-index: 2;
}

.resume-view-content {
  padding: 34px;
}

.resume-view-head {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.resume-view-head > span {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  background: linear-gradient(135deg, #ff8a00, #ffb000);
  color: #fff;
  font-size: 30px;
  box-shadow: 0 18px 38px rgba(255, 138, 0, .28);
}

.resume-view-head h2 {
  margin: 0 0 6px;
  font-size: 30px;
  letter-spacing: -0.04em;
  color: #0f172a;
}

.resume-view-head p {
  margin: 0;
  color: #64748b;
  font-weight: 700;
}

.resume-view-head b {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(16, 185, 129, .12);
  color: #047857;
}

.resume-view-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 22px 0;
}

.resume-view-grid > div {
  padding: 16px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .07);
}

.resume-view-grid small {
  display: block;
  margin-bottom: 7px;
  color: #94a3b8;
  font-weight: 800;
}

.resume-view-grid strong {
  color: #0f172a;
  word-break: break-word;
}

.resume-view-section {
  margin-top: 20px;
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 12px 34px rgba(15, 23, 42, .05);
}

.resume-view-section h3 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 20px;
}

.resume-view-section p {
  margin: 0;
  color: #475569;
  line-height: 1.65;
}

.resume-view-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.resume-view-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  color: #334155;
  font-weight: 800;
  font-size: 13px;
}

.resume-view-line {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, .06);
}

.resume-view-line + .resume-view-line {
  margin-top: 12px;
}

.resume-view-line strong {
  display: block;
  color: #0f172a;
  margin-bottom: 4px;
}

.resume-view-line small {
  display: block;
  color: #94a3b8;
  margin: 6px 0;
}

.resume-view-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 860px) {
  .jp-resume-modern-item {
    grid-template-columns: 54px minmax(0, 1fr) !important;
  }

  .jp-resume-modern-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .jp-resume-modern-actions button {
    flex: 1;
    justify-content: center;
  }

  .resume-view-head,
  .resume-view-grid {
    grid-template-columns: 1fr;
  }

  .resume-view-content {
    padding: 22px;
  }
}


/* ==========================================================
   Hero region picker fullscreen modal v19
   ========================================================== */

body.city-picker-open{
  overflow:hidden !important;
}

.city-picker-fullscreen .city-picker-menu,
.city-picker-menu.city-picker-full-modal{
  position:fixed !important;
  inset:0 !important;
  left:0 !important;
  top:0 !important;
  right:0 !important;
  bottom:0 !important;
  width:100vw !important;
  max-width:none !important;
  height:100dvh !important;
  max-height:none !important;
  transform:none !important;
  z-index:1000000 !important;
  padding:clamp(16px, 3vw, 42px) !important;
  border:0 !important;
  border-radius:0 !important;
  background:
    radial-gradient(circle at 20% 10%, rgba(0,79,67,.12), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 42%, #eefbf8 100%) !important;
  box-shadow:none !important;
  overflow:auto !important;
}

.city-picker-fullscreen .city-picker-menu[hidden],
.city-picker-menu.city-picker-full-modal[hidden]{
  display:none !important;
}

.city-picker-fullscreen .city-picker-card-v18,
.city-picker-fullscreen [data-city-card]{
  width:min(980px, 100%) !important;
  margin:0 auto !important;
  min-height:calc(100dvh - clamp(32px, 6vw, 84px)) !important;
  display:flex !important;
  flex-direction:column !important;
  padding:clamp(18px, 3vw, 34px) !important;
  border:1px solid rgba(226,232,240,.9) !important;
  border-radius:32px !important;
  background:rgba(255,255,255,.96) !important;
  box-shadow:0 28px 90px rgba(15,23,42,.18) !important;
}

.city-picker-fullscreen .city-picker-head{
  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;
  gap:18px !important;
  margin-bottom:22px !important;
}

.city-picker-fullscreen .city-picker-head strong{
  display:block !important;
  color:#102238 !important;
  font-size:clamp(24px, 3vw, 38px) !important;
  line-height:1.1 !important;
  letter-spacing:-.8px !important;
  font-weight:900 !important;
}

.city-picker-fullscreen .city-picker-head p{
  margin:8px 0 0 !important;
  color:#64748b !important;
  font-size:15px !important;
  line-height:1.45 !important;
  font-weight:600 !important;
}

.city-picker-fullscreen .city-picker-close{
  width:48px !important;
  height:48px !important;
  flex:0 0 48px !important;
  border:0 !important;
  border-radius:16px !important;
  background:#f1f5f9 !important;
  color:#0f172a !important;
  font-size:30px !important;
  line-height:1 !important;
  cursor:pointer !important;
}

.city-picker-fullscreen .city-picker-search{
  width:100% !important;
  height:64px !important;
  margin:0 0 12px !important;
  padding:0 18px !important;
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  border:1px solid #dbe3eb !important;
  border-radius:20px !important;
  background:#fff !important;
  color:#64748b !important;
  box-shadow:0 12px 28px rgba(15,23,42,.06) !important;
}

.city-picker-fullscreen .city-picker-search input{
  width:100% !important;
  height:100% !important;
  border:0 !important;
  outline:0 !important;
  background:transparent !important;
  color:#0f172a !important;
  font-size:17px !important;
  font-weight:800 !important;
}

.city-picker-fullscreen .city-picker-manual-btn{
  width:100% !important;
  min-height:54px !important;
  margin:0 0 20px !important;
  border:1px dashed rgba(0,79,67,.45) !important;
  border-radius:18px !important;
  background:#ecfdf7 !important;
  color:#004f43 !important;
  font-size:15px !important;
  line-height:1.25 !important;
  font-weight:900 !important;
  cursor:pointer !important;
}

.city-picker-fullscreen .city-picker-list{
  flex:1 1 auto !important;
  max-height:none !important;
  overflow:auto !important;
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  align-content:start !important;
  gap:12px !important;
  padding:4px 4px 8px !important;
}

.city-picker-fullscreen .city-picker-list button{
  width:100% !important;
  min-height:56px !important;
  padding:14px 16px !important;
  border:1px solid #e2e8f0 !important;
  border-radius:18px !important;
  background:#fff !important;
  color:#1e293b !important;
  text-align:left !important;
  font-size:15px !important;
  line-height:1.25 !important;
  font-weight:850 !important;
  cursor:pointer !important;
  transition:.16s ease !important;
}

.city-picker-fullscreen .city-picker-list button:hover,
.city-picker-fullscreen .city-picker-list button.is-selected{
  border-color:rgba(0,79,67,.35) !important;
  background:#eaf8f5 !important;
  color:#004f43 !important;
  transform:translateY(-1px) !important;
}

.city-picker-fullscreen .city-picker-list button[hidden]{
  display:none !important;
}

.search-field.search-city.city-picker.city-picker-fullscreen{
  z-index:auto !important;
}

@media (max-width:900px){
  .city-picker-fullscreen .city-picker-list{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width:560px){
  .city-picker-fullscreen .city-picker-menu,
  .city-picker-menu.city-picker-full-modal{
    padding:0 !important;
  }

  .city-picker-fullscreen .city-picker-card-v18,
  .city-picker-fullscreen [data-city-card]{
    min-height:100dvh !important;
    border-radius:0 !important;
    border:0 !important;
    box-shadow:none !important;
    padding:18px 14px !important;
  }

  .city-picker-fullscreen .city-picker-head strong{
    font-size:25px !important;
  }

  .city-picker-fullscreen .city-picker-search{
    height:58px !important;
    border-radius:18px !important;
  }

  .city-picker-fullscreen .city-picker-list{
    grid-template-columns:1fr !important;
    gap:9px !important;
  }

  .city-picker-fullscreen .city-picker-list button{
    min-height:52px !important;
    border-radius:16px !important;
  }
}




/* ==========================================================
   City/Region picker TRUE fullscreen page modal v20
   Eng oxiriga qo'yilsin
   ========================================================== */

html body.city-picker-open,
html body.city-picker-open *{
  overscroll-behavior:contain;
}

html body.city-picker-open{
  overflow:hidden !important;
}

/* wrapper modalni kesib yubormasin */
html body .search-field.search-city.city-picker.city-picker-fullscreen{
  overflow:visible !important;
  z-index:1000001 !important;
}

/* modal haqiqiy yangi sahifadek butun ekranni egallasin */
html body .search-field.search-city.city-picker.city-picker-fullscreen.is-open > .city-picker-menu.city-picker-full-modal,
html body .city-picker-fullscreen.is-open > .city-picker-menu.city-picker-full-modal,
html body .city-picker-menu.city-picker-full-modal{
  position:fixed !important;
  inset:0 !important;
  left:0 !important;
  top:0 !important;
  right:0 !important;
  bottom:0 !important;

  width:100vw !important;
  max-width:100vw !important;
  min-width:100vw !important;

  height:100vh !important;
  height:100dvh !important;
  max-height:100vh !important;
  max-height:100dvh !important;
  min-height:100vh !important;
  min-height:100dvh !important;

  margin:0 !important;
  padding:0 !important;
  transform:none !important;

  border:0 !important;
  border-radius:0 !important;
  background:#f8fafc !important;
  box-shadow:none !important;

  overflow:hidden !important;
  z-index:2147483000 !important;
}

/* hidden bo'lsa ko'rinmasin */
html body .city-picker-menu.city-picker-full-modal[hidden]{
  display:none !important;
}

/* JS ichida yaratiladigan card ham endi card emas, full page bo'lsin */
html body .city-picker-fullscreen .city-picker-full-modal > .city-picker-card-v18,
html body .city-picker-fullscreen .city-picker-full-modal > [data-city-card]{
  width:100vw !important;
  max-width:100vw !important;
  min-width:100vw !important;

  height:100vh !important;
  height:100dvh !important;
  min-height:100vh !important;
  min-height:100dvh !important;
  max-height:100vh !important;
  max-height:100dvh !important;

  margin:0 !important;
  padding:24px clamp(16px, 4vw, 56px) !important;

  display:flex !important;
  flex-direction:column !important;

  border:0 !important;
  border-radius:0 !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(0,79,67,.10), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #eefbf8 100%) !important;
  box-shadow:none !important;
  overflow:hidden !important;
}

/* yuqori qismi */
html body .city-picker-fullscreen .city-picker-head{
  flex:0 0 auto !important;
  width:min(1180px, 100%) !important;
  margin:0 auto 22px !important;
  padding:8px 0 0 !important;

  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;
  gap:18px !important;
}

html body .city-picker-fullscreen .city-picker-head strong{
  display:block !important;
  color:#0f172a !important;
  font-size:clamp(26px, 4vw, 46px) !important;
  line-height:1.08 !important;
  letter-spacing:-1px !important;
  font-weight:950 !important;
}

html body .city-picker-fullscreen .city-picker-head p{
  display:block !important;
  margin:10px 0 0 !important;
  color:#64748b !important;
  font-size:16px !important;
  line-height:1.45 !important;
  font-weight:650 !important;
}

html body .city-picker-fullscreen .city-picker-close{
  width:52px !important;
  height:52px !important;
  flex:0 0 52px !important;
  display:grid !important;
  place-items:center !important;

  border:0 !important;
  border-radius:18px !important;
  background:#e2e8f0 !important;
  color:#0f172a !important;

  font-size:34px !important;
  line-height:1 !important;
  cursor:pointer !important;
}

/* qidiruv input */
html body .city-picker-fullscreen .city-picker-search{
  flex:0 0 auto !important;
  width:min(1180px, 100%) !important;
  height:68px !important;
  margin:0 auto 14px !important;
  padding:0 20px !important;

  display:flex !important;
  align-items:center !important;
  gap:14px !important;

  border:1px solid #dbe3eb !important;
  border-radius:22px !important;
  background:#fff !important;
  color:#64748b !important;
  box-shadow:0 14px 34px rgba(15,23,42,.08) !important;
}

html body .city-picker-fullscreen .city-picker-search input{
  width:100% !important;
  height:100% !important;
  min-width:0 !important;

  padding:0 !important;
  border:0 !important;
  outline:0 !important;
  background:transparent !important;

  color:#0f172a !important;
  font-size:18px !important;
  font-weight:800 !important;
}

/* ruchnoy yozilganini ishlatish tugmasi */
html body .city-picker-fullscreen .city-picker-manual-btn{
  flex:0 0 auto !important;
  width:min(1180px, 100%) !important;
  min-height:56px !important;
  margin:0 auto 22px !important;

  border:1px dashed rgba(0,79,67,.48) !important;
  border-radius:20px !important;
  background:#ecfdf7 !important;
  color:#004f43 !important;

  font-size:16px !important;
  line-height:1.25 !important;
  font-weight:950 !important;
  cursor:pointer !important;
}

/* ro'yxat full page ichida scroll bo'lsin */
html body .city-picker-fullscreen .city-picker-list{
  flex:1 1 auto !important;
  width:min(1180px, 100%) !important;
  max-height:none !important;
  min-height:0 !important;

  margin:0 auto !important;
  padding:4px 4px 30px !important;

  overflow:auto !important;
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  align-content:start !important;
  gap:12px !important;
}

html body .city-picker-fullscreen .city-picker-list button{
  width:100% !important;
  min-height:58px !important;
  padding:15px 18px !important;

  border:1px solid #e2e8f0 !important;
  border-radius:18px !important;
  background:#fff !important;
  color:#1e293b !important;

  text-align:left !important;
  font-size:15px !important;
  line-height:1.25 !important;
  font-weight:850 !important;

  cursor:pointer !important;
  transition:.16s ease !important;
}

html body .city-picker-fullscreen .city-picker-list button:hover,
html body .city-picker-fullscreen .city-picker-list button.is-selected{
  border-color:rgba(0,79,67,.38) !important;
  background:#eaf8f5 !important;
  color:#004f43 !important;
}

html body .city-picker-fullscreen .city-picker-list button[hidden]{
  display:none !important;
}

@media (max-width:900px){
  html body .city-picker-fullscreen .city-picker-list{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width:560px){
  html body .city-picker-fullscreen .city-picker-full-modal > .city-picker-card-v18,
  html body .city-picker-fullscreen .city-picker-full-modal > [data-city-card]{
    padding:18px 14px !important;
  }

  html body .city-picker-fullscreen .city-picker-head{
    margin-bottom:16px !important;
  }

  html body .city-picker-fullscreen .city-picker-head strong{
    font-size:25px !important;
  }

  html body .city-picker-fullscreen .city-picker-head p{
    font-size:13px !important;
  }

  html body .city-picker-fullscreen .city-picker-close{
    width:46px !important;
    height:46px !important;
    flex-basis:46px !important;
    border-radius:15px !important;
  }

  html body .city-picker-fullscreen .city-picker-search{
    height:58px !important;
    border-radius:18px !important;
  }

  html body .city-picker-fullscreen .city-picker-search input{
    font-size:15px !important;
  }

  html body .city-picker-fullscreen .city-picker-manual-btn{
    min-height:52px !important;
    font-size:14px !important;
    border-radius:17px !important;
  }

  html body .city-picker-fullscreen .city-picker-list{
    grid-template-columns:1fr !important;
    gap:9px !important;
    padding-bottom:20px !important;
  }

  html body .city-picker-fullscreen .city-picker-list button{
    min-height:52px !important;
    border-radius:16px !important;
    font-size:14px !important;
  }
}


/* ==========================================================
   City picker body portal fullscreen v21
   ========================================================== */

html body.city-picker-open{
  overflow:hidden !important;
}

html body > .city-picker-menu.is-city-page-modal{
  position:fixed !important;
  inset:0 !important;
  left:0 !important;
  top:0 !important;
  right:0 !important;
  bottom:0 !important;

  width:100vw !important;
  min-width:100vw !important;
  max-width:100vw !important;

  height:100vh !important;
  height:100dvh !important;
  min-height:100vh !important;
  min-height:100dvh !important;
  max-height:100vh !important;
  max-height:100dvh !important;

  margin:0 !important;
  padding:0 !important;

  border:0 !important;
  border-radius:0 !important;
  background:#f8fafc !important;
  box-shadow:none !important;

  transform:none !important;
  overflow:hidden !important;
  z-index:2147483647 !important;
}

html body > .city-picker-menu.is-city-page-modal[hidden]{
  display:none !important;
}

html body > .city-picker-menu.is-city-page-modal > .city-picker-card-v18,
html body > .city-picker-menu.is-city-page-modal > [data-city-card]{
  width:100vw !important;
  min-width:100vw !important;
  max-width:100vw !important;

  height:100vh !important;
  height:100dvh !important;
  min-height:100vh !important;
  min-height:100dvh !important;
  max-height:100vh !important;
  max-height:100dvh !important;

  margin:0 !important;
  padding:28px clamp(20px, 5vw, 72px) !important;

  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;

  display:flex !important;
  flex-direction:column !important;

  background:
    radial-gradient(circle at 18% 0%, rgba(0,79,67,.10), transparent 34%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #eefbf8 100%) !important;

  overflow:hidden !important;
}

html body > .city-picker-menu.is-city-page-modal .city-picker-head,
html body > .city-picker-menu.is-city-page-modal .city-picker-search,
html body > .city-picker-menu.is-city-page-modal .city-picker-manual-btn,
html body > .city-picker-menu.is-city-page-modal .city-picker-list{
  width:min(1180px, 100%) !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

html body > .city-picker-menu.is-city-page-modal .city-picker-head{
  flex:0 0 auto !important;
  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;
  gap:18px !important;
  margin-bottom:22px !important;
  padding-top:6px !important;
}

html body > .city-picker-menu.is-city-page-modal .city-picker-head strong{
  display:block !important;
  color:#0f172a !important;
  font-size:clamp(30px, 4vw, 52px) !important;
  line-height:1.05 !important;
  letter-spacing:-1.2px !important;
  font-weight:950 !important;
}

html body > .city-picker-menu.is-city-page-modal .city-picker-head p{
  display:block !important;
  margin:10px 0 0 !important;
  color:#64748b !important;
  font-size:16px !important;
  line-height:1.45 !important;
  font-weight:650 !important;
}

html body > .city-picker-menu.is-city-page-modal .city-picker-close{
  width:54px !important;
  height:54px !important;
  flex:0 0 54px !important;

  display:grid !important;
  place-items:center !important;

  border:0 !important;
  border-radius:18px !important;
  background:#e2e8f0 !important;
  color:#0f172a !important;

  font-size:34px !important;
  line-height:1 !important;
  cursor:pointer !important;
}

html body > .city-picker-menu.is-city-page-modal .city-picker-search{
  flex:0 0 auto !important;
  height:70px !important;
  margin-bottom:14px !important;
  padding:0 22px !important;

  display:flex !important;
  align-items:center !important;
  gap:14px !important;

  border:1px solid #dbe3eb !important;
  border-radius:24px !important;
  background:#fff !important;
  color:#64748b !important;
  box-shadow:0 14px 34px rgba(15,23,42,.08) !important;
}

html body > .city-picker-menu.is-city-page-modal .city-picker-search input{
  width:100% !important;
  height:100% !important;
  min-width:0 !important;

  padding:0 !important;
  border:0 !important;
  outline:0 !important;
  background:transparent !important;

  color:#0f172a !important;
  font-size:18px !important;
  font-weight:850 !important;
}

html body > .city-picker-menu.is-city-page-modal .city-picker-manual-btn{
  flex:0 0 auto !important;
  min-height:58px !important;
  margin-bottom:22px !important;

  border:1px dashed rgba(0,79,67,.50) !important;
  border-radius:20px !important;
  background:#ecfdf7 !important;
  color:#004f43 !important;

  font-size:16px !important;
  line-height:1.25 !important;
  font-weight:950 !important;
  cursor:pointer !important;
}

html body > .city-picker-menu.is-city-page-modal .city-picker-list{
  flex:1 1 auto !important;
  min-height:0 !important;
  max-height:none !important;

  padding:4px 4px 34px !important;
  overflow:auto !important;

  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  align-content:start !important;
  gap:12px !important;
}

html body > .city-picker-menu.is-city-page-modal .city-picker-list button{
  width:100% !important;
  min-height:58px !important;
  padding:15px 18px !important;

  border:1px solid #e2e8f0 !important;
  border-radius:18px !important;
  background:#fff !important;
  color:#1e293b !important;

  text-align:left !important;
  font-size:15px !important;
  line-height:1.25 !important;
  font-weight:850 !important;

  cursor:pointer !important;
}

html body > .city-picker-menu.is-city-page-modal .city-picker-list button:hover,
html body > .city-picker-menu.is-city-page-modal .city-picker-list button.is-selected{
  border-color:rgba(0,79,67,.38) !important;
  background:#eaf8f5 !important;
  color:#004f43 !important;
}

html body > .city-picker-menu.is-city-page-modal .city-picker-list button[hidden]{
  display:none !important;
}

@media (max-width:900px){
  html body > .city-picker-menu.is-city-page-modal .city-picker-list{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width:560px){
  html body > .city-picker-menu.is-city-page-modal > .city-picker-card-v18,
  html body > .city-picker-menu.is-city-page-modal > [data-city-card]{
    padding:18px 14px !important;
  }

  html body > .city-picker-menu.is-city-page-modal .city-picker-head strong{
    font-size:26px !important;
  }

  html body > .city-picker-menu.is-city-page-modal .city-picker-head p{
    font-size:13px !important;
  }

  html body > .city-picker-menu.is-city-page-modal .city-picker-close{
    width:46px !important;
    height:46px !important;
    flex-basis:46px !important;
    border-radius:15px !important;
  }

  html body > .city-picker-menu.is-city-page-modal .city-picker-search{
    height:58px !important;
    border-radius:18px !important;
  }

  html body > .city-picker-menu.is-city-page-modal .city-picker-search input{
    font-size:15px !important;
  }

  html body > .city-picker-menu.is-city-page-modal .city-picker-manual-btn{
    min-height:52px !important;
    font-size:14px !important;
    border-radius:17px !important;
  }

  html body > .city-picker-menu.is-city-page-modal .city-picker-list{
    grid-template-columns:1fr !important;
    gap:9px !important;
    padding-bottom:20px !important;
  }

  html body > .city-picker-menu.is-city-page-modal .city-picker-list button{
    min-height:52px !important;
    border-radius:16px !important;
    font-size:14px !important;
  }
}

/* ==========================================================
   Jobs page filters + vacancy cards redesign v1
   ========================================================== */

.jobs-page-v2{
  background:#f4f5f7 !important;
  padding:128px 0 84px !important;
}

.jobs-container-v2{
  width:min(1500px, calc(100% - 72px)) !important;
}

.jobs-search-v2{
  max-width:1500px !important;
  grid-template-columns:minmax(0, 1fr) 132px !important;
  gap:14px !important;
  margin-bottom:22px !important;
}

.jobs-search-input-v2{
  height:64px !important;
  border:1px solid #e2e8f0 !important;
  border-radius:22px !important;
  background:#fff !important;
  box-shadow:0 10px 32px rgba(15,23,42,.045) !important;
}

.jobs-search-input-v2 svg{
  width:22px !important;
  height:22px !important;
  color:#94a3b8 !important;
  flex:0 0 auto !important;
}

.jobs-search-input-v2 input{
  color:#0f172a !important;
  font-size:16px !important;
  font-weight:650 !important;
}

.jobs-search-v2 button{
  border-radius:22px !important;
  font-size:16px !important;
  box-shadow:0 12px 26px rgba(0,79,67,.14) !important;
}

.jobs-result-head-v2{
  max-width:1500px;
  margin:0 auto 24px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
}

.jobs-result-head-v2 p{
  margin:0 0 6px;
  color:#64748b;
  font-size:14px;
  font-weight:800;
}

.jobs-result-head-v2 h1{
  margin:0;
  color:#0f172a;
  font-size:clamp(28px, 3vw, 42px);
  line-height:1.08;
  letter-spacing:-.9px;
  font-weight:950;
}

.jobs-result-head-v2 .vac-found{
  margin:0;
  padding:10px 16px;
  border:1px solid #e2e8f0;
  border-radius:999px;
  background:#fff;
  color:#64748b;
  font-size:14px;
  font-weight:850;
  white-space:nowrap;
}

.jobs-layout-v2{
  max-width:1500px !important;
  grid-template-columns:360px minmax(0, 1fr) !important;
  align-items:start !important;
  gap:26px !important;
}

.filters-card-v2{
  position:sticky !important;
  top:92px !important;
  padding:24px !important;
  border:1px solid #e5e7eb !important;
  border-radius:28px !important;
  background:#fff !important;
  box-shadow:0 18px 60px rgba(15,23,42,.06) !important;
}

.filters-title-v2{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:0 0 18px;
  border-bottom:1px solid #eef2f6;
}

.filters-title-v2 h3{
  margin:0 !important;
  color:#172033;
  font-size:22px;
  line-height:1.1;
  font-weight:950;
}

.filters-title-v2 button,
.filter-group-v2 summary button{
  border:0;
  background:transparent;
  color:#3b82f6;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}

.filter-group-v2{
  border:0 !important;
  border-bottom:1px solid #eef2f6 !important;
  padding:0 !important;
  display:block !important;
}

.filter-group-v2:last-child{
  border-bottom:0 !important;
}

.filter-group-v2 summary{
  min-height:62px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  list-style:none;
  cursor:pointer;
  color:#6b7280;
}

.filter-group-v2 summary::-webkit-details-marker{
  display:none;
}

.filter-group-v2 summary span{
  color:#667085;
  font-size:17px;
  line-height:1.2;
  font-weight:900;
}

.filter-group-v2 summary::after{
  content:"";
  width:10px;
  height:10px;
  border-right:2px solid #004f43;
  border-bottom:2px solid #004f43;
  transform:rotate(225deg);
  transition:.18s ease;
  margin-left:auto;
}

.filter-group-v2:not([open]) summary::after{
  transform:rotate(45deg);
}

.filter-group-v2 summary button{
  margin-left:auto;
}

.filter-options-v2{
  display:grid;
  gap:14px;
  padding:0 0 18px;
}

.filter-option-v2{
  display:flex !important;
  align-items:center;
  gap:10px;
  color:#596273 !important;
  font-size:16px;
  line-height:1.25;
  font-weight:600;
  cursor:pointer;
}

.filter-option-v2 input{
  appearance:none;
  width:18px;
  height:18px;
  flex:0 0 18px;
  border:2px solid #98a2b3;
  border-radius:50%;
  background:#fff;
  display:grid;
  place-items:center;
}

.filter-option-v2 input[type="checkbox"]{
  border-radius:6px;
}

.filter-option-v2 input:checked{
  border-color:#006b5e;
  background:
    radial-gradient(circle at 50% 50%, #006b5e 0 40%, transparent 43%);
}

.filter-option-v2 input[type="checkbox"]:checked{
  background:#006b5e;
  box-shadow:inset 0 0 0 3px #fff;
}

.filter-more-v2{
  margin-top:2px;
}

.filter-more-v2 summary{
  min-height:auto;
  color:#3b82f6;
  font-size:16px;
  font-weight:750;
  list-style:none;
  cursor:pointer;
}

.filter-more-v2 summary::-webkit-details-marker{
  display:none;
}

.filter-more-v2 summary::after{
  display:none;
}

.filter-more-v2 > div{
  display:grid;
  gap:14px;
  padding:14px 0 0;
}

.filter-select-link-v2{
  width:100% !important;
  height:46px !important;
  margin:0 0 18px !important;
  padding:0 !important;
  border:0 !important;
  outline:0 !important;
  background:transparent !important;
  color:#3b82f6 !important;
  font-size:16px !important;
  font-weight:750 !important;
  cursor:pointer !important;
}

.salary-filter-v2{
  display:grid;
  gap:14px;
  padding-bottom:24px;
}

.salary-currency-v2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.salary-currency-v2 label{
  display:block;
  cursor:pointer;
}

.salary-currency-v2 input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.salary-currency-v2 span{
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid #e5e7eb;
  border-radius:999px;
  background:#fff;
  color:#64748b;
  font-weight:900;
}

.salary-currency-v2 input:checked + span{
  border-color:#006b5e;
  background:#eaf8f5;
  color:#004f43;
}

.salary-inputs-v2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.salary-inputs-v2 label{
  height:62px;
  display:grid;
  align-content:center;
  gap:2px;
  padding:0 15px;
  border:1px solid #e1e5ea;
  border-radius:18px;
  background:#fff;
}

.salary-inputs-v2 small{
  color:#98a2b3;
  font-size:12px;
  font-weight:700;
}

.salary-inputs-v2 input{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  color:#475467;
  font-size:16px;
  font-weight:800;
}

.salary-presets-v2{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.salary-presets-v2 button{
  min-height:36px;
  padding:0 17px;
  border:1px solid #edf0f3;
  border-radius:999px;
  background:#fff;
  color:#475467;
  font-size:15px;
  font-weight:750;
  cursor:pointer;
}

.jobs-list-v2{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:18px !important;
}

.vacancy-job-card-v2{
  position:relative;
  min-height:228px;
  padding:26px;
  border:1px solid #e1e5ea;
  border-radius:26px;
  background:#fff;
  box-shadow:0 12px 34px rgba(15,23,42,.045);
  transition:.18s ease;
  display:flex;
  flex-direction:column;
}

.vacancy-job-card-v2:hover{
  transform:translateY(-2px);
  border-color:#cbd5e1;
  box-shadow:0 20px 48px rgba(15,23,42,.08);
}

.vacancy-card-main-v2{
  display:grid;
  grid-template-columns:48px minmax(0, 1fr);
  gap:16px;
  color:inherit;
}

.vacancy-card-main-v2 h2{
  margin:0 0 12px !important;
  color:#0f2137;
  font-size:21px !important;
  line-height:1.32;
  letter-spacing:-.25px;
  font-weight:950;
}

.vacancy-card-main-v2 h2:hover{
  color:#004f43;
}

.vacancy-card-main-v2 .vac-salary{
  margin:0 0 8px !important;
  color:#004f43;
  font-size:19px !important;
  line-height:1.2;
  font-weight:900;
}

.vac-company-v2{
  margin:0;
  color:#64748b;
  font-size:15px;
  font-weight:700;
}

.vac-logo-v2{
  position:relative !important;
  right:auto !important;
  top:auto !important;
  width:48px !important;
  height:48px !important;
  flex:0 0 48px !important;
  display:block !important;
  background:#004f43 !important;
  border-radius:16px !important;
}

.vac-logo-v2 i{
  left:22px !important;
  top:10px !important;
  height:15px !important;
  transform-origin:50% 15px !important;
}

.vac-tags-v2{
  display:flex !important;
  flex-wrap:wrap;
  gap:9px !important;
  margin:20px 0 0 !important;
}

.vac-tags-v2 span{
  background:#f1f5f9 !important;
  color:#64748b !important;
  border-radius:999px !important;
  padding:7px 12px !important;
  font-size:13px !important;
  font-weight:850 !important;
}

.vac-meta-v2{
  margin:16px 0 0 !important;
  color:#94a3b8 !important;
  font-size:14px;
  font-weight:700;
}

.vac-response-v2{
  margin-top:auto;
  align-self:flex-start;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border-radius:14px;
  background:#004f43;
  color:#fff;
  font-size:14px;
  font-weight:900;
}

.vacancy-empty-v2{
  grid-column:1/-1;
  min-height:180px;
  justify-content:center;
}

.vacancy-empty-v2 h2{
  margin:0 0 8px;
}

.vacancy-empty-v2 p{
  margin:0;
  color:#64748b;
}

.jobs-page-v2.is-loading .jobs-list-v2{
  opacity:.45;
  pointer-events:none;
}

@media (max-width:1180px){
  .jobs-layout-v2{
    grid-template-columns:1fr !important;
  }

  .filters-card-v2{
    position:relative !important;
    top:auto !important;
  }

  .jobs-list-v2{
    grid-template-columns:1fr !important;
  }
}

@media (max-width:760px){
  .jobs-page-v2{
    padding:96px 0 56px !important;
  }

  .jobs-container-v2{
    width:calc(100% - 24px) !important;
  }

  .jobs-search-v2{
    grid-template-columns:1fr !important;
  }

  .jobs-search-v2 button{
    height:56px !important;
  }

  .jobs-result-head-v2{
    display:block;
  }

  .jobs-result-head-v2 .vac-found{
    display:inline-flex;
    margin-top:14px;
  }

  .filters-card-v2{
    padding:20px 18px !important;
    border-radius:24px !important;
  }

  .salary-inputs-v2{
    grid-template-columns:1fr;
  }

  .vacancy-job-card-v2{
    min-height:auto;
    padding:22px;
    border-radius:22px;
  }

  .vacancy-card-main-v2{
    grid-template-columns:42px minmax(0, 1fr);
    gap:13px;
  }

  .vac-logo-v2{
    width:42px !important;
    height:42px !important;
    border-radius:14px !important;
  }

  .vacancy-card-main-v2 h2{
    font-size:18px !important;
  }
}


/* ==========================================================
   Jobs page vacancy cards like homepage cards v3
   ========================================================== */

.jobs-page-v2 .jobs-list-v2{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:26px !important;
  align-items:stretch !important;
}

.jobs-page-v2 .jobs-vacancy-card-v3{
  position:relative !important;
  min-height:318px !important;
  border:1px solid rgba(226,232,240,.92) !important;
  border-radius:30px !important;
  background:#fff !important;
  overflow:hidden !important;
  box-shadow:0 20px 55px rgba(15,23,42,.08) !important;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}

.jobs-page-v2 .jobs-vacancy-card-v3:hover{
  transform:translateY(-3px) !important;
  border-color:rgba(0,79,67,.18) !important;
  box-shadow:0 30px 74px rgba(15,23,42,.13) !important;
}

.jobs-page-v2 .jobs-vacancy-card-link-v3{
  position:relative !important;
  z-index:2 !important;
  width:100% !important;
  min-height:318px !important;
  height:100% !important;
  padding:34px 32px 28px !important;
  display:flex !important;
  flex-direction:column !important;
  color:#06152e !important;
}

.jobs-page-v2 .jobs-card-orb-v3{
  position:absolute !important;
  right:-42px !important;
  top:-54px !important;
  width:156px !important;
  height:156px !important;
  border-radius:50% !important;
  z-index:-1 !important;
  opacity:.86 !important;
  filter:blur(.2px) !important;
}

.jobs-page-v2 .jobs-card-orb-v3::after{
  content:"" !important;
  position:absolute !important;
  right:28px !important;
  top:16px !important;
  width:74px !important;
  height:74px !important;
  border-radius:50% !important;
  background:rgba(255,255,255,.45) !important;
}

.jobs-page-v2 .jobs-vacancy-card-v3-1 .jobs-card-orb-v3{
  background:radial-gradient(circle, rgba(0,79,67,.18) 0%, rgba(0,79,67,.12) 58%, rgba(0,79,67,0) 70%) !important;
}

.jobs-page-v2 .jobs-vacancy-card-v3-2 .jobs-card-orb-v3{
  background:radial-gradient(circle, rgba(83,132,255,.22) 0%, rgba(83,132,255,.14) 58%, rgba(83,132,255,0) 70%) !important;
}

.jobs-page-v2 .jobs-vacancy-card-v3-3 .jobs-card-orb-v3{
  background:radial-gradient(circle, rgba(157,92,255,.20) 0%, rgba(157,92,255,.13) 58%, rgba(157,92,255,0) 70%) !important;
}

.jobs-page-v2 .jobs-card-icon-v3{
  width:48px !important;
  height:48px !important;
  flex:0 0 48px !important;
  display:grid !important;
  place-items:center !important;
  margin-bottom:34px !important;
  border-radius:14px !important;
  background:#edf5f3 !important;
  border:1px solid rgba(0,79,67,.13) !important;
  color:#004f43 !important;
  font-size:19px !important;
  box-shadow:0 8px 18px rgba(15,23,42,.05) !important;
}

.jobs-page-v2 .jobs-vacancy-card-v3 h2{
  max-width:88% !important;
  min-height:62px !important;
  margin:0 0 24px !important;
  color:#001536 !important;
  font-size:24px !important;
  line-height:1.28 !important;
  letter-spacing:-.45px !important;
  font-weight:950 !important;
}

.jobs-page-v2 .jobs-card-salary-v3{
  width:max-content !important;
  max-width:100% !important;
  min-height:48px !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:12px !important;
  margin:0 0 18px !important;
  padding:8px 17px 8px 12px !important;
  border-radius:14px !important;
  background:#eaf4f1 !important;
  color:#004f43 !important;
  font-size:20px !important;
  line-height:1.15 !important;
  font-weight:950 !important;
}

.jobs-page-v2 .jobs-card-salary-v3 span{
  width:30px !important;
  height:30px !important;
  flex:0 0 30px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:9px !important;
  background:rgba(0,79,67,.10) !important;
  color:#004f43 !important;
  font-size:14px !important;
}

.jobs-page-v2 .jobs-card-salary-v3 strong{
  display:block !important;
  min-width:0 !important;
  color:#004f43 !important;
  font-size:20px !important;
  line-height:1.15 !important;
  font-weight:950 !important;
  white-space:nowrap !important;
}

.jobs-page-v2 .jobs-card-chips-v3{
  display:flex !important;
  align-items:center !important;
  flex-wrap:wrap !important;
  gap:10px !important;
  margin-top:auto !important;
  padding-top:4px !important;
}

.jobs-page-v2 .jobs-card-chips-v3 span{
  min-height:34px !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  padding:0 12px !important;
  border:1px solid #e5e7eb !important;
  border-radius:999px !important;
  background:#f8fafc !important;
  color:#53657d !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:850 !important;
}

.jobs-page-v2 .jobs-card-chips-v3 i{
  color:#004f43 !important;
  font-size:12px !important;
}

.jobs-page-v2 .jobs-card-bottom-v3{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:18px !important;
  margin-top:22px !important;
  color:#001536 !important;
}

.jobs-page-v2 .jobs-card-bottom-v3 b{
  font-size:15px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.jobs-page-v2 .jobs-card-bottom-v3 > i{
  color:#001536 !important;
  font-size:14px !important;
  transition:transform .16s ease !important;
}

.jobs-page-v2 .jobs-vacancy-card-v3:hover .jobs-card-bottom-v3 > i{
  transform:translateX(4px) !important;
}

.jobs-page-v2 .vacancy-empty-v2{
  grid-column:1/-1 !important;
  min-height:180px !important;
  padding:30px !important;
  border-radius:26px !important;
  background:#fff !important;
  border:1px solid #e5e7eb !important;
}

.jobs-page-v2.is-loading .jobs-list-v2{
  opacity:.45 !important;
  pointer-events:none !important;
}

@media (max-width:1420px){
  .jobs-page-v2 .jobs-list-v2{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width:1180px){
  .jobs-page-v2 .jobs-list-v2{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width:820px){
  .jobs-page-v2 .jobs-list-v2{
    grid-template-columns:1fr !important;
  }

  .jobs-page-v2 .jobs-vacancy-card-v3,
  .jobs-page-v2 .jobs-vacancy-card-link-v3{
    min-height:286px !important;
  }

  .jobs-page-v2 .jobs-vacancy-card-link-v3{
    padding:26px 22px 22px !important;
  }

  .jobs-page-v2 .jobs-card-icon-v3{
    margin-bottom:24px !important;
  }

  .jobs-page-v2 .jobs-vacancy-card-v3 h2{
    max-width:100% !important;
    min-height:auto !important;
    font-size:21px !important;
  }

  .jobs-page-v2 .jobs-card-salary-v3 strong{
    font-size:17px !important;
    white-space:normal !important;
  }
}


/* ==========================================================
   Jobs mobile filters bottom sheet v4
   ========================================================== */

.jobs-mobile-filter-toggle-v4,
.jobs-mobile-filter-backdrop-v4,
.jobs-mobile-filter-close-v4,
.jobs-mobile-filter-actions-v4{
  display:none;
}

@media (max-width:760px){

  body.route-jobs{
    background:#f4f4f4 !important;
  }

  body.jobs-mobile-filter-open-v4{
    overflow:hidden !important;
  }

  .route-jobs .site-header-modern{
    height:72px !important;
    background:#fff !important;
    border-bottom:1px solid #eef0f3 !important;
    box-shadow:none !important;
  }

  .route-jobs .header-row{
    height:72px !important;
  }

  .route-jobs .jobs-page-v2{
    padding:94px 0 42px !important;
    background:#f4f4f4 !important;
  }

  .route-jobs .jobs-container-v2{
    width:100% !important;
    padding:0 20px !important;
  }

  .route-jobs .jobs-search-v2{
    width:100% !important;
    display:block !important;
    margin:0 0 12px !important;
  }

  .route-jobs .jobs-search-input-v2{
    width:100% !important;
    min-height:42px !important;
    height:42px !important;
    border:1px solid #d9dde4 !important;
    border-radius:8px !important;
    background:#fff !important;
    box-shadow:none !important;
  }

  .route-jobs .jobs-search-input-v2 svg{
    width:18px !important;
    height:18px !important;
    color:#64748b !important;
  }

  .route-jobs .jobs-search-input-v2 input{
    height:42px !important;
    font-size:15px !important;
    font-weight:500 !important;
    color:#667085 !important;
  }

  .route-jobs .jobs-search-v2 > button{
    display:none !important;
  }

  .route-jobs .jobs-result-head-v2{
    display:block !important;
    margin:0 0 18px !important;
  }

  .route-jobs .jobs-result-head-v2 > div{
    display:none !important;
  }

  .route-jobs .jobs-result-head-v2 .vac-found{
    display:block !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    color:#7b8494 !important;
    font-size:15px !important;
    line-height:1.3 !important;
    font-weight:500 !important;
  }

  .route-jobs .jobs-layout-v2{
    display:block !important;
    max-width:none !important;
  }

  .route-jobs .jobs-list-v2{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:14px !important;
  }

  .route-jobs .jobs-vacancy-card-v3{
    min-height:auto !important;
    border-radius:22px !important;
    border:1px solid #e4e6ea !important;
    box-shadow:none !important;
    background:#fff !important;
  }

  .route-jobs .jobs-vacancy-card-link-v3{
    min-height:auto !important;
    padding:20px 16px 16px !important;
  }

  .route-jobs .jobs-card-orb-v3{
    display:none !important;
  }

  .route-jobs .jobs-card-icon-v3{
    position:absolute !important;
    right:16px !important;
    top:18px !important;
    width:46px !important;
    height:46px !important;
    margin:0 !important;
    border-radius:50% !important;
    background:#006b5e !important;
    color:#fff !important;
    border:0 !important;
    box-shadow:none !important;
  }

  .route-jobs .jobs-vacancy-card-v3 h2{
    max-width:calc(100% - 64px) !important;
    min-height:auto !important;
    margin:0 0 14px !important;
    color:#0f172a !important;
    font-size:20px !important;
    line-height:1.35 !important;
    letter-spacing:-.25px !important;
    font-weight:900 !important;
  }

  .route-jobs .jobs-card-salary-v3{
    min-height:26px !important;
    margin:0 0 12px !important;
    padding:0 !important;
    background:transparent !important;
    border-radius:0 !important;
    gap:8px !important;
    color:#004f43 !important;
    font-size:16px !important;
  }

  .route-jobs .jobs-card-salary-v3 span{
    width:18px !important;
    height:18px !important;
    border-radius:4px !important;
    background:transparent !important;
    border:1.5px solid #004f43 !important;
    font-size:10px !important;
  }

  .route-jobs .jobs-card-salary-v3 strong{
    color:#004f43 !important;
    font-size:16px !important;
    font-weight:800 !important;
    white-space:normal !important;
  }

  .route-jobs .jobs-card-chips-v3{
    margin:0 !important;
    padding:0 !important;
    gap:8px !important;
  }

  .route-jobs .jobs-card-chips-v3 span{
    min-height:28px !important;
    padding:0 12px !important;
    border:0 !important;
    border-radius:9px !important;
    background:#f1f2f4 !important;
    color:#6b7280 !important;
    font-size:14px !important;
    font-weight:500 !important;
  }

  .route-jobs .jobs-card-bottom-v3{
    display:none !important;
  }

  .jobs-mobile-filter-toggle-v4{
    position:fixed !important;
    right:16px !important;
    bottom:74px !important;
    z-index:900 !important;
    min-width:136px !important;
    height:50px !important;
    padding:0 18px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:10px !important;
    border:0 !important;
    border-radius:999px !important;
    background:#004f43 !important;
    color:#fff !important;
    box-shadow:0 12px 26px rgba(0,79,67,.28) !important;
    font-size:16px !important;
    font-weight:850 !important;
    cursor:pointer !important;
  }

  .jobs-mobile-filter-toggle-v4 i{
    font-size:16px !important;
  }

  .jobs-mobile-filter-backdrop-v4{
    position:fixed !important;
    inset:0 !important;
    z-index:1200 !important;
    background:rgba(0,0,0,.50) !important;
  }

  .jobs-mobile-filter-backdrop-v4[hidden]{
    display:none !important;
  }

  body.route-jobs.jobs-mobile-filter-open-v4 .jobs-mobile-filter-backdrop-v4,
body.jobs-mobile-filter-open-v4 .jobs-mobile-filter-backdrop-v4{
  display:block !important;
}

  .route-jobs .filters-card-v2{
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    top:auto !important;
    z-index:1210 !important;

    width:100% !important;
    height:calc(100dvh - 106px) !important;
    max-height:calc(100dvh - 106px) !important;

    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    border-radius:22px 22px 0 0 !important;
    background:#fff !important;
    box-shadow:0 -18px 42px rgba(15,23,42,.18) !important;

    transform:translateY(110%) !important;
    transition:transform .24s ease !important;
    overflow:hidden !important;
  }

  body.route-jobs.jobs-mobile-filter-open-v4 .filters-card-v2,
body.jobs-mobile-filter-open-v4 .jobs-page-v2 .filters-card-v2{
  transform:translateY(0) !important;
}

  .jobs-mobile-filter-close-v4{
    position:fixed !important;
    top:24px !important;
    right:22px !important;
    z-index:1250 !important;

    width:46px !important;
    height:46px !important;
    display:none !important;
    place-items:center !important;

    border:0 !important;
    border-radius:14px !important;
    background:rgba(0,0,0,.12) !important;
    color:#fff !important;

    font-size:42px !important;
    line-height:1 !important;
    font-weight:300 !important;

    cursor:pointer !important;
    -webkit-tap-highlight-color:transparent !important;
  }

  body.route-jobs.jobs-mobile-filter-open-v4 .jobs-mobile-filter-close-v4,
body.jobs-mobile-filter-open-v4 .jobs-mobile-filter-close-v4{
  display:grid !important;
}

  .route-jobs .filters-card-v2 form{
    height:100% !important;
    overflow-y:auto !important;
    padding:24px 24px 94px !important;
    -webkit-overflow-scrolling:touch !important;
  }

  .route-jobs .filters-title-v2{
    min-height:40px !important;
    padding:0 0 18px !important;
    border-bottom:1px solid #eef0f3 !important;
  }

  .route-jobs .filters-title-v2 h3{
    color:#172033 !important;
    font-size:20px !important;
    line-height:1.2 !important;
    font-weight:900 !important;
  }

  .route-jobs .filters-title-v2 > button{
    display:none !important;
  }

  .route-jobs .filter-group-v2{
    border-bottom:1px solid #eef0f3 !important;
  }

  .route-jobs .filter-group-v2 summary{
    min-height:58px !important;
  }

  .route-jobs .filter-group-v2 summary span{
    color:#667085 !important;
    font-size:17px !important;
    font-weight:850 !important;
  }

  .route-jobs .filter-group-v2 summary button{
    color:#3b82f6 !important;
    font-size:16px !important;
    font-weight:500 !important;
  }

  .route-jobs .filter-options-v2{
    gap:13px !important;
    padding-bottom:18px !important;
  }

  .route-jobs .filter-option-v2{
    gap:10px !important;
    color:#4b5563 !important;
    font-size:16px !important;
    font-weight:500 !important;
  }

  .route-jobs .filter-option-v2 input{
    width:17px !important;
    height:17px !important;
    flex-basis:17px !important;
    border:2px solid #98a2b3 !important;
  }

  .route-jobs .filter-option-v2 input:checked{
    border-color:#006b5e !important;
    background:
      radial-gradient(circle at 50% 50%, #006b5e 0 42%, transparent 45%) !important;
  }

  .route-jobs .filter-more-v2 summary,
  .route-jobs .specialization-select-v2{
    color:#3b82f6 !important;
    font-size:16px !important;
    font-weight:500 !important;
  }

  .route-jobs .jobs-mobile-filter-actions-v4{
    position:fixed !important;
    left:0 !important;
    right:0 !important;
    bottom:0 !important;
    z-index:1230 !important;

    display:grid !important;
    grid-template-columns:1fr 1fr !important;
    gap:12px !important;

    padding:16px 16px 18px !important;
    border-top:1px solid #e5e7eb !important;
    background:#fff !important;
  }

  .jobs-mobile-filter-reset-v4,
  .jobs-mobile-filter-apply-v4{
    height:48px !important;
    border-radius:8px !important;
    font-size:15px !important;
    line-height:1 !important;
    font-weight:800 !important;
    cursor:pointer !important;
  }

  .jobs-mobile-filter-reset-v4{
    border:1px solid #d9dde4 !important;
    background:#fff !important;
    color:#667085 !important;
  }

  .jobs-mobile-filter-apply-v4{
    border:0 !important;
    background:linear-gradient(135deg, #70d8d5, #22b7ab) !important;
    color:#fff !important;
  }
}

@media (min-width:761px){
  .jobs-mobile-filter-backdrop-v4,
  .jobs-mobile-filter-close-v4,
  .jobs-mobile-filter-actions-v4,
  .jobs-mobile-filter-toggle-v4{
    display:none !important;
  }
}


/* ==========================================================
   Vacancy detail page redesign v4
   ========================================================== */

.vacancy-detail-page-v4{
  min-height:100vh;
  padding:118px 0 76px;
  background:#f3f3f3;
  color:#111827;
}

.vacancy-detail-container-v4{
  width:min(1600px, calc(100% - 160px));
}

.vacancy-back-btn-v5{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:52px;
  margin:0 0 30px;
  padding:0 22px 0 16px;
  border:1px solid rgba(0,79,67,.16);
  border-radius:18px;
  background:#ffffff;
  color:#004f43;
  font-size:15px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.2px;
  text-decoration:none !important;
  box-shadow:0 12px 28px rgba(15,23,42,.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.vacancy-back-btn-v5__icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#effaf7;
  color:#004f43;
  transition:background .18s ease, color .18s ease, transform .18s ease;
}

.vacancy-back-btn-v5:hover{
  transform:translateY(-1px);
  border-color:rgba(0,79,67,.28);
  background:#004f43;
  color:#ffffff;
  box-shadow:0 16px 36px rgba(0,79,67,.16);
}

.vacancy-back-btn-v5:hover .vacancy-back-btn-v5__icon{
  background:rgba(255,255,255,.16);
  color:#ffffff;
  transform:translateX(-2px);
}

.vacancy-back-btn-v5:active{
  transform:translateY(0);
  box-shadow:0 8px 18px rgba(0,79,67,.12);
}

.vacancy-detail-grid-v4{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 440px;
  gap:34px;
  align-items:start;
}

.vacancy-detail-main-v4{
  min-width:0;
}

.vacancy-detail-card-v4{
  position:relative;
  min-height:520px;
  padding:52px 52px 48px;
  border:0;
  border-radius:38px;
  background:#fff;
  box-shadow:none;
  overflow:hidden;
}

.vac-detail-logo-v4{
  position:absolute;
  top:50px;
  right:48px;
  width:54px;
  height:54px;
  display:block;
  border-radius:50%;
  background:#006b5e;
}

.vac-detail-logo-v4 i{
  position:absolute;
  left:24px;
  top:9px;
  width:6px;
  height:16px;
  border-radius:10px 10px 3px 3px;
  background:#fff;
  transform-origin:50% 18px;
}

.vac-detail-logo-v4 i:nth-child(1){transform:rotate(0deg)}
.vac-detail-logo-v4 i:nth-child(2){transform:rotate(45deg)}
.vac-detail-logo-v4 i:nth-child(3){transform:rotate(90deg)}
.vac-detail-logo-v4 i:nth-child(4){transform:rotate(135deg)}
.vac-detail-logo-v4 i:nth-child(5){transform:rotate(180deg)}
.vac-detail-logo-v4 i:nth-child(6){transform:rotate(225deg)}
.vac-detail-logo-v4 i:nth-child(7){transform:rotate(270deg)}
.vac-detail-logo-v4 i:nth-child(8){transform:rotate(315deg)}

.vacancy-detail-card-v4 h1{
  max-width:calc(100% - 88px);
  margin:0 0 26px;
  color:#06152e;
  font-size:32px;
  line-height:1.22;
  letter-spacing:-.55px;
  font-weight:900;
}

.vacancy-info-list-v4{
  display:grid;
  gap:18px;
  margin:0 0 30px;
}

.vacancy-info-list-v4 p{
  margin:0;
  color:#40516a;
  font-size:18px;
  line-height:1.45;
  font-weight:500;
}

.vacancy-info-list-v4 b{
  color:#06152e;
  font-weight:900;
}

.vacancy-info-list-v4 span{
  color:#40516a;
}

.vacancy-text-section-v4{
  margin-top:30px;
}

.vacancy-text-section-v4 h3{
  margin:0 0 18px;
  color:#06152e;
  font-size:19px;
  line-height:1.25;
  font-weight:900;
}

.vacancy-text-v4{
  color:#40516a;
  font-size:18px;
  line-height:1.75;
  font-weight:500;
}

.vacancy-text-v4 p,
.vacancy-text-v4 div{
  margin:0 0 14px;
}

.vacancy-text-v4 p:last-child,
.vacancy-text-v4 div:last-child{
  margin-bottom:0;
}

.vacancy-text-v4 ul,
.vacancy-text-v4 ol{
  margin:12px 0 0;
  padding-left:24px;
}

.vacancy-text-v4 ul:first-child,
.vacancy-text-v4 ol:first-child{
  margin-top:0;
}

.vacancy-text-v4 li{
  margin:8px 0;
}

.vacancy-text-v4 b,
.vacancy-text-v4 strong{
  color:#172438;
  font-weight:900;
}

.vacancy-published-v4{
  margin:38px 0 0;
  display:flex;
  align-items:center;
  gap:10px;
  color:#7b8494;
  font-size:16px;
  font-weight:600;
}

.detail-apply-btn-v4{
  width:100%;
  height:62px;
  margin-top:30px;
  border:0;
  border-radius:16px;
  background:#004f43;
  color:#fff;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}

.detail-apply-btn-v4:hover{
  background:#003f36;
  transform:translateY(-1px);
}

.vacancy-side-v4{
  position:sticky;
  top:96px;
}

.apply-card-v4{
  padding:34px 34px 32px;
  border:0;
  border-radius:34px;
  background:#fff;
  box-shadow:none;
}

.apply-card-v4 h2{
  margin:0 0 24px;
  color:#06152e;
  font-size:28px;
  line-height:1.15;
  letter-spacing:-.45px;
  font-weight:900;
}

.apply-card-v4 button{
  width:100%;
  height:60px;
  border:0;
  border-radius:16px;
  background:#004f43;
  color:#fff;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
}

.apply-stats-v4{
  display:grid;
  gap:22px;
  margin-top:28px;
}

.apply-stats-v4 p{
  margin:0;
  display:grid;
  grid-template-columns:minmax(0, 1fr) 80px;
  align-items:center;
  gap:16px;
  color:#667085;
  font-size:17px;
  font-weight:500;
}

.apply-stats-v4 b{
  color:#06152e;
  font-weight:800;
}

.related-vacancies-v4{
  margin-top:42px;
}

.related-vacancies-v4 h2{
  margin:0 0 18px;
  color:#06152e;
  font-size:28px;
  line-height:1.2;
  letter-spacing:-.45px;
  font-weight:900;
}

.related-vacancies-list-v4{
  display:grid;
  gap:14px;
}

.related-vacancy-card-v4{
  position:relative;
  min-height:144px;
  display:block;
  padding:30px 82px 28px 30px;
  border:1px solid #e2e5ea;
  border-radius:22px;
  background:#fff;
  color:#06152e;
  transition:.18s ease;
}

.related-vacancy-card-v4:hover{
  transform:translateY(-1px);
  border-color:rgba(0,79,67,.25);
  box-shadow:0 18px 42px rgba(15,23,42,.06);
}

.related-vacancy-card-v4 h3{
  margin:0 0 18px;
  color:#172033;
  font-size:24px;
  line-height:1.25;
  font-weight:900;
}

.related-tags-v4{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:18px;
}

.related-tags-v4 span{
  min-height:28px;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:0 12px;
  border-radius:9px;
  background:#f1f2f4;
  color:#6b7280;
  font-size:14px;
  font-weight:700;
}

.related-tags-v4 .is-salary{
  background:transparent;
  color:#004f43;
  padding-left:0;
  font-size:17px;
  font-weight:900;
}

.related-vacancy-card-v4 p{
  margin:0;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:22px;
  color:#9aa3b2;
  font-size:15px;
  font-weight:600;
}

.related-vacancy-card-v4 p span{
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.related-logo-v4{
  position:absolute;
  top:32px;
  right:32px;
  width:42px;
  height:42px;
  display:block;
  border-radius:50%;
  background:#006b5e;
}

.related-logo-v4 i{
  position:absolute;
  left:18px;
  top:7px;
  width:5px;
  height:13px;
  border-radius:9px 9px 3px 3px;
  background:#fff;
  transform-origin:50% 15px;
}

.related-logo-v4 i:nth-child(1){transform:rotate(0deg)}
.related-logo-v4 i:nth-child(2){transform:rotate(45deg)}
.related-logo-v4 i:nth-child(3){transform:rotate(90deg)}
.related-logo-v4 i:nth-child(4){transform:rotate(135deg)}
.related-logo-v4 i:nth-child(5){transform:rotate(180deg)}
.related-logo-v4 i:nth-child(6){transform:rotate(225deg)}
.related-logo-v4 i:nth-child(7){transform:rotate(270deg)}
.related-logo-v4 i:nth-child(8){transform:rotate(315deg)}

/* Apply modal */
body.vacancy-apply-modal-open-v4{
  overflow:hidden;
}

.vacancy-apply-modal-v4{
  position:fixed;
  inset:0;
  z-index:2500;
  display:grid;
  place-items:center;
  padding:20px;
  background:rgba(0,0,0,.52);
}

.vacancy-apply-modal-v4[hidden]{
  display:none !important;
}

.vacancy-apply-modal-card-v4{
  position:relative;
  width:min(560px, 100%);
  padding:34px 34px 28px;
  border-radius:28px;
  background:#fff;
  box-shadow:0 28px 90px rgba(15,23,42,.28);
}

.vacancy-apply-modal-close-v4{
  position:absolute;
  top:16px;
  right:18px;
  width:34px;
  height:34px;
  border:0;
  background:transparent;
  color:#98a2b3;
  font-size:30px;
  line-height:1;
  cursor:pointer;
}

.vacancy-apply-modal-card-v4 h2{
  margin:0 0 10px;
  color:#2f3441;
  font-size:22px;
  line-height:1.25;
  font-weight:900;
}

.vacancy-apply-modal-card-v4 > p{
  margin:0 0 24px;
  color:#667085;
  font-size:16px;
  line-height:1.35;
  font-weight:500;
}

.vacancy-resume-list-v4{
  display:grid;
  gap:12px;
  margin-bottom:24px;
}

.vacancy-resume-option-v4{
  display:grid;
  grid-template-columns:22px minmax(0, 1fr) auto;
  gap:12px;
  align-items:center;
  cursor:pointer;
}

.vacancy-resume-option-v4 input{
  width:16px;
  height:16px;
  accent-color:#006b5e;
}

.vacancy-resume-option-v4 span{
  display:grid;
  gap:4px;
}

.vacancy-resume-option-v4 b{
  color:#394150;
  font-size:16px;
  line-height:1.25;
  font-weight:500;
}

.vacancy-resume-option-v4 em{
  color:#667085;
  font-size:15px;
  font-style:normal;
}

.vacancy-resume-option-v4 a{
  color:#3b82f6;
  font-size:15px;
  font-weight:600;
}

.vacancy-apply-submit-v4{
  width:100%;
  height:58px;
  border:0;
  border-radius:16px;
  background:#004f43;
  color:#fff;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
}

.vacancy-apply-submit-v4:disabled{
  background:#c5c7cc;
  cursor:wait;
}

.vacancy-apply-message-v4{
  margin:14px 0 0;
  min-height:20px;
  text-align:center;
  font-size:14px;
  font-weight:700;
}

.vacancy-apply-message-v4.is-success{
  color:#047857;
}

.vacancy-apply-message-v4.is-error{
  color:#dc2626;
}

.vacancy-create-resume-v4{
  display:block;
  margin-top:22px;
  text-align:center;
  color:#004f43;
  font-size:15px;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:3px;
}

.vacancy-no-resume-v4{
  padding:18px;
  border-radius:16px;
  background:#f8fafc;
  color:#667085;
}

@media (max-width:1180px){
  .vacancy-detail-container-v4{
    width:calc(100% - 40px);
  }

  .vacancy-detail-grid-v4{
    grid-template-columns:1fr;
  }

  .vacancy-side-v4{
    position:static;
  }
}

@media (max-width:720px){
  .vacancy-detail-page-v4{
    padding:92px 0 42px;
  }

  .vacancy-detail-container-v4{
    width:100%;
    padding:0 16px;
  }

  .vacancy-back-btn-v5{
  width:100%;
  min-height:50px;
  margin-bottom:18px;
  padding:0 16px;
  border-radius:16px;
  font-size:14px;
}

.vacancy-back-btn-v5__icon{
  width:32px;
  height:32px;
  border-radius:11px;
}

  .vacancy-detail-card-v4{
    padding:28px 18px 24px;
    border-radius:24px;
  }

  .vac-detail-logo-v4{
    top:24px;
    right:18px;
    width:46px;
    height:46px;
  }

  .vacancy-detail-card-v4 h1{
    max-width:calc(100% - 58px);
    font-size:24px;
  }

  .vacancy-info-list-v4 p,
  .vacancy-text-v4{
    font-size:16px;
  }

  .detail-apply-btn-v4{
    height:56px;
  }

  .apply-card-v4{
    border-radius:24px;
    padding:24px 18px;
  }

  .apply-card-v4 h2{
    font-size:24px;
  }

  .related-vacancies-v4 h2{
    font-size:24px;
  }

  .related-vacancy-card-v4{
    padding:22px 68px 22px 18px;
    border-radius:20px;
  }

  .related-vacancy-card-v4 h3{
    font-size:20px;
  }

  .related-tags-v4 .is-salary{
    width:100%;
  }

  .vacancy-apply-modal-v4{
    align-items:end;
    padding:0;
  }

  .vacancy-apply-modal-card-v4{
    width:100%;
    border-radius:28px 28px 0 0;
    padding:30px 26px 28px;
  }
}


/* ==========================================================
   Vacancy apply status / success v5
   ========================================================== */

.detail-apply-btn-v4.is-applied,
.apply-card-v4 button.is-applied,
[data-vacancy-already-applied]{
  background:#c5c7cc !important;
  color:#fff !important;
  cursor:not-allowed !important;
  transform:none !important;
}

.vacancy-already-applied-note-v5{
  margin:16px 0 0 !important;
  display:flex !important;
  align-items:center !important;
  flex-wrap:wrap !important;
  gap:8px !important;
  color:#006b5e !important;
  font-size:15px !important;
  line-height:1.35 !important;
  font-weight:800 !important;
}

.vacancy-already-applied-note-v5 i{
  color:#006b5e !important;
}

.vacancy-already-applied-note-v5 span{
  color:#667085 !important;
  font-weight:600 !important;
}

.apply-already-note-v5{
  margin:14px 0 0 !important;
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
  color:#006b5e !important;
  font-size:14px !important;
  font-weight:800 !important;
}

.vacancy-apply-success-v5{
  margin:0 0 18px !important;
  padding:18px 18px 16px !important;
  border:1px solid rgba(0,107,94,.18) !important;
  border-radius:18px !important;
  background:#ecfdf7 !important;
  text-align:center !important;
}

.vacancy-apply-success-v5[hidden]{
  display:none !important;
}

.vacancy-apply-success-v5 i{
  display:grid !important;
  place-items:center !important;
  width:44px !important;
  height:44px !important;
  margin:0 auto 10px !important;
  border-radius:50% !important;
  background:#006b5e !important;
  color:#fff !important;
  font-size:20px !important;
}

.vacancy-apply-success-v5 strong{
  display:block !important;
  margin:0 0 6px !important;
  color:#063b34 !important;
  font-size:20px !important;
  line-height:1.2 !important;
  font-weight:950 !important;
}

.vacancy-apply-success-v5 p{
  margin:0 !important;
  color:#047857 !important;
  font-size:15px !important;
  line-height:1.45 !important;
  font-weight:700 !important;
}

.vacancy-apply-message-v4.is-success{
  color:#047857 !important;
}

.vacancy-apply-message-v4.is-error{
  color:#dc2626 !important;
}

/* ==========================================================
   Vacancy apply full-screen success modal v9
   ========================================================== */

body.vacancy-apply-done-open-v9{
  overflow:hidden !important;
}

.vacancy-apply-done-modal-v9{
  position:fixed !important;
  inset:0 !important;
  z-index:3000 !important;
  display:grid !important;
  place-items:center !important;
  padding:24px !important;
  background:
    radial-gradient(circle at 50% 34%, rgba(0,107,94,.22), transparent 34%),
    rgba(4,12,20,.72) !important;
  backdrop-filter:blur(12px) !important;
}

.vacancy-apply-done-modal-v9[hidden]{
  display:none !important;
}

.vacancy-apply-done-card-v9{
  position:relative !important;
  width:min(560px, 100%) !important;
  min-height:420px !important;
  display:grid !important;
  justify-items:center !important;
  align-content:center !important;
  padding:52px 38px 42px !important;
  border-radius:34px !important;
  background:#fff !important;
  box-shadow:0 36px 120px rgba(0,0,0,.32) !important;
  text-align:center !important;
}

.vacancy-apply-done-close-v9{
  position:absolute !important;
  top:18px !important;
  right:18px !important;
  width:42px !important;
  height:42px !important;
  border:0 !important;
  border-radius:14px !important;
  background:#f2f4f7 !important;
  color:#667085 !important;
  font-size:32px !important;
  line-height:1 !important;
  cursor:pointer !important;
}

.vacancy-apply-done-icon-v9{
  width:92px !important;
  height:92px !important;
  display:grid !important;
  place-items:center !important;
  margin:0 0 24px !important;
  border-radius:50% !important;
  background:#006b5e !important;
  color:#fff !important;
  box-shadow:0 18px 38px rgba(0,107,94,.28) !important;
}

.vacancy-apply-done-icon-v9 i{
  font-size:42px !important;
}

.vacancy-apply-done-card-v9 h2{
  margin:0 0 14px !important;
  color:#06152e !important;
  font-size:34px !important;
  line-height:1.15 !important;
  letter-spacing:-.7px !important;
  font-weight:950 !important;
}

.vacancy-apply-done-card-v9 p{
  max-width:420px !important;
  margin:0 0 30px !important;
  color:#475467 !important;
  font-size:18px !important;
  line-height:1.55 !important;
  font-weight:600 !important;
}

.vacancy-apply-done-ok-v9{
  width:min(320px, 100%) !important;
  height:58px !important;
  border:0 !important;
  border-radius:16px !important;
  background:#004f43 !important;
  color:#fff !important;
  font-size:17px !important;
  font-weight:900 !important;
  cursor:pointer !important;
}

@media (max-width:640px){
  .vacancy-apply-done-modal-v9{
    padding:0 !important;
    align-items:stretch !important;
  }

  .vacancy-apply-done-card-v9{
    width:100% !important;
    min-height:100dvh !important;
    border-radius:0 !important;
    padding:70px 24px 38px !important;
  }

  .vacancy-apply-done-card-v9 h2{
    font-size:30px !important;
  }

  .vacancy-apply-done-card-v9 p{
    font-size:16px !important;
  }
}


/* ==========================================================
   Jobseeker resume / responses / notifications v11
   ========================================================== */

.jp-responses-card-v11{
  padding:34px !important;
  border-radius:32px !important;
  background:#fff !important;
}

.jp-responses-head-v11 h2{
  margin:0 0 14px !important;
  font-size:26px !important;
  font-weight:950 !important;
  color:#06152e !important;
}

.jp-responses-head-v11 p{
  margin:0 0 26px !important;
  color:#667085 !important;
  font-size:16px !important;
  font-weight:600 !important;
}

.jp-response-list-v11{
  display:grid !important;
  gap:18px !important;
}

.jp-response-item-v11{
  padding:28px 32px !important;
  border:1px solid #e4e7ec !important;
  border-radius:24px !important;
  background:#fff !important;
}

.jp-response-top-v11{
  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;
  gap:18px !important;
}

.jp-response-top-v11 h3{
  margin:0 0 10px !important;
  color:#06152e !important;
  font-size:20px !important;
  line-height:1.35 !important;
  font-weight:900 !important;
}

.jp-response-company-v11{
  margin:0 !important;
  color:#00a891 !important;
  font-size:16px !important;
  font-weight:800 !important;
}

.jp-response-status-v11{
  display:inline-flex !important;
  align-items:center !important;
  min-height:28px !important;
  padding:0 14px !important;
  border-radius:999px !important;
  background:#fff3bf !important;
  color:#946200 !important;
  font-size:13px !important;
  font-weight:800 !important;
  white-space:nowrap !important;
}

.jp-response-date-v11{
  margin:16px 0 18px !important;
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
  color:#667085 !important;
  font-size:14px !important;
  font-weight:600 !important;
}

.jp-response-resume-v11{
  margin:0 0 18px !important;
  padding:17px 18px !important;
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  border-radius:10px !important;
  background:#f8fafc !important;
  color:#344054 !important;
  font-size:15px !important;
  font-weight:700 !important;
}

.jp-response-resume-v11 i{
  color:#12b76a !important;
}

.jp-response-bottom-v11{
  padding-top:18px !important;
  border-top:1px solid #e4e7ec !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:16px !important;
}

.jp-response-bottom-v11 small{
  color:#667085 !important;
  font-size:13px !important;
  font-weight:600 !important;
}

.jp-response-bottom-v11 a{
  min-width:174px !important;
  height:38px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border:1px solid #00b8a0 !important;
  border-radius:9px !important;
  color:#00a891 !important;
  font-size:14px !important;
  font-weight:800 !important;
}

.jp-notify-main-v11{
  display:block !important;
}

.jp-notify-top-v11{
  margin:0 0 18px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
}

.jp-notify-tabs{
  display:flex !important;
  gap:10px !important;
  padding:6px !important;
  border-radius:14px !important;
  background:#f2f4f7 !important;
}

.jp-notify-tabs button{
  height:42px !important;
  padding:0 18px !important;
  border:0 !important;
  border-radius:11px !important;
  background:transparent !important;
  color:#475467 !important;
  font-weight:800 !important;
  cursor:pointer !important;
}

.jp-notify-tabs button.is-active{
  background:#fff !important;
  color:#004f43 !important;
  box-shadow:0 4px 12px rgba(16,24,40,.08) !important;
}

.jp-notify-list-v11{
  display:grid !important;
  gap:14px !important;
  padding:20px !important;
}

.jp-notify-list-v11 article{
  display:flex !important;
  gap:14px !important;
  padding:18px !important;
  border:1px solid #e4e7ec !important;
  border-radius:18px !important;
  background:#fff !important;
}

.jp-notify-list-v11 article.is-unread{
  border-color:rgba(0,79,67,.28) !important;
  background:#f0fdfa !important;
}

.jp-notify-list-v11 article > i{
  width:38px !important;
  height:38px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:12px !important;
  background:#e6f7f4 !important;
  color:#004f43 !important;
}

.jp-notify-list-v11 h3{
  margin:0 0 6px !important;
  color:#06152e !important;
  font-size:17px !important;
  font-weight:900 !important;
}

.jp-notify-list-v11 p{
  margin:0 0 8px !important;
  color:#475467 !important;
  font-size:14px !important;
  line-height:1.45 !important;
}

.jp-notify-list-v11 small{
  display:block !important;
  margin-bottom:10px !important;
  color:#667085 !important;
}

.jp-notify-list-v11 a{
  color:#00a891 !important;
  font-weight:850 !important;
}

.resume-view-section-v11{
  border:1px solid #e4e7ec !important;
  border-radius:18px !important;
  padding:18px !important;
  background:#fff !important;
}

.resume-view-empty-v11{
  color:#98a2b3 !important;
  font-weight:650 !important;
}

.resume-view-line-v11{
  border-bottom:1px solid #eef2f6 !important;
}

.resume-view-line-v11:last-child{
  border-bottom:0 !important;
}

.resume-view-media-grid-v11{
  display:grid !important;
  grid-template-columns:repeat(auto-fill, minmax(110px,1fr)) !important;
  gap:10px !important;
}

.resume-view-media-grid-v11 img{
  width:100% !important;
  height:100px !important;
  object-fit:cover !important;
  border-radius:12px !important;
}

.resume-view-video-list-v11{
  display:grid !important;
  gap:10px !important;
}

.resume-view-video-list-v11 a,
.resume-existing-file-v11{
  display:flex !important;
  align-items:center !important;
  gap:10px !important;
  padding:10px 12px !important;
  border:1px solid #e4e7ec !important;
  border-radius:12px !important;
  background:#f8fafc !important;
  color:#344054 !important;
  font-weight:700 !important;
}

.resume-existing-file-v11 img{
  width:46px !important;
  height:46px !important;
  border-radius:10px !important;
  object-fit:cover !important;
}

@media (max-width:680px){
  .jp-response-top-v11,
  .jp-response-bottom-v11{
    display:block !important;
  }

  .jp-response-status-v11{
    margin-top:12px !important;
  }

  .jp-response-bottom-v11 a{
    margin-top:14px !important;
    width:100% !important;
  }
}

/* ===== News page v2 ===== */
.news-page-v2{
  position:relative;
  min-height:100vh;
  padding:0 0 96px;
  background:
    radial-gradient(circle at 12% 16%, rgba(0,79,67,.10), transparent 32%),
    radial-gradient(circle at 88% 10%, rgba(20,184,166,.16), transparent 34%),
    linear-gradient(180deg,#f6faf9 0%,#eef2f5 48%,#ffffff 100%);
}

.news-hero-v2{
  padding:148px 0 70px;
  background:
    linear-gradient(135deg, rgba(0,79,67,.97), rgba(0,63,54,.94)),
    radial-gradient(circle at 85% 20%, rgba(45,212,191,.34), transparent 32%);
  color:#fff;
  overflow:hidden;
}

.news-hero-wrap-v2{
  display:grid;
  grid-template-columns:minmax(0,1fr) 440px;
  gap:52px;
  align-items:end;
}

.news-badge-v2{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:0 16px;
  border:1px solid rgba(255,255,255,.20);
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:#d8fffa;
  font-weight:900;
  backdrop-filter:blur(14px);
}

.news-hero-copy-v2 h1{
  margin:24px 0 18px;
  max-width:820px;
  font-size:64px;
  line-height:1.03;
  letter-spacing:-2.2px;
  font-weight:900;
}

.news-hero-copy-v2 p{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.78);
  font-size:19px;
  line-height:1.65;
  font-weight:600;
}

.news-hero-stats-v2{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.news-hero-stats-v2 span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.10);
  color:rgba(255,255,255,.82);
  font-weight:800;
}

.news-hero-stats-v2 b{
  color:#fff;
  font-size:22px;
}

.news-featured-v2{
  display:block;
  overflow:hidden;
  border-radius:34px;
  background:#fff;
  color:#172438;
  box-shadow:0 32px 80px rgba(0,0,0,.24);
  transform:translateY(12px);
}

.news-featured-img-v2{
  display:block;
  height:250px;
  background:#eaf4f2;
  overflow:hidden;
}

.news-featured-img-v2 img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.news-featured-v2:hover .news-featured-img-v2 img{
  transform:scale(1.045);
}

.news-featured-body-v2{
  display:block;
  padding:24px;
}

.news-featured-body-v2 em{
  display:inline-flex;
  margin-bottom:12px;
  color:#004f43;
  font-style:normal;
  font-weight:900;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.news-featured-body-v2 strong{
  display:block;
  margin-bottom:16px;
  font-size:24px;
  line-height:1.2;
  letter-spacing:-.5px;
  font-weight:900;
}

.news-featured-body-v2 small{
  display:flex;
  align-items:center;
  gap:8px;
  color:#64748b;
  font-weight:700;
}

.news-list-wrap-v2{
  margin-top:-34px;
  position:relative;
  z-index:2;
}

.news-grid-v2{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
}

.news-card-v2{
  min-height:100%;
}

.news-card-link-v2{
  display:flex;
  flex-direction:column;
  min-height:100%;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  border-radius:34px;
  background:rgba(255,255,255,.94);
  box-shadow:0 18px 50px rgba(15,31,50,.08);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.news-card-link-v2:hover{
  transform:translateY(-4px);
  border-color:rgba(0,79,67,.22);
  box-shadow:0 26px 70px rgba(15,31,50,.13);
}

.news-card-image-v2{
  position:relative;
  display:block;
  height:250px;
  overflow:hidden;
  background:#eef4f3;
}

.news-card-image-v2 img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.news-card-link-v2:hover .news-card-image-v2 img{
  transform:scale(1.045);
}

.news-card-image-v2 b{
  position:absolute;
  left:18px;
  bottom:18px;
  min-height:38px;
  display:inline-flex;
  align-items:center;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#004f43;
  font-size:13px;
  font-weight:900;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.news-card-content-v2{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:26px;
}

.news-card-content-v2 em{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  margin-bottom:16px;
  color:#004f43;
  font-style:normal;
  font-size:13px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.news-card-content-v2 strong{
  display:block;
  color:#101828;
  font-size:24px;
  line-height:1.22;
  letter-spacing:-.55px;
  font-weight:900;
}

.news-card-content-v2 > span{
  display:block;
  margin-top:14px;
  color:#667085;
  font-size:15px;
  line-height:1.65;
  font-weight:600;
}

.news-card-more-v2{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width:max-content;
  margin-top:auto;
  padding-top:24px;
  color:#004f43;
  font-style:normal;
  font-weight:900;
}

.news-empty-v2{
  padding:56px;
  border-radius:30px;
  background:#fff;
  text-align:center;
  box-shadow:0 18px 45px rgba(15,31,50,.07);
}

.news-empty-v2 h2{
  margin:0 0 10px;
  font-size:32px;
}

.news-empty-v2 p{
  margin:0;
  color:#667085;
}

/* ===== News detail v2 ===== */
.news-detail-page-v2{
  min-height:100vh;
  background:
    radial-gradient(circle at 10% 14%, rgba(0,79,67,.10), transparent 34%),
    linear-gradient(180deg,#f6faf9 0%,#fff 100%);
  padding-bottom:92px;
}

.news-detail-hero-v2{
  padding:132px 0 64px;
  background:
    linear-gradient(135deg, rgba(0,79,67,.98), rgba(0,63,54,.96)),
    radial-gradient(circle at 88% 12%, rgba(45,212,191,.28), transparent 30%);
  color:#fff;
}

.news-back-v2{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:44px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:#d8fffa;
  font-weight:900;
  margin-bottom:34px;
}

.news-detail-hero-grid-v2{
  display:grid;
  grid-template-columns:minmax(0,1fr) 500px;
  gap:54px;
  align-items:center;
}

.news-detail-head-v2 span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#c8fffa;
  font-weight:900;
}

.news-detail-head-v2 h1{
  margin:20px 0 18px;
  max-width:840px;
  font-size:58px;
  line-height:1.04;
  letter-spacing:-1.9px;
  font-weight:900;
}

.news-detail-head-v2 p{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.78);
  font-size:19px;
  line-height:1.65;
  font-weight:600;
}

.news-detail-cover-v2{
  overflow:hidden;
  border-radius:38px;
  background:#fff;
  box-shadow:0 34px 80px rgba(0,0,0,.24);
}

.news-detail-cover-v2 img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
}

.news-detail-layout-v2{
  display:grid;
  grid-template-columns:minmax(0,1fr) 360px;
  gap:34px;
  align-items:start;
  margin-top:42px;
}

.news-detail-article-v2{
  padding:46px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:34px;
  background:#fff;
  color:#263447;
  font-size:19px;
  line-height:1.85;
  font-weight:500;
  box-shadow:0 18px 55px rgba(15,31,50,.07);
}

.news-related-v2{
  position:sticky;
  top:96px;
  padding:24px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:30px;
  background:#fff;
  box-shadow:0 18px 55px rgba(15,31,50,.07);
}

.news-related-v2 h3{
  margin:0 0 18px;
  font-size:22px;
  letter-spacing:-.3px;
}

.news-related-v2 a{
  display:grid;
  grid-template-columns:84px minmax(0,1fr);
  gap:14px;
  padding:12px 0;
  border-top:1px solid #eef1f4;
}

.news-related-v2 a:first-of-type{
  border-top:0;
  padding-top:0;
}

.news-related-v2 img{
  width:84px;
  height:72px;
  object-fit:cover;
  border-radius:16px;
  background:#eef4f3;
}

.news-related-v2 b{
  display:block;
  color:#172438;
  font-size:14px;
  line-height:1.35;
}

.news-related-v2 small{
  display:block;
  margin-top:8px;
  color:#667085;
  font-weight:700;
}

@media(max-width:1180px){
  .news-hero-wrap-v2,
  .news-detail-hero-grid-v2,
  .news-detail-layout-v2{
    grid-template-columns:1fr;
  }

  .news-featured-v2{
    transform:none;
  }

  .news-grid-v2{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .news-related-v2{
    position:static;
  }
}

@media(max-width:760px){
  .news-page-v2{
    padding-bottom:56px;
  }

  .news-hero-v2{
    padding:160px 0 48px;
  }

  .news-detail-hero-v2{
    padding:156px 0 46px;
  }

  .news-hero-copy-v2 h1,
  .news-detail-head-v2 h1{
    font-size:36px;
    letter-spacing:-1px;
  }

  .news-hero-copy-v2 p,
  .news-detail-head-v2 p{
    font-size:16px;
  }

  .news-hero-wrap-v2,
  .news-detail-hero-grid-v2{
    gap:28px;
  }

  .news-grid-v2{
    grid-template-columns:1fr;
    gap:18px;
  }

  .news-card-link-v2,
  .news-featured-v2,
  .news-detail-cover-v2,
  .news-detail-article-v2,
  .news-related-v2{
    border-radius:24px;
  }

  .news-card-image-v2,
  .news-featured-img-v2{
    height:210px;
  }

  .news-detail-cover-v2 img{
    height:240px;
  }

  .news-card-content-v2,
  .news-featured-body-v2,
  .news-related-v2{
    padding:20px;
  }

  .news-detail-article-v2{
    padding:24px;
    font-size:16px;
    line-height:1.8;
  }

  .news-list-wrap-v2{
    margin-top:22px;
  }

  .news-hero-stats-v2{
    display:grid;
  }
}

/* ===== About page v2 / modern ===== */
.about-page-v2{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(0,79,67,.12), transparent 34%),
    radial-gradient(circle at 92% 4%, rgba(20,184,166,.18), transparent 36%),
    linear-gradient(180deg,#f6faf9 0%,#ffffff 45%,#f7fafc 100%);
  color:#172438;
}

.about-hero-v2{
  position:relative;
  padding:152px 0 86px;
  background:
    linear-gradient(135deg, rgba(0,79,67,.98), rgba(0,63,54,.96)),
    radial-gradient(circle at 80% 20%, rgba(45,212,191,.30), transparent 34%);
  color:#fff;
  overflow:hidden;
}

.about-hero-v2:before{
  content:"";
  position:absolute;
  inset:auto -160px -280px auto;
  width:580px;
  height:580px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  filter:blur(2px);
}

.about-hero-grid-v2{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0,1fr) 520px;
  gap:64px;
  align-items:center;
}

.about-badge-v2{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:44px;
  padding:0 17px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:#d9fffa;
  font-weight:900;
  backdrop-filter:blur(14px);
}

.about-hero-copy-v2 h1{
  margin:26px 0 20px;
  max-width:880px;
  font-size:64px;
  line-height:1.03;
  letter-spacing:-2.2px;
  font-weight:900;
}

.about-hero-copy-v2 p{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.78);
  font-size:19px;
  line-height:1.65;
  font-weight:600;
}

.about-hero-actions-v2{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.about-primary-v2,
.about-secondary-v2,
.about-secondary-dark-v2{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 22px;
  border-radius:18px;
  font-weight:900;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.about-primary-v2{
  background:#fff;
  color:#004f43;
  box-shadow:0 18px 36px rgba(0,0,0,.16);
}

.about-secondary-v2{
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.10);
  color:#fff;
}

.about-secondary-dark-v2{
  border:1px solid rgba(255,255,255,.25);
  background:rgba(255,255,255,.12);
  color:#fff;
}

.about-primary-v2:hover,
.about-secondary-v2:hover,
.about-secondary-dark-v2:hover{
  transform:translateY(-2px);
}

.about-hero-visual-v2{
  position:relative;
  min-height:500px;
}

.about-orbit-v2{
  position:absolute;
  inset:34px 20px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 0 70px rgba(255,255,255,.08),
    0 0 0 70px rgba(255,255,255,.03);
}

.about-main-card-v2{
  position:absolute;
  left:50%;
  top:50%;
  width:330px;
  min-height:260px;
  transform:translate(-50%,-50%);
  padding:34px;
  border:1px solid rgba(255,255,255,.20);
  border-radius:38px;
  background:rgba(255,255,255,.14);
  box-shadow:0 34px 80px rgba(0,0,0,.22);
  backdrop-filter:blur(22px);
}

.about-main-card-v2 span{
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  margin-bottom:24px;
  border-radius:24px;
  background:#fff;
  color:#004f43;
  font-size:28px;
}

.about-main-card-v2 strong{
  display:block;
  font-size:30px;
  line-height:1.12;
  letter-spacing:-.8px;
  font-weight:900;
}

.about-main-card-v2 p{
  margin:16px 0 0;
  color:rgba(255,255,255,.78);
  font-size:15px;
  line-height:1.6;
  font-weight:700;
}

.about-mini-card-v2{
  position:absolute;
  display:flex;
  align-items:center;
  gap:12px;
  min-height:58px;
  padding:0 18px;
  border-radius:20px;
  background:#fff;
  color:#172438;
  box-shadow:0 24px 60px rgba(0,0,0,.18);
  font-weight:900;
}

.about-mini-card-v2 i{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:#e9faf6;
  color:#004f43;
}

.about-mini-card-a-v2{
  top:74px;
  left:24px;
}

.about-mini-card-b-v2{
  right:0;
  top:190px;
}

.about-mini-card-c-v2{
  left:46px;
  bottom:82px;
}

.about-stats-v2{
  position:relative;
  z-index:4;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  margin-top: 40px;
}

.about-stats-v2 article{
  min-height:138px;
  padding:28px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:30px;
  background:rgba(255,255,255,.94);
  box-shadow:0 24px 70px rgba(15,31,50,.10);
}

.about-stats-v2 strong{
  display:block;
  color:#004f43;
  font-size:42px;
  line-height:1;
  letter-spacing:-1.2px;
  font-weight:900;
}

.about-stats-v2 span{
  display:block;
  margin-top:12px;
  color:#667085;
  font-size:15px;
  font-weight:800;
}

.about-section-v2,
.about-values-v2{
  padding:60px 0 0;
}

.about-section-head-v2{
  max-width:840px;
  margin:0 auto 42px;
  text-align:center;
}

.about-section-head-v2 span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 15px;
  border-radius:999px;
  background:#e9faf6;
  color:#004f43;
  font-weight:900;
}

.about-section-head-v2 h2{
  margin:18px 0 14px;
  color:#101828;
  font-size:46px;
  line-height:1.08;
  letter-spacing:-1.2px;
  font-weight:900;
}

.about-section-head-v2 p{
  margin:0;
  color:#667085;
  font-size:17px;
  line-height:1.7;
  font-weight:600;
}

.about-steps-v2{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
}

.about-steps-v2 article{
  position:relative;
  overflow:hidden;
  min-height:310px;
  padding:34px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:34px;
  background:#fff;
  box-shadow:0 20px 55px rgba(15,31,50,.07);
  transition:transform .2s ease, box-shadow .2s ease;
}

.about-steps-v2 article:hover{
  transform:translateY(-4px);
  box-shadow:0 28px 75px rgba(15,31,50,.11);
}

.about-step-number-v2{
  position:absolute;
  right:26px;
  top:22px;
  color:#edf2f7;
  font-size:70px;
  line-height:1;
  font-weight:900;
  letter-spacing:-3px;
}

.about-steps-v2 article > span{
  position:relative;
  z-index:2;
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  margin-bottom:26px;
  border-radius:22px;
  background:#004f43;
  color:#fff;
  font-size:24px;
}

.about-steps-v2 h3{
  position:relative;
  z-index:2;
  margin:0 0 14px;
  color:#101828;
  font-size:24px;
  line-height:1.22;
  letter-spacing:-.45px;
  font-weight:900;
}

.about-steps-v2 p{
  position:relative;
  z-index:2;
  margin:0;
  color:#667085;
  font-size:15px;
  line-height:1.7;
  font-weight:600;
}

.about-two-col-v2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
  padding-top:88px;
}

.about-audience-card-v2{
  overflow:hidden;
  position:relative;
  min-height:420px;
  padding:38px;
  border-radius:38px;
  background:
    radial-gradient(circle at 85% 10%, rgba(20,184,166,.20), transparent 34%),
    linear-gradient(135deg,#ffffff,#f6fbfa);
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 24px 70px rgba(15,31,50,.08);
}

.about-audience-card-v2.is-worker-v2{
  background:
    radial-gradient(circle at 88% 12%, rgba(251,146,60,.18), transparent 34%),
    linear-gradient(135deg,#ffffff,#fffaf5);
}

.about-audience-card-v2 div > span{
  width:66px;
  height:66px;
  display:grid;
  place-items:center;
  margin-bottom:24px;
  border-radius:22px;
  background:#004f43;
  color:#fff;
  font-size:26px;
}

.about-audience-card-v2 h2{
  margin:0 0 14px;
  color:#101828;
  font-size:36px;
  line-height:1.12;
  letter-spacing:-.9px;
  font-weight:900;
}

.about-audience-card-v2 p{
  margin:0;
  max-width:560px;
  color:#667085;
  font-size:16px;
  line-height:1.7;
  font-weight:600;
}

.about-audience-card-v2 ul{
  list-style:none;
  display:grid;
  gap:12px;
  margin:28px 0 0;
  padding:0;
}

.about-audience-card-v2 li{
  display:flex;
  align-items:center;
  gap:10px;
  color:#344054;
  font-weight:800;
}

.about-audience-card-v2 li i{
  color:#079455;
}

.about-audience-card-v2 > a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:30px;
  min-height:52px;
  padding:0 20px;
  border-radius:17px;
  background:#004f43;
  color:#fff;
  font-weight:900;
}

.about-values-grid-v2{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}

.about-values-grid-v2 article{
  min-height:245px;
  padding:28px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:30px;
  background:#fff;
  box-shadow:0 18px 50px rgba(15,31,50,.065);
}

.about-values-grid-v2 i{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  margin-bottom:22px;
  border-radius:18px;
  background:#e9faf6;
  color:#004f43;
  font-size:22px;
}

.about-values-grid-v2 h3{
  margin:0 0 10px;
  color:#101828;
  font-size:22px;
  font-weight:900;
}

.about-values-grid-v2 p{
  margin:0;
  color:#667085;
  font-size:15px;
  line-height:1.65;
  font-weight:600;
}

.about-final-cta-v2{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-top:92px;
  margin-bottom:72px;
  padding:46px;
  border-radius:38px;
  background:
    linear-gradient(135deg, rgba(0,79,67,.98), rgba(0,63,54,.96)),
    radial-gradient(circle at 90% 20%, rgba(45,212,191,.28), transparent 34%);
  color:#fff;
  box-shadow:0 28px 80px rgba(0,79,67,.20);
}

.about-final-cta-v2 span{
  display:inline-flex;
  margin-bottom:12px;
  color:#bff9f0;
  font-weight:900;
}

.about-final-cta-v2 h2{
  margin:0;
  max-width:760px;
  font-size:38px;
  line-height:1.1;
  letter-spacing:-1px;
  font-weight:900;
}

.about-final-cta-v2 p{
  margin:12px 0 0;
  color:rgba(255,255,255,.74);
  font-size:16px;
  font-weight:700;
}

.about-final-cta-v2 > div:last-child{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:flex-end;
}

@media(max-width:1180px){
  .about-hero-grid-v2,
  .about-two-col-v2{
    grid-template-columns:1fr;
  }

  .about-hero-visual-v2{
    min-height:420px;
  }

  .about-values-grid-v2{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .about-final-cta-v2{
    display:grid;
  }

  .about-final-cta-v2 > div:last-child{
    justify-content:flex-start;
  }
}

@media(max-width:900px){
  .about-stats-v2,
  .about-steps-v2{
    grid-template-columns:1fr;
  }

  .about-stats-v2{
    margin-top:24px;
  }

  .about-hero-copy-v2 h1{
    font-size:46px;
  }

  .about-section-head-v2 h2{
    font-size:36px;
  }
}

@media(max-width:680px){
  .about-hero-v2{
    padding:156px 0 52px;
  }

  .about-hero-grid-v2{
    gap:34px;
  }

  .about-hero-copy-v2 h1{
    font-size:34px;
    letter-spacing:-1px;
  }

  .about-hero-copy-v2 p{
    font-size:16px;
  }

  .about-hero-actions-v2,
  .about-final-cta-v2 > div:last-child{
    display:grid;
  }

  .about-primary-v2,
  .about-secondary-v2,
  .about-secondary-dark-v2{
    width:100%;
  }

  .about-hero-visual-v2{
    min-height:360px;
  }

  .about-main-card-v2{
    width:260px;
    min-height:220px;
    padding:26px;
    border-radius:30px;
  }

  .about-main-card-v2 strong{
    font-size:24px;
  }

  .about-mini-card-v2{
    min-height:50px;
    padding:0 13px;
    font-size:13px;
  }

  .about-mini-card-a-v2{
    left:0;
    top:36px;
  }

  .about-mini-card-b-v2{
    right:0;
    top:160px;
  }

  .about-mini-card-c-v2{
    left:8px;
    bottom:42px;
  }

  .about-section-v2,
  .about-values-v2{
    padding-top:58px;
  }

  .about-section-head-v2{
    margin-bottom:26px;
  }

  .about-section-head-v2 h2{
    font-size:30px;
  }

  .about-steps-v2 article,
  .about-audience-card-v2,
  .about-values-grid-v2 article{
    border-radius:24px;
    padding:24px;
  }

  .about-audience-card-v2 h2{
    font-size:28px;
  }

  .about-values-grid-v2{
    grid-template-columns:1fr;
  }

  .about-two-col-v2{
    padding-top:52px;
  }

  .about-final-cta-v2{
    margin-top:56px;
    margin-bottom:46px;
    padding:28px;
    border-radius:26px;
  }

  .about-final-cta-v2 h2{
    font-size:28px;
  }
}

/* ===== Support page v2 ===== */
.support-page-v2{
  position:relative;
  min-height:100vh;
  background:
    radial-gradient(circle at 8% 12%, rgba(0,79,67,.12), transparent 32%),
    radial-gradient(circle at 88% 4%, rgba(20,184,166,.16), transparent 35%),
    linear-gradient(180deg,#f6faf9 0%,#fff 48%,#f7fafc 100%);
  color:#172438;
  overflow:hidden;
}

.support-hero-v2{
  padding:150px 0 76px;
  background:
    linear-gradient(135deg, rgba(0,79,67,.98), rgba(0,63,54,.96)),
    radial-gradient(circle at 82% 18%, rgba(45,212,191,.30), transparent 34%);
  color:#fff;
}

.support-hero-grid-v2{
  display:grid;
  grid-template-columns:minmax(0,1fr) 420px;
  gap:54px;
  align-items:center;
}

.support-badge-v2{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:0 16px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:#d8fffa;
  font-weight:900;
  backdrop-filter:blur(14px);
}

.support-hero-copy-v2 h1{
  margin:24px 0 18px;
  max-width:760px;
  font-size:62px;
  line-height:1.04;
  letter-spacing:-2px;
  font-weight:900;
}

.support-hero-copy-v2 p{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.78);
  font-size:19px;
  line-height:1.65;
  font-weight:600;
}

.support-quick-actions-v2{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.support-quick-actions-v2 a{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0 18px;
  border-radius:17px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  color:#fff;
  font-weight:900;
}

.support-quick-actions-v2 a:first-child{
  background:#fff;
  color:#004f43;
}

.support-hero-card-v2{
  padding:34px;
  border-radius:36px;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.20);
  box-shadow:0 34px 80px rgba(0,0,0,.22);
  backdrop-filter:blur(22px);
}

.support-hero-card-v2 span{
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  margin-bottom:24px;
  border-radius:24px;
  background:#fff;
  color:#004f43;
  font-size:28px;
}

.support-hero-card-v2 strong{
  display:block;
  font-size:34px;
  line-height:1.1;
  font-weight:900;
}

.support-hero-card-v2 p{
  margin:14px 0 10px;
  color:rgba(255,255,255,.74);
  font-weight:700;
}

.support-hero-card-v2 b{
  color:#d8fffa;
  font-size:18px;
}

.support-layout-v2{
  display:grid;
  grid-template-columns:430px minmax(0,1fr);
  gap:30px;
  align-items:start;
  margin-top:40px;
  margin-bottom:86px;
  position:relative;
  z-index:2;
}

.support-contacts-v2,
.support-form-v2{
  border:1px solid rgba(15,23,42,.08);
  border-radius:36px;
  background:rgba(255,255,255,.96);
  box-shadow:0 24px 70px rgba(15,31,50,.10);
}

.support-contacts-v2{
  padding:30px;
}

.support-contacts-head-v2 span,
.support-form-head-v2 span{
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  margin-bottom:20px;
  border-radius:22px;
  background:#004f43;
  color:#fff;
  font-size:24px;
}

.support-contacts-head-v2 h2,
.support-form-head-v2 h2{
  margin:0 0 10px;
  color:#101828;
  font-size:30px;
  line-height:1.16;
  letter-spacing:-.7px;
  font-weight:900;
}

.support-contacts-head-v2 p,
.support-form-head-v2 p{
  margin:0;
  color:#667085;
  line-height:1.65;
  font-weight:600;
}

.support-contact-list-v2{
  display:grid;
  gap:14px;
  margin-top:28px;
}

.support-contact-list-v2 a,
.support-contact-list-v2 div{
  display:grid;
  grid-template-columns:48px minmax(0,1fr);
  gap:14px;
  align-items:start;
  padding:16px;
  border:1px solid #eef1f4;
  border-radius:22px;
  background:#fbfcfd;
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.support-contact-list-v2 a:hover{
  transform:translateY(-2px);
  border-color:rgba(0,79,67,.18);
  box-shadow:0 18px 40px rgba(15,31,50,.08);
}

.support-contact-list-v2 > a > i,
.support-contact-list-v2 > div > i{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:#e9faf6;
  color:#004f43;
  font-size:20px;
}

.support-contact-list-v2 b{
  display:block;
  color:#101828;
  font-size:14px;
  font-weight:900;
}

.support-contact-list-v2 em{
  display:block;
  margin-top:4px;
  color:#344054;
  font-style:normal;
  font-size:15px;
  font-weight:800;
  word-break:break-word;
}

.support-contact-list-v2 small{
  display:block;
  margin-top:7px;
  color:#667085;
  font-size:12px;
  line-height:1.35;
  font-weight:700;
}

/* Developer contact card on support page */
.support-developer-card-v1{
  margin-top:18px;
  padding:24px;
  border-radius:30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(45,212,191,.18), transparent 34%),
    linear-gradient(135deg,#003f36,#004f43 58%,#076b5d);
  color:#fff;
  box-shadow:0 24px 58px rgba(0,79,67,.20);
  overflow:hidden;
  position:relative;
}

.support-developer-card-v1:before{
  content:"";
  position:absolute;
  right:-54px;
  top:-54px;
  width:150px;
  height:150px;
  border-radius:50%;
  background:rgba(255,255,255,.09);
}

.support-dev-top-v1{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.support-dev-top-v1 span{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.20);
  color:#d8fffa;
  font-size:21px;
}

.support-dev-top-v1 b{
  min-height:32px;
  display:inline-flex;
  align-items:center;
  padding:0 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  color:#d8fffa;
  font-size:13px;
  font-weight:900;
}

.support-developer-card-v1 h3{
  position:relative;
  z-index:1;
  margin:0;
  color:#fff;
  font-size:25px;
  line-height:1.18;
  letter-spacing:-.45px;
  font-weight:900;
}

.support-developer-card-v1 p{
  position:relative;
  z-index:1;
  margin:12px 0 18px;
  color:rgba(255,255,255,.76);
  font-size:14px;
  line-height:1.65;
  font-weight:700;
}

.support-dev-actions-v1{
  position:relative;
  z-index:1;
  display:grid;
  gap:12px;
}

.support-dev-actions-v1 a{
  display:grid;
  grid-template-columns:46px minmax(0,1fr);
  gap:13px;
  align-items:center;
  min-height:76px;
  padding:14px;
  border-radius:22px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
}

.support-dev-actions-v1 a:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.30);
}

.support-dev-actions-v1 a > i{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:#fff;
  color:#004f43;
  font-size:20px;
}

.support-dev-actions-v1 b,
.support-dev-actions-v1 em,
.support-dev-actions-v1 small{
  display:block;
}

.support-dev-actions-v1 b{
  color:#fff;
  font-size:14px;
  font-weight:900;
}

.support-dev-actions-v1 em{
  margin-top:3px;
  color:#d8fffa;
  font-style:normal;
  font-size:15px;
  font-weight:900;
  word-break:break-word;
}

.support-dev-actions-v1 small{
  margin-top:5px;
  color:rgba(255,255,255,.68);
  font-size:12px;
  line-height:1.35;
  font-weight:700;
}
.support-form-v2{
  padding:34px;
  display:grid;
  gap:20px;
}

.support-form-head-v2{
  margin-bottom:4px;
}

.support-form-v2 label{
  display:grid;
  gap:8px;
}

.support-form-v2 label > span{
  color:#344054;
  font-size:14px;
  font-weight:900;
}

.support-form-v2 input,
.support-form-v2 textarea{
  border:1px solid #d9dde3;
  border-radius:18px;
  background:#fff;
  color:#172438;
  padding:17px 18px;
  outline:none;
  font-weight:600;
  transition:border-color .18s ease, box-shadow .18s ease;
}

.support-form-v2 input:focus,
.support-form-v2 textarea:focus{
  border-color:#004f43;
  box-shadow:0 0 0 4px rgba(0,79,67,.10);
}

.support-form-v2 textarea{
  min-height:190px;
  resize:vertical;
  line-height:1.6;
}

.support-two-v2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.support-form-bottom-v2{
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-top:2px;
}

.support-form-bottom-v2 p{
  margin:0;
  color:#667085;
  font-weight:800;
}

.support-form-bottom-v2 p.is-success{
  color:#079455;
}

.support-form-bottom-v2 p.is-error{
  color:#d92d20;
}

.support-form-bottom-v2 button{
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 24px;
  border:0;
  border-radius:18px;
  background:#004f43;
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 16px 34px rgba(0,79,67,.16);
}

.support-form-bottom-v2 button:disabled{
  opacity:.72;
  cursor:not-allowed;
}

@media(max-width:1100px){
  .support-hero-grid-v2,
  .support-layout-v2{
    grid-template-columns:1fr;
  }

  .support-layout-v2{
    margin-top:26px;
  }
}

@media(max-width:700px){
  .support-hero-v2{
    padding:156px 0 48px;
  }

  .support-hero-copy-v2 h1{
    font-size:36px;
    letter-spacing:-1px;
  }

  .support-hero-copy-v2 p{
    font-size:16px;
  }

  .support-quick-actions-v2{
    display:grid;
  }

  .support-quick-actions-v2 a{
    width:100%;
  }

  .support-contacts-v2,
  .support-form-v2,
  .support-hero-card-v2{
    border-radius:26px;
    padding:24px;
  }

  .support-two-v2{
    grid-template-columns:1fr;
  }

  .support-form-bottom-v2{
  }

  .support-form-bottom-v2 button{
    width:100%;
  }
}

/* ===== Candidates page v2 ===== */
.candidates-page-v2{
  min-height:100vh;
  background:
    radial-gradient(circle at 9% 12%, rgba(0,79,67,.12), transparent 34%),
    radial-gradient(circle at 91% 4%, rgba(20,184,166,.16), transparent 34%),
    linear-gradient(180deg,#f6faf9 0%,#ffffff 44%,#f7fafc 100%);
  color:#172438;
}

.candidates-hero-v2{
  padding:150px 0 78px;
  background:
    linear-gradient(135deg, rgba(0,79,67,.98), rgba(0,63,54,.96)),
    radial-gradient(circle at 84% 18%, rgba(45,212,191,.32), transparent 36%);
  color:#fff;
  overflow:hidden;
}

.candidates-hero-grid-v2{
  display:grid;
  grid-template-columns:minmax(0,1fr) 430px;
  gap:56px;
  align-items:center;
}

.candidates-badge-v2{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(255,255,255,.10);
  color:#d8fffa;
  font-weight:900;
  backdrop-filter:blur(14px);
}

.candidates-hero-copy-v2 h1{
  margin:24px 0 18px;
  max-width:820px;
  font-size:64px;
  line-height:1.03;
  letter-spacing:-2.1px;
  font-weight:900;
}

.candidates-hero-copy-v2 p{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.78);
  font-size:19px;
  line-height:1.65;
  font-weight:600;
}

.candidates-hero-stats-v2{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}

.candidates-hero-stats-v2 span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  padding:0 18px;
  border-radius:18px;
  background:rgba(255,255,255,.12);
  color:rgba(255,255,255,.82);
  font-weight:800;
}

.candidates-hero-stats-v2 b{
  color:#fff;
  font-size:22px;
  font-weight:900;
}

.candidates-hero-card-v2{
  padding:34px;
  border-radius:36px;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.20);
  box-shadow:0 34px 80px rgba(0,0,0,.22);
  backdrop-filter:blur(22px);
}

.candidates-hero-card-v2 span{
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  margin-bottom:24px;
  border-radius:24px;
  background:#fff;
  color:#004f43;
  font-size:28px;
}

.candidates-hero-card-v2 strong{
  display:block;
  font-size:31px;
  line-height:1.12;
  letter-spacing:-.8px;
  font-weight:900;
}

.candidates-hero-card-v2 p{
  margin:14px 0 0;
  color:rgba(255,255,255,.76);
  font-size:15px;
  line-height:1.7;
  font-weight:700;
}

.candidates-search-wrap-v2{
  position:relative;
  z-index:3;
  margin-top:40px;
}

.candidates-search-v2{
  display:grid;
  grid-template-columns:minmax(0,1.2fr) minmax(260px,.7fr) 180px;
  gap:14px;
  padding:16px;
  border-radius:30px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 24px 70px rgba(15,31,50,.10);
}

.candidates-search-v2 label{
  min-height:58px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:0 18px;
  border:1px solid #e5e7eb;
  border-radius:20px;
  background:#f9fbfb;
}

.candidates-search-v2 label i{
  color:#004f43;
}

.candidates-search-v2 input{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  color:#172438;
  font-weight:700;
}

.candidates-search-v2 button{
  border:0;
  border-radius:20px;
  background:#004f43;
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.candidates-content-v2{
  padding:46px 0 92px;
}

.candidate-grid-v2{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
}

.candidate-card-v2{
  position:relative;
  overflow:hidden;
  min-height:100%;
  padding:28px;
  border-radius:34px;
  border:1px solid rgba(15,23,42,.08);
  background:rgba(255,255,255,.96);
  box-shadow:0 18px 55px rgba(15,31,50,.08);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.candidate-card-v2:hover{
  transform:translateY(-4px);
  border-color:rgba(0,79,67,.22);
  box-shadow:0 28px 80px rgba(15,31,50,.13);
}

.candidate-card-top-v2{
  display:grid;
  grid-template-columns:66px minmax(0,1fr);
  gap:16px;
  align-items:start;
}

.candidate-avatar-v2{
  width:66px;
  height:66px;
  display:grid;
  place-items:center;
  border-radius:23px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.55), transparent 34%),
    linear-gradient(135deg,#004f43,#0f766e);
  color:#fff;
  font-size:28px;
  font-weight:900;
  text-transform:uppercase;
}

.candidate-card-top-v2 span{
  display:inline-flex;
  margin-bottom:8px;
  color:#004f43;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.candidate-card-top-v2 h2{
  margin:0;
  color:#101828;
  font-size:23px;
  line-height:1.22;
  letter-spacing:-.45px;
  font-weight:900;
}

.candidate-card-top-v2 p{
  margin:8px 0 0;
  color:#667085;
  font-size:14px;
  font-weight:800;
}

.candidate-meta-row-v2{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.candidate-meta-row-v2 span{
  min-height:36px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 12px;
  border-radius:999px;
  background:#f2f6f5;
  color:#344054;
  font-size:13px;
  font-weight:800;
}

.candidate-meta-row-v2 i{
  color:#004f43;
}

.candidate-salary-v2{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:20px;
  padding:16px;
  border-radius:22px;
  background:#e9faf6;
  color:#004f43;
}

.candidate-salary-v2 i{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#fff;
}

.candidate-salary-v2 strong{
  font-size:18px;
  line-height:1.25;
  font-weight:900;
}

.candidate-info-grid-v2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:16px;
}

.candidate-info-grid-v2 span{
  min-height:78px;
  padding:14px;
  border-radius:20px;
  background:#f8fafc;
  color:#344054;
  font-size:13px;
  line-height:1.45;
  font-weight:700;
}

.candidate-info-grid-v2 b{
  display:block;
  margin-bottom:6px;
  color:#101828;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.candidate-skills-v2,
.candidate-tags-v2{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.candidate-skills-v2 span{
  min-height:32px;
  display:inline-flex;
  align-items:center;
  padding:0 11px;
  border-radius:999px;
  background:#004f43;
  color:#fff;
  font-size:12px;
  font-weight:900;
}

.candidate-tags-v2 span{
  min-height:30px;
  display:inline-flex;
  align-items:center;
  padding:0 10px;
  border-radius:999px;
  background:#eef4ff;
  color:#3151a3;
  font-size:12px;
  font-weight:900;
}

.candidate-lock-v2{
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  gap:12px;
  align-items:center;
  margin-top:18px;
  padding:14px;
  border:1px dashed rgba(0,79,67,.24);
  border-radius:20px;
  background:#fbfffe;
}

.candidate-lock-v2 i{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#e9faf6;
  color:#004f43;
}

.candidate-lock-v2 span{
  color:#667085;
  font-size:13px;
  line-height:1.45;
  font-weight:700;
}

.candidate-actions-v2{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  margin-top:20px;
}

.candidate-actions-v2 button,
.candidate-actions-v2 a{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:0 16px;
  border:0;
  border-radius:17px;
  background:#004f43;
  color:#fff;
  font-size:14px;
  font-weight:900;
  cursor:pointer;
}

.candidate-actions-v2 .candidate-secondary-v2{
  background:#f2f6f5;
  color:#004f43;
}

.candidates-empty-v2{
  padding:56px;
  border-radius:34px;
  background:#fff;
  text-align:center;
  box-shadow:0 18px 55px rgba(15,31,50,.08);
}

.candidates-empty-v2 span{
  width:76px;
  height:76px;
  display:grid;
  place-items:center;
  margin:0 auto 22px;
  border-radius:26px;
  background:#e9faf6;
  color:#004f43;
  font-size:30px;
}

.candidates-empty-v2 h2{
  margin:0 0 10px;
  font-size:32px;
  font-weight:900;
}

.candidates-empty-v2 p{
  margin:0;
  color:#667085;
  font-weight:700;
}

@media(max-width:1180px){
  .candidates-hero-grid-v2{
    grid-template-columns:1fr;
  }

  .candidate-grid-v2{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .candidates-search-v2{
    grid-template-columns:1fr;
  }

  .candidates-search-v2 button{
    min-height:58px;
  }
}

@media(max-width:760px){
  .candidates-hero-v2{
    padding:156px 0 52px;
  }

  .candidates-hero-copy-v2 h1{
    font-size:36px;
    letter-spacing:-1px;
  }

  .candidates-hero-copy-v2 p{
    font-size:16px;
  }

  .candidates-hero-card-v2,
  .candidate-card-v2,
  .candidates-search-v2{
    border-radius:24px;
  }

  .candidate-grid-v2{
    grid-template-columns:1fr;
    gap:18px;
  }

  .candidate-info-grid-v2{
    grid-template-columns:1fr;
  }

  .candidate-actions-v2{
    grid-template-columns:1fr;
  }

  .candidate-actions-v2 button,
  .candidate-actions-v2 a{
    width:100%;
  }

  .candidates-content-v2{
    padding:32px 0 58px;
  }
}

.candidate-empty-reset-v2{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  padding:0 20px;
  border-radius:16px;
  background:#004f43;
  color:#fff;
  font-weight:900;
}

/* ===== FAQ page v2 ===== */
.faq-page-v2{
  min-height:100vh;
  background:
    radial-gradient(circle at 8% 12%, rgba(0,79,67,.12), transparent 34%),
    radial-gradient(circle at 92% 4%, rgba(20,184,166,.16), transparent 34%),
    linear-gradient(180deg,#f6faf9 0%,#ffffff 46%,#f7fafc 100%);
  color:#172438;
}

.faq-hero-v2{
  padding:150px 0 82px;
  background:
    linear-gradient(135deg, rgba(0,79,67,.98), rgba(0,63,54,.96)),
    radial-gradient(circle at 82% 18%, rgba(45,212,191,.32), transparent 36%);
  color:#fff;
  overflow:hidden;
}

.faq-hero-grid-v2{
  display:grid;
  grid-template-columns:minmax(0,1fr) 380px;
  gap:56px;
  align-items:center;
}

.faq-badge-v2{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:42px;
  padding:0 16px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:999px;
  background:rgba(255,255,255,.10);
  color:#d8fffa;
  font-weight:900;
  backdrop-filter:blur(14px);
}

.faq-hero-copy-v2 h1{
  margin:24px 0 18px;
  max-width:820px;
  font-size:64px;
  line-height:1.03;
  letter-spacing:-2px;
  font-weight:900;
}

.faq-hero-copy-v2 p{
  margin:0;
  max-width:760px;
  color:rgba(255,255,255,.78);
  font-size:19px;
  line-height:1.65;
  font-weight:600;
}

.faq-search-v2{
  display:grid;
  grid-template-columns:44px minmax(0,1fr) 140px;
  align-items:center;
  gap:10px;
  max-width:760px;
  margin-top:34px;
  padding:10px;
  border:1px solid rgba(255,255,255,.20);
  border-radius:24px;
  background:#fff;
  box-shadow:0 24px 60px rgba(0,0,0,.16);
}

.faq-search-v2 i{
  color:#004f43;
  text-align:center;
}

.faq-search-v2 input{
  width:100%;
  border:0;
  outline:0;
  color:#172438;
  font-weight:700;
}

.faq-search-v2 button{
  min-height:48px;
  border:0;
  border-radius:16px;
  background:#004f43;
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.faq-hero-card-v2{
  padding:34px;
  border-radius:36px;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.20);
  box-shadow:0 34px 80px rgba(0,0,0,.22);
  backdrop-filter:blur(22px);
}

.faq-hero-card-v2 span{
  width:70px;
  height:70px;
  display:grid;
  place-items:center;
  margin-bottom:22px;
  border-radius:24px;
  background:#fff;
  color:#004f43;
  font-size:28px;
}

.faq-hero-card-v2 strong{
  display:block;
  font-size:58px;
  line-height:1;
  font-weight:900;
  letter-spacing:-2px;
}

.faq-hero-card-v2 p{
  margin:12px 0 0;
  color:rgba(255,255,255,.76);
  line-height:1.65;
  font-weight:700;
}

.faq-tabs-wrap-v2{
  position:relative;
  z-index:3;
  margin-top:40px;
}

.faq-tabs-v2{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
  padding:16px;
  border-radius:30px;
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 24px 70px rgba(15,31,50,.10);
}

.faq-tabs-v2 a{
  min-height:66px;
  display:grid;
  grid-template-columns:38px minmax(0,1fr) auto;
  align-items:center;
  gap:10px;
  padding:0 14px;
  border-radius:20px;
  background:#f8fafc;
  color:#344054;
  font-weight:900;
}

.faq-tabs-v2 a i{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#e9faf6;
  color:#004f43;
}

.faq-tabs-v2 a span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.faq-tabs-v2 a b{
  min-width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#fff;
  color:#004f43;
  font-size:12px;
}

.faq-tabs-v2 a.is-active{
  background:#004f43;
  color:#fff;
}

.faq-tabs-v2 a.is-active i,
.faq-tabs-v2 a.is-active b{
  background:#fff;
  color:#004f43;
}

.faq-layout-v2{
  display:grid;
  grid-template-columns:360px minmax(0,1fr);
  gap:30px;
  align-items:start;
  padding:50px 0 0;
}

.faq-aside-v2{
  display:grid;
  gap:20px;
  position:sticky;
  top:92px;
}

.faq-aside-card-v2{
  padding:28px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:30px;
  background:#fff;
  box-shadow:0 18px 55px rgba(15,31,50,.08);
}

.faq-aside-card-v2 > span{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  margin-bottom:18px;
  border-radius:20px;
  background:#004f43;
  color:#fff;
  font-size:22px;
}

.faq-aside-card-v2 h2{
  margin:0 0 10px;
  color:#101828;
  font-size:24px;
  line-height:1.18;
  font-weight:900;
}

.faq-aside-card-v2 p{
  margin:0;
  color:#667085;
  line-height:1.65;
  font-weight:600;
}

.faq-quick-links-v2{
  display:grid;
  gap:10px;
  margin-top:22px;
}

.faq-quick-links-v2 a{
  min-height:46px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 13px;
  border-radius:16px;
  background:#f8fafc;
  color:#344054;
  font-weight:900;
}

.faq-quick-links-v2 a i{
  color:#004f43;
}

.faq-aside-card-v2.is-dark-v2{
  background:#004f43;
  color:#fff;
}

.faq-aside-card-v2.is-dark-v2 > span{
  background:#fff;
  color:#004f43;
}

.faq-aside-card-v2.is-dark-v2 h2{
  color:#fff;
}

.faq-aside-card-v2.is-dark-v2 p{
  color:rgba(255,255,255,.76);
}

.faq-aside-card-v2.is-dark-v2 a{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:22px;
  padding:0 18px;
  border-radius:17px;
  background:#fff;
  color:#004f43;
  font-weight:900;
}

.faq-content-v2{
  min-width:0;
}

.faq-content-head-v2{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}

.faq-content-head-v2 span{
  color:#004f43;
  font-weight:900;
}

.faq-content-head-v2 h2{
  margin:8px 0 0;
  color:#101828;
  font-size:38px;
  line-height:1.12;
  letter-spacing:-.9px;
  font-weight:900;
}

.faq-content-head-v2 p{
  margin:0;
  color:#667085;
  font-weight:800;
}

.faq-content-head-v2 p b{
  color:#004f43;
}

.faq-items-v2{
  display:grid;
  gap:14px;
}

.faq-item-v2{
  border:1px solid rgba(15,23,42,.08);
  border-radius:24px;
  background:#fff;
  box-shadow:0 16px 42px rgba(15,31,50,.065);
  overflow:hidden;
}

.faq-item-v2 summary{
  list-style:none;
  display:grid;
  grid-template-columns:54px minmax(0,1fr) 42px;
  gap:16px;
  align-items:center;
  min-height:86px;
  padding:18px 20px;
  cursor:pointer;
}

.faq-item-v2 summary::-webkit-details-marker{
  display:none;
}

.faq-item-icon-v2{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:#e9faf6;
  color:#004f43;
  font-size:20px;
}

.faq-item-title-v2{
  color:#101828;
  font-size:18px;
  line-height:1.38;
  font-weight:900;
}

.faq-item-title-v2 b{
  display:block;
  margin-bottom:5px;
  color:#004f43;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.faq-item-v2 summary em{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:#f2f6f5;
  color:#004f43;
  font-style:normal;
  transition:transform .18s ease;
}

.faq-item-v2[open] summary em{
  transform:rotate(180deg);
}

.faq-answer-v2{
  padding:0 26px 26px 90px;
  color:#475467;
  font-size:15px;
  line-height:1.8;
  font-weight:600;
}

.faq-empty-v2{
  padding:56px;
  border-radius:30px;
  background:#fff;
  text-align:center;
  box-shadow:0 18px 55px rgba(15,31,50,.08);
}

.faq-empty-v2 > span{
  width:76px;
  height:76px;
  display:grid;
  place-items:center;
  margin:0 auto 22px;
  border-radius:26px;
  background:#e9faf6;
  color:#004f43;
  font-size:30px;
}

.faq-empty-v2 h3{
  margin:0 0 10px;
  font-size:30px;
  font-weight:900;
}

.faq-empty-v2 p{
  margin:0;
  color:#667085;
  font-weight:700;
}

.faq-empty-v2 a{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  margin-top:20px;
  padding:0 20px;
  border-radius:16px;
  background:#004f43;
  color:#fff;
  font-weight:900;
}

.faq-final-cta-v2{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-top:70px;
  margin-bottom:76px;
  padding:44px;
  border-radius:36px;
  background:
    linear-gradient(135deg, rgba(0,79,67,.98), rgba(0,63,54,.96)),
    radial-gradient(circle at 90% 20%, rgba(45,212,191,.28), transparent 34%);
  color:#fff;
  box-shadow:0 28px 80px rgba(0,79,67,.20);
}

.faq-final-cta-v2 span{
  color:#bff9f0;
  font-weight:900;
}

.faq-final-cta-v2 h2{
  margin:10px 0 10px;
  font-size:36px;
  line-height:1.12;
  letter-spacing:-.9px;
  font-weight:900;
}

.faq-final-cta-v2 p{
  margin:0;
  color:rgba(255,255,255,.76);
  font-weight:700;
  line-height:1.65;
}

.faq-final-cta-v2 a{
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 22px;
  border-radius:18px;
  background:#fff;
  color:#004f43;
  font-weight:900;
  white-space:nowrap;
}

@media(max-width:1180px){
  .faq-hero-grid-v2,
  .faq-layout-v2{
    grid-template-columns:1fr;
  }

  .faq-aside-v2{
    position:static;
    grid-template-columns:1fr 1fr;
  }

  .faq-tabs-v2{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .faq-final-cta-v2{
    display:grid;
  }
}

@media(max-width:760px){
  .faq-hero-v2{
    padding:156px 0 52px;
  }

  .faq-hero-copy-v2 h1{
    font-size:36px;
    letter-spacing:-1px;
  }

  .faq-hero-copy-v2 p{
    font-size:16px;
  }

  .faq-search-v2{
    grid-template-columns:38px minmax(0,1fr);
  }

  .faq-search-v2 button{
    grid-column:1 / -1;
    width:100%;
  }

  .faq-tabs-v2,
  .faq-aside-v2{
    grid-template-columns:1fr;
  }

  .faq-layout-v2{
    padding-top:34px;
  }

  .faq-content-head-v2{
    display:grid;
  }

  .faq-content-head-v2 h2{
    font-size:30px;
  }

  .faq-item-v2 summary{
    grid-template-columns:44px minmax(0,1fr) 34px;
    gap:12px;
    padding:16px;
  }

  .faq-item-icon-v2{
    width:44px;
    height:44px;
    border-radius:15px;
    font-size:17px;
  }

  .faq-item-title-v2{
    font-size:16px;
  }

  .faq-item-v2 summary em{
    width:34px;
    height:34px;
  }

  .faq-answer-v2{
    padding:0 18px 22px 72px;
  }

  .faq-final-cta-v2{
    padding:28px;
    border-radius:26px;
    margin-top:48px;
    margin-bottom:50px;
  }

  .faq-final-cta-v2 h2{
    font-size:28px;
  }

  .faq-final-cta-v2 a{
    width:100%;
  }
}

.salary-currency-v2{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:10px !important;
  width:100% !important;
}

.salary-currency-v2 label{
  position:relative !important;
  display:block !important;
  min-width:0 !important;
  cursor:pointer !important;
}

.salary-currency-v2 input{
  position:absolute !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.salary-currency-v2 span{
  width:100% !important;
  height:44px !important;
  display:grid !important;
  place-items:center !important;
  border:1px solid #e5e7eb !important;
  border-radius:999px !important;
  background:#fff !important;
  color:#64748b !important;
  font-size:14px !important;
  line-height:1 !important;
  font-weight:900 !important;
  white-space:nowrap !important;
  overflow:hidden !important;
  text-overflow:ellipsis !important;
  transition:.16s ease !important;
}

.salary-currency-v2 input:checked + span{
  border-color:#006b5e !important;
  background:#eaf8f5 !important;
  color:#004f43 !important;
  box-shadow:0 8px 18px rgba(0,79,67,.10) !important;
}

.salary-rate-note-v2{
  margin:2px 0 14px !important;
  color:#667085 !important;
  font-size:12px !important;
  line-height:1.45 !important;
  font-weight:700 !important;
}

.salary-presets-v2 button{
  transition:.16s ease !important;
}

.salary-presets-v2 button.is-active{
  border-color:#006b5e !important;
  background:#eaf8f5 !important;
  color:#004f43 !important;
  box-shadow:0 8px 18px rgba(0,79,67,.10) !important;
}

@media (max-width:760px){
  .salary-currency-v2{
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:8px !important;
  }

  .salary-currency-v2 span{
    height:40px !important;
    font-size:13px !important;
  }

  .salary-presets-v2{
    display:flex !important;
    flex-wrap:wrap !important;
    gap:8px !important;
  }

  .salary-presets-v2 button{
    min-height:38px !important;
    padding:0 12px !important;
    font-size:13px !important;
    line-height:1 !important;
    white-space:nowrap !important;
  }

  .salary-rate-note-v2{
    font-size:11px !important;
  }
}

@media (max-width:380px){
  .salary-currency-v2 span{
    height:38px !important;
    font-size:12px !important;
  }

  .salary-presets-v2 button{
    font-size:12px !important;
    padding:0 10px !important;
  }
}

/* ==========================================================
   Notifications badge/count final fix
   ========================================================== */

.header-notify-wrap{
  position:relative !important;
  display:inline-flex !important;
  align-items:center !important;
}

.header-notify-btn{
  position:relative !important;
}

.notify-dot,
[data-notification-count],
[data-notify-count]{
  position:absolute !important;
  top:-7px !important;
  right:-7px !important;
  z-index:5 !important;

  min-width:20px !important;
  height:20px !important;
  padding:0 6px !important;

  display:grid !important;
  place-items:center !important;

  border-radius:999px !important;
  background:#ef4444 !important;
  color:#fff !important;
  border:2px solid #fff !important;

  font-size:11px !important;
  line-height:1 !important;
  font-weight:900 !important;

  box-shadow:0 8px 18px rgba(239,68,68,.28) !important;
  pointer-events:none !important;
}

.notify-dot[hidden],
[data-notification-count][hidden],
[data-notify-count][hidden]{
  display:none !important;
}

.header-notify-btn.has-unread{
  color:#004f43 !important;
  background:#ecfdf7 !important;
}

.header-notify-dropdown{
  position:absolute !important;
  right:0 !important;
  top:calc(100% + 10px) !important;
  z-index:130 !important;

  width:min(438px, calc(100vw - 24px)) !important;
  max-height:520px !important;
  overflow:auto !important;

  background:#fff !important;
  border:1px solid #e5e7eb !important;
  border-radius:0 0 22px 22px !important;
  box-shadow:0 22px 70px rgba(15,23,42,.18) !important;
}

.header-notify-dropdown[hidden]{
  display:none !important;
}

.notify-drop-empty{
  padding:24px 0 !important;
  text-align:center !important;
  color:#667085 !important;
}

.jp-notify-list-v11 article.is-read{
  opacity:.72 !important;
  background:#fff !important;
}

.jp-notify-list-v11 article.is-unread{
  opacity:1 !important;
  border-color:rgba(0,79,67,.28) !important;
  background:#f0fdfa !important;
}

@media (max-width:760px){
  .notify-dot,
  [data-notification-count],
  [data-notify-count]{
    min-width:18px !important;
    height:18px !important;
    top:-5px !important;
    right:-5px !important;
    font-size:10px !important;
  }

  .header-notify-dropdown{
    right:-86px !important;
    width:calc(100vw - 24px) !important;
    max-height:70dvh !important;
  }
}

/* ==========================================================
   Notifications unread filter hard hide fix
   ========================================================== */

.jp-notify-list [data-notify-item][hidden],
.jp-notify-list-v11 [data-notify-item][hidden],
.jp-notify-list [data-notify-item].is-filter-hidden,
.jp-notify-list-v11 [data-notify-item].is-filter-hidden{
  display:none !important;
}

.notify-drop-item[hidden],
.notify-drop-item.is-filter-hidden{
  display:none !important;
}

/* ===== Resume create direct form fix ===== */
[data-jp-section="create-resume"] [data-resume-start]{
  display:none !important;
  visibility:hidden !important;
  opacity:0 !important;
  pointer-events:none !important;
}

[data-jp-section="create-resume"] [data-resume-builder]{
  display:block !important;
}

[data-jp-section="create-resume"] [data-resume-builder][hidden]{
  display:block !important;
}

/* ===== Support success fullscreen modal v1 ===== */
body.support-done-modal-open {
  overflow: hidden;
}

.support-done-modal-v2 {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 79, 67, .22), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(37, 99, 235, .20), transparent 34%),
    rgba(7, 16, 28, .78);
  backdrop-filter: blur(16px);
}

.support-done-modal-v2[hidden] {
  display: none !important;
}

.support-done-card-v2 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 76px 22px;
}

.support-done-close-v2 {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .96);
  color: #111827;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
  transition: .18s ease;
}

.support-done-close-v2:hover {
  transform: translateY(-1px);
  background: #fff;
}

.support-done-content-v2 {
  width: min(760px, 100%);
  border-radius: 36px;
  background: #fff;
  padding: 46px;
  text-align: center;
  box-shadow: 0 34px 100px rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .75);
}

.support-done-icon-v2 {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  border-radius: 32px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #004f43, #087466);
  color: #fff;
  font-size: 38px;
  box-shadow: 0 20px 44px rgba(0, 79, 67, .24);
}

.support-done-badge-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.support-done-content-v2 h2 {
  margin: 20px 0 14px;
  color: #101827;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -1.2px;
  font-weight: 950;
}

.support-done-content-v2 p {
  width: min(580px, 100%);
  margin: 0 auto;
  color: #64748b;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 600;
}

.support-done-meta-v2 {
  margin: 26px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.support-done-meta-v2[hidden] {
  display: none !important;
}

.support-done-meta-v2 span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border-radius: 999px;
  background: #f8fafc;
  color: #334155;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 800;
}

.support-done-meta-v2 i {
  color: #004f43;
}

.support-done-main-btn-v2 {
  margin-top: 32px;
  min-width: 190px;
  height: 58px;
  border: 0;
  border-radius: 18px;
  background: #004f43;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 79, 67, .22);
  transition: .18s ease;
}

.support-done-main-btn-v2:hover {
  background: #003f36;
  transform: translateY(-1px);
}

@media (max-width: 680px) {
  .support-done-card-v2 {
    padding: 72px 16px 26px;
  }

  .support-done-close-v2 {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 21px;
  }

  .support-done-content-v2 {
    border-radius: 28px;
    padding: 34px 20px;
  }

  .support-done-icon-v2 {
    width: 76px;
    height: 76px;
    border-radius: 26px;
    font-size: 31px;
  }

  .support-done-content-v2 h2 {
    font-size: 30px;
  }

  .support-done-content-v2 p {
    font-size: 15px;
  }

  .support-done-main-btn-v2 {
    width: 100%;
  }
}

.salary-convert-v2{
  display:grid !important;
  gap:4px !important;
  padding:12px 14px !important;
  border:1px solid #d8eee9 !important;
  border-radius:16px !important;
  background:linear-gradient(180deg, #f2fbf8 0%, #ffffff 100%) !important;
  color:#004f43 !important;
  box-shadow:0 10px 24px rgba(0,79,67,.06) !important;
}

.salary-convert-v2[hidden]{
  display:none !important;
}

.salary-convert-v2 b{
  display:block !important;
  color:#004f43 !important;
  font-size:13px !important;
  line-height:1.35 !important;
  font-weight:900 !important;
}

.salary-convert-v2 span{
  display:block !important;
  color:#667085 !important;
  font-size:12px !important;
  line-height:1.35 !important;
  font-weight:700 !important;
}

@media (max-width:760px){
  .salary-convert-v2{
    padding:11px 12px !important;
    border-radius:14px !important;
  }

  .salary-convert-v2 b{
    font-size:12px !important;
  }

  .salary-convert-v2 span{
    font-size:11px !important;
  }
}



/* ==========================================================
   Jobseeker Profile Dashboard v20 — modern responsive UI
   Applies to: /jobs#resume, #personal, #responses, #notifications, #create-resume
   ========================================================== */

.route-jobs .jp-shell-v20,
.jp-shell-v20{
  --jp-v20-green:#004f43;
  --jp-v20-green-2:#057260;
  --jp-v20-dark:#0f172a;
  --jp-v20-text:#1e293b;
  --jp-v20-muted:#64748b;
  --jp-v20-soft:#f6f8fb;
  --jp-v20-line:rgba(15,23,42,.09);
  --jp-v20-card:#ffffff;
  --jp-v20-shadow:0 24px 70px rgba(15,23,42,.08);
  --jp-v20-shadow-soft:0 14px 38px rgba(15,23,42,.06);

  background:
    radial-gradient(circle at 10% 0%, rgba(0,79,67,.10), transparent 32%),
    radial-gradient(circle at 90% 12%, rgba(69,201,198,.14), transparent 30%),
    linear-gradient(180deg,#f8fafc 0%,#f3f6f8 100%) !important;
  padding:110px 0 90px !important;
  min-height:100vh !important;
  color:var(--jp-v20-text) !important;
}

.jp-container-v20{
  width:min(1240px, calc(100% - 48px)) !important;
  max-width:1240px !important;
}

.jp-profile-hero-v20{
  position:relative !important;
  overflow:hidden !important;
  display:grid !important;
  grid-template-columns:minmax(0, 1fr) 390px !important;
  gap:28px !important;
  align-items:stretch !important;
  margin:0 0 22px !important;
  padding:34px !important;
  border:1px solid rgba(255,255,255,.75) !important;
  border-radius:34px !important;
  background:
    linear-gradient(135deg, rgba(0,79,67,.96), rgba(4,97,83,.92)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 34%) !important;
  color:#fff !important;
  box-shadow:0 26px 80px rgba(0,79,67,.22) !important;
}

.jp-profile-hero-v20:before{
  content:"" !important;
  position:absolute !important;
  right:-80px !important;
  top:-90px !important;
  width:280px !important;
  height:280px !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.12) !important;
}

.jp-profile-hero-v20:after{
  content:"" !important;
  position:absolute !important;
  right:160px !important;
  bottom:-120px !important;
  width:220px !important;
  height:220px !important;
  border-radius:999px !important;
  background:rgba(69,201,198,.22) !important;
}

.jp-profile-hero-main-v20,
.jp-profile-stats-v20{
  position:relative !important;
  z-index:2 !important;
}

.jp-profile-return-v20{
  width:max-content !important;
  display:inline-flex !important;
  align-items:center !important;
  gap:9px !important;
  margin:0 0 24px !important;
  padding:10px 14px !important;
  border:1px solid rgba(255,255,255,.24) !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.12) !important;
  color:#fff !important;
  font-size:14px !important;
  font-weight:800 !important;
  backdrop-filter:blur(12px) !important;
}

.jp-profile-kicker-v20{
  display:inline-flex !important;
  align-items:center !important;
  gap:8px !important;
  margin:0 0 14px !important;
  color:rgba(255,255,255,.78) !important;
  font-size:13px !important;
  font-weight:900 !important;
  letter-spacing:.08em !important;
  text-transform:uppercase !important;
}

.jp-shell-v20 .jp-profile-hero-main-v20 h1{
  margin:0 !important;
  color:#fff !important;
  font-size:42px !important;
  line-height:1.08 !important;
  letter-spacing:-1.2px !important;
  font-weight:950 !important;
}

.jp-profile-hero-main-v20 p{
  max-width:680px !important;
  margin:16px 0 0 !important;
  color:rgba(255,255,255,.82) !important;
  font-size:16px !important;
  line-height:1.65 !important;
  font-weight:600 !important;
}

.jp-profile-stats-v20{
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:12px !important;
}

.jp-profile-stats-v20 div{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:18px !important;
  min-height:82px !important;
  padding:18px 20px !important;
  border:1px solid rgba(255,255,255,.20) !important;
  border-radius:24px !important;
  background:rgba(255,255,255,.12) !important;
  backdrop-filter:blur(14px) !important;
}

.jp-profile-stats-v20 b{
  color:#fff !important;
  font-size:32px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.jp-profile-stats-v20 span{
  color:rgba(255,255,255,.78) !important;
  font-size:14px !important;
  line-height:1.3 !important;
  font-weight:800 !important;
  text-align:right !important;
}

/* Modern tabs */
.jp-shell-v20 .jp-tabs-v20{
  top:82px !important;
  z-index:30 !important;
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:14px !important;
  margin:0 0 22px !important;
  padding:10px !important;
  border:1px solid rgba(15,23,42,.07) !important;
  border-radius:28px !important;
  background:rgba(255,255,255,.82) !important;
  backdrop-filter:blur(18px) !important;
  box-shadow:0 18px 45px rgba(15,23,42,.06) !important;
  overflow:visible !important;
}

.jp-tabs-v20 a{
  min-width:0 !important;
  min-height:78px !important;
  display:grid !important;
  grid-template-columns:44px minmax(0, 1fr) auto !important;
  align-items:center !important;
  gap:12px !important;
  padding:14px !important;
  border:1px solid transparent !important;
  border-radius:22px !important;
  color:#334155 !important;
  background:transparent !important;
  transition:.18s ease !important;
}

.jp-tabs-v20 a:hover{
  background:#f8fafc !important;
  border-color:rgba(15,23,42,.07) !important;
}

.jp-tabs-v20 a.is-active{
  color:var(--jp-v20-green) !important;
  background:#ecfdf7 !important;
  border:1px solid rgba(0,79,67,.16) !important;
  box-shadow:0 12px 28px rgba(0,79,67,.08) !important;
}

.jp-tabs-v20 a > i{
  width:44px !important;
  height:44px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:16px !important;
  background:#f1f5f9 !important;
  color:#475569 !important;
  font-size:18px !important;
}

.jp-tabs-v20 a.is-active > i{
  background:var(--jp-v20-green) !important;
  color:#fff !important;
}

.jp-tabs-v20 a span{
  min-width:0 !important;
  display:grid !important;
  gap:3px !important;
  font-size:15px !important;
  line-height:1.15 !important;
  font-weight:950 !important;
}

.jp-tabs-v20 a small{
  overflow:hidden !important;
  color:#94a3b8 !important;
  font-size:12px !important;
  line-height:1.2 !important;
  font-weight:700 !important;
  text-overflow:ellipsis !important;
  white-space:nowrap !important;
}

.jp-tabs-v20 a b{
  min-width:26px !important;
  height:26px !important;
  display:grid !important;
  place-items:center !important;
  padding:0 8px !important;
  border-radius:999px !important;
  background:#e2e8f0 !important;
  color:#475569 !important;
  font-size:12px !important;
  font-weight:950 !important;
}

.jp-tabs-v20 a.is-active b{
  background:var(--jp-v20-green) !important;
  color:#fff !important;
}

/* Section animation */
.jp-shell-v20 .jp-section.is-active{
  animation:jpSectionInV20 .22s ease both !important;
}

@keyframes jpSectionInV20{
  from{opacity:0;transform:translateY(8px)}
  to{opacity:1;transform:translateY(0)}
}

/* Cards */
.jp-shell-v20 .jp-card,
.jp-shell-v20 .resume-form-card,
.jp-shell-v20 .jp-notify-main-v11{
 
  background:rgba(255,255,255,.94) !important;
  box-shadow:var(--jp-v20-shadow-soft) !important;
}

.jp-shell-v20 .jp-card{
  padding:28px !important;
  margin-bottom:20px !important;
}

.jp-shell-v20 .jp-card-head{
  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;
  gap:18px !important;
  margin-bottom:20px !important;
}

.jp-shell-v20 .jp-card h2,
.jp-shell-v20 .jp-card-head h2{
  margin:0 0 8px !important;
  color:var(--jp-v20-dark) !important;
  font-size:24px !important;
  line-height:1.18 !important;
  letter-spacing:-.3px !important;
  font-weight:950 !important;
}

.jp-shell-v20 .jp-card p{
  margin:0 !important;
  color:var(--jp-v20-muted) !important;
  font-size:15px !important;
  line-height:1.55 !important;
  font-weight:600 !important;
}

/* Buttons */
.jp-shell-v20 .jp-primary,
.jp-shell-v20 .jp-save,
.jp-shell-v20 .resume-btn-primary{
  min-height:48px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:9px !important;
  border:0 !important;
  border-radius:16px !important;
  background:linear-gradient(135deg,var(--jp-v20-green),var(--jp-v20-green-2)) !important;
  color:#fff !important;
  font-weight:950 !important;
  box-shadow:0 14px 28px rgba(0,79,67,.16) !important;
}

.jp-shell-v20 .jp-light-btn,
.jp-shell-v20 .resume-btn-light{
  min-height:48px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:9px !important;
  border:1px solid rgba(15,23,42,.07) !important;
  border-radius:16px !important;
  background:#f8fafc !important;
  color:var(--jp-v20-green) !important;
  font-weight:900 !important;
}

/* Resume list */
.jp-shell-v20 .jp-resume-list{
  display:grid !important;
  gap:16px !important;
  margin-top:18px !important;
}

.jp-shell-v20 .jp-resume-modern-item,
.jp-shell-v20 .jp-resume-item{
  display:grid !important;
  grid-template-columns:58px minmax(0, 1fr) auto !important;
  gap:16px !important;
  align-items:center !important;
  padding:18px !important;
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:24px !important;
  background:#fff !important;
  box-shadow:0 12px 30px rgba(15,23,42,.04) !important;
}

.jp-shell-v20 .jp-resume-modern-icon{
  width:58px !important;
  height:58px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:20px !important;
  background:#ecfdf7 !important;
  color:var(--jp-v20-green) !important;
  font-size:22px !important;
}

.jp-shell-v20 .jp-resume-modern-top{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  flex-wrap:wrap !important;
}

.jp-shell-v20 .jp-resume-modern-top h3,
.jp-shell-v20 .jp-resume-item h3{
  margin:0 !important;
  color:var(--jp-v20-dark) !important;
  font-size:18px !important;
  line-height:1.25 !important;
  font-weight:950 !important;
}

.jp-shell-v20 .jp-resume-modern-meta{
  display:flex !important;
  gap:10px !important;
  flex-wrap:wrap !important;
  margin-top:10px !important;
}

.jp-shell-v20 .jp-resume-modern-meta span{
  display:inline-flex !important;
  align-items:center !important;
  gap:7px !important;
  padding:7px 10px !important;
  border-radius:999px !important;
  background:#f1f5f9 !important;
  color:#475569 !important;
  font-size:12px !important;
  font-weight:800 !important;
}

.jp-shell-v20 .jp-resume-modern-actions{
  display:flex !important;
  gap:10px !important;
  flex-wrap:wrap !important;
  justify-content:flex-end !important;
}

.jp-shell-v20 .jp-resume-modern-actions button{
  min-height:42px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:14px !important;
  background:#f8fafc !important;
  color:#334155 !important;
  padding:0 14px !important;
  font-weight:900 !important;
  cursor:pointer !important;
}

.jp-shell-v20 .jp-resume-modern-actions button.is-primary{
  background:var(--jp-v20-green) !important;
  border-color:var(--jp-v20-green) !important;
  color:#fff !important;
}

/* Personal profile */
.jp-shell-v20 .jp-photo-form{
  display:grid !important;
  grid-template-columns:128px minmax(0, 1fr) !important;
  align-items:center !important;
  gap:24px !important;
}

.jp-shell-v20 .jp-avatar{
  width:128px !important;
  height:128px !important;
  border:3px solid rgba(0,79,67,.14) !important;
  box-shadow:0 18px 42px rgba(0,79,67,.10) !important;
}

.jp-shell-v20 .jp-form-grid{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:18px !important;
}

.jp-shell-v20 .jp-form-grid label{
  display:grid !important;
  gap:9px !important;
  color:#0f172a !important;
  font-size:14px !important;
  font-weight:900 !important;
}

.jp-shell-v20 .jp-form-grid input,
.jp-shell-v20 .jp-form-grid select,
.jp-shell-v20 .resume-form-card input,
.jp-shell-v20 .resume-form-card select,
.jp-shell-v20 .resume-form-card textarea{
  
  background:#fff !important;
  color:#0f172a !important;
  outline:0 !important;
  box-shadow:0 1px 0 rgba(15,23,42,.02) !important;
}

.jp-shell-v20 .jp-form-grid input,
.jp-shell-v20 .jp-form-grid select{
  height:56px !important;
  padding:0 15px !important;
}

/* Contacts */
.jp-shell-v20 .jp-contact-grid{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:16px !important;
}

.jp-shell-v20 .jp-contact-item{
  display:grid !important;
  grid-template-columns:54px minmax(0,1fr) auto !important;
  gap:14px !important;
  align-items:center !important;
  padding:18px !important;
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:22px !important;
  background:#fff !important;
}

.jp-shell-v20 .jp-contact-item>i{
  width:54px !important;
  height:54px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:18px !important;
  background:#f8fafc !important;
  font-size:25px !important;
}

/* Responses */
.jp-shell-v20 .jp-responses-card-v11{
  padding:28px !important;
}

.jp-shell-v20 .jp-responses-head-v11{
  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;
  gap:18px !important;
  margin-bottom:20px !important;
}

.jp-shell-v20 .jp-response-list-v11{
  display:grid !important;
  gap:16px !important;
}

.jp-shell-v20 .jp-response-item-v11{
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:24px !important;
  background:#fff !important;
  padding:20px !important;
  box-shadow:0 12px 30px rgba(15,23,42,.04) !important;
}

.jp-shell-v20 .jp-response-top-v11{
  display:flex !important;
  justify-content:space-between !important;
  gap:18px !important;
  align-items:flex-start !important;
}

.jp-shell-v20 .jp-response-top-v11 h3{
  margin:0 0 6px !important;
  color:var(--jp-v20-dark) !important;
  font-size:18px !important;
  font-weight:950 !important;
}

.jp-shell-v20 .jp-response-status-v11{
  white-space:nowrap !important;
  border-radius:999px !important;
  padding:8px 12px !important;
  font-size:12px !important;
  font-weight:950 !important;
}

/* Notifications */
.jp-shell-v20 .jp-notify-main-v11{
  padding:0 !important;
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

.jp-shell-v20 .jp-notify-top-v11{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:16px !important;
  margin:0 0 18px !important;
}

.jp-shell-v20 .jp-notify-tabs{
  display:flex !important;
  gap:10px !important;
  padding:8px !important;
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:20px !important;
  background:#fff !important;
  box-shadow:0 12px 28px rgba(15,23,42,.04) !important;
}

.jp-shell-v20 .jp-notify-tabs button{
  min-height:44px !important;
  padding:0 16px !important;
  border:0 !important;
  border-radius:14px !important;
  background:transparent !important;
  color:#64748b !important;
  font-weight:900 !important;
  cursor:pointer !important;
}

.jp-shell-v20 .jp-notify-tabs button.is-active{
  background:var(--jp-v20-green) !important;
  color:#fff !important;
}

.jp-shell-v20 .jp-notify-list-v11{
  padding:22px !important;
  border-radius:30px !important;
}

.jp-shell-v20 .jp-notify-list-v11 article{
  display:grid !important;
  grid-template-columns:44px minmax(0,1fr) !important;
  gap:14px !important;
  padding:18px !important;
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:22px !important;
  background:#fff !important;
}

.jp-shell-v20 .jp-notify-list-v11 article.is-unread{
  border-color:rgba(0,79,67,.22) !important;
  background:#f0fdfa !important;
}

/* Create resume */
.jp-create-top-v20{
  display:grid !important;
  grid-template-columns:auto minmax(0,1fr) !important;
  gap:18px !important;
  align-items:start !important;
  margin:0 0 22px !important;
  padding:24px !important;
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:30px !important;
  background:#fff !important;
  box-shadow:var(--jp-v20-shadow-soft) !important;
}

.jp-back-v20{
  min-height:46px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:9px !important;
  margin:0 !important;
  padding:0 16px !important;
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:999px !important;
  background:#f8fafc !important;
  color:var(--jp-v20-green) !important;
  font-weight:950 !important;
}

.jp-create-top-v20 span{
  display:block !important;
  margin:0 0 7px !important;
  color:var(--jp-v20-green) !important;
  font-size:13px !important;
  font-weight:950 !important;
  letter-spacing:.07em !important;
  text-transform:uppercase !important;
}

.jp-create-top-v20 h2{
  margin:0 0 8px !important;
  color:var(--jp-v20-dark) !important;
  font-size:30px !important;
  line-height:1.14 !important;
  font-weight:950 !important;
}

.jp-create-top-v20 p{
  margin:0 !important;
  color:var(--jp-v20-muted) !important;
  font-size:15px !important;
  line-height:1.6 !important;
  font-weight:600 !important;
}

.jp-shell-v20 .resume-builder{
  max-width:100% !important;
}

.jp-shell-v20 .resume-stepper{
  top:190px !important;
  z-index:20 !important;
  display:flex !important;
  justify-content:center !important;
  gap:18px !important;
  margin:0 0 22px !important;
  padding:12px !important;
  
  background:rgba(255,255,255,.86) !important;
  backdrop-filter:blur(16px) !important;
  box-shadow:0 12px 30px rgba(15,23,42,.05) !important;
  overflow:auto !important;
}

.jp-shell-v20 .resume-step-dot{
  min-width:108px !important;
  padding:10px !important;
  border-radius:18px !important;
}

.jp-shell-v20 .resume-step-dot.is-active{
  background:#ecfdf7 !important;
}

.jp-shell-v20 .resume-step-dot span{
  width:38px !important;
  height:38px !important;
}

.jp-shell-v20 .resume-step-title{
  margin:18px 0 22px !important;
  font-size:30px !important;
  color:var(--jp-v20-dark) !important;
}

/* Empty states */
.jp-shell-v20 .jp-empty-big{
  min-height:300px !important;
  border:1px dashed rgba(15,23,42,.13) !important;
  border-radius:28px !important;
  background:#fbfdff !important;
}

.jp-shell-v20 .jp-empty-big span{
  background:#eefaf6 !important;
  color:var(--jp-v20-green) !important;
}

/* Tablet */
@media (max-width:1100px){
  .jp-shell-v20{
    padding-top:96px !important;
  }

  .jp-profile-hero-v20{
    grid-template-columns:1fr !important;
  }

  .jp-profile-stats-v20{
    grid-template-columns:repeat(3, minmax(0,1fr)) !important;
  }

  .jp-profile-stats-v20 div{
    display:grid !important;
    justify-items:start !important;
    min-height:96px !important;
  }

  .jp-profile-stats-v20 span{
    text-align:left !important;
  }

  .jp-shell-v20 .jp-tabs-v20{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    top:76px !important;
  }

  .jp-shell-v20 .resume-stepper{
    top:170px !important;
    justify-content:flex-start !important;
  }
}

/* Mobile */
@media (max-width:760px){
  .jp-shell-v20{
    padding:86px 0 56px !important;
  }

  .jp-container-v20{
    width:calc(100% - 28px) !important;
  }

  .jp-profile-hero-v20{
    padding:22px !important;
    border-radius:26px !important;
    margin-bottom:16px !important;
  }

  .jp-shell-v20 .jp-profile-hero-main-v20 h1{
    font-size:31px !important;
    letter-spacing:-.8px !important;
  }

  .jp-profile-hero-main-v20 p{
    font-size:14px !important;
  }

  .jp-profile-stats-v20{
    grid-template-columns:1fr !important;
    gap:10px !important;
  }

  .jp-profile-stats-v20 div{
    min-height:auto !important;
    display:flex !important;
  }

  .jp-profile-stats-v20 b{
    font-size:26px !important;
  }

  .jp-shell-v20 .jp-tabs-v20{
    position:relative !important;
    top:auto !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
    padding:8px !important;
    border-radius:22px !important;
  }

  .jp-tabs-v20 a{
    min-height:64px !important;
    grid-template-columns:40px minmax(0,1fr) auto !important;
    border-radius:18px !important;
  }

  .jp-tabs-v20 a > i{
    width:40px !important;
    height:40px !important;
    border-radius:14px !important;
  }

  .jp-shell-v20 .jp-card,
  .jp-shell-v20 .resume-form-card,
  .jp-shell-v20 .jp-notify-list-v11{
    padding:20px !important;
    border-radius:24px !important;
  }

  .jp-shell-v20 .jp-card-head,
  .jp-shell-v20 .jp-responses-head-v11,
  .jp-shell-v20 .jp-notify-top-v11{
  }

  .jp-resume-head-actions{
    width:100% !important;
    display:grid !important;
    grid-template-columns:1fr !important;
  }

  .jp-resume-head-actions .jp-light-btn,
  .jp-resume-head-actions .jp-primary{
    width:100% !important;
  }

  .jp-shell-v20 .jp-resume-modern-item,
  .jp-shell-v20 .jp-resume-item{
    grid-template-columns:1fr !important;
    align-items:start !important;
  }

  .jp-shell-v20 .jp-resume-modern-actions{
    width:100% !important;
    display:grid !important;
    grid-template-columns:1fr !important;
  }

  .jp-shell-v20 .jp-resume-modern-actions button{
    width:100% !important;
  }

  .jp-shell-v20 .jp-photo-form{
    grid-template-columns:1fr !important;
    justify-items:center !important;
    text-align:center !important;
  }

  .jp-shell-v20 .jp-photo-actions{
    width:100% !important;
    display:grid !important;
  }

  .jp-shell-v20 .jp-form-grid,
  .jp-shell-v20 .jp-contact-grid{
    grid-template-columns:1fr !important;
  }

  .jp-shell-v20 .jp-contact-item{
    grid-template-columns:48px minmax(0,1fr) !important;
  }

  .jp-shell-v20 .jp-contact-item button{
    grid-column:1/-1 !important;
    width:100% !important;
    min-height:42px !important;
    border-radius:14px !important;
    background:#f8fafc !important;
  }

  .jp-shell-v20 .jp-response-top-v11{
    display:grid !important;
  }

  .jp-shell-v20 .jp-response-status-v11{
    width:max-content !important;
  }

  .jp-shell-v20 .jp-notify-tabs{
    width:100% !important;
    display:grid !important;
    grid-template-columns:1fr !important;
  }

  .jp-shell-v20 .jp-notify-list-v11 article{
    grid-template-columns:1fr !important;
  }

  .jp-create-top-v20{
    grid-template-columns:1fr !important;
    padding:20px !important;
    border-radius:24px !important;
  }

  .jp-back-v20{
    width:max-content !important;
  }

  .jp-create-top-v20 h2{
    font-size:25px !important;
  }

  .jp-shell-v20 .resume-stepper{
    position:relative !important;
    top:auto !important;
    justify-content:flex-start !important;
    margin-bottom:18px !important;
  }

  .jp-shell-v20 .resume-step-dot{
    min-width:92px !important;
  }

  .jp-shell-v20 .resume-step-dot b{
    font-size:12px !important;
  }

  .jp-shell-v20 .resume-builder-actions{
    display:grid !important;
    grid-template-columns:1fr !important;
  }

  .jp-shell-v20 .resume-btn{
    width:100% !important;
    min-width:0 !important;
  }
}

/* Small phones */
@media (max-width:430px){
  .jp-container-v20{
    width:calc(100% - 20px) !important;
  }

  .jp-profile-hero-v20{
    padding:18px !important;
    border-radius:22px !important;
  }

  .jp-shell-v20 .jp-profile-hero-main-v20 h1{
    font-size:27px !important;
  }

  .jp-profile-return-v20{
    width:100% !important;
    justify-content:center !important;
  }

  .jp-tabs-v20 a{
    grid-template-columns:38px minmax(0,1fr) auto !important;
    padding:12px !important;
  }

  .jp-tabs-v20 a small{
    display:none !important;
  }

  .jp-shell-v20 .jp-card,
  .jp-shell-v20 .resume-form-card,
  .jp-shell-v20 .jp-notify-list-v11{
    padding:16px !important;
    border-radius:20px !important;
  }
}

/* ==========================================================
   HandyMens Global Responsive Typography Final Patch v21
   Maqsad: barcha qurilmalarda o‘qiladigan shriftlar
   ========================================================== */

:root{
  --hm-fs-xxs:clamp(12px, .72vw, 13px);
  --hm-fs-xs:clamp(13px, .82vw, 14px);
  --hm-fs-sm:clamp(14px, .92vw, 15px);
  --hm-fs-md:clamp(15px, 1vw, 16px);
  --hm-fs-lg:clamp(17px, 1.15vw, 19px);
  --hm-fs-xl:clamp(22px, 2.2vw, 34px);
  --hm-fs-2xl:clamp(28px, 4.2vw, 54px);
  --hm-fs-hero:clamp(34px, 5vw, 64px);
}

/* Base text */
body{
  font-size:var(--hm-fs-md) !important;
  line-height:1.5 !important;
}

p,
li,
label,
input,
select,
textarea,
button,
a{
  line-height:1.45;
}

/* Header */
.main-nav a,
.header-actions .btn,
.lang-select,
.lang-select .lang-toggle,
.header-user-dropdown a,
.header-user-logout{
  font-size:clamp(13px, .9vw, 15px) !important;
}

.brand-text{
  font-size:clamp(20px, 2vw, 34px) !important;
}

/* Home hero */
.hero h1,
.hero-modern-v2 h1{
  font-size:var(--hm-fs-hero) !important;
  line-height:1.08 !important;
}

.hero-subtitle,
.hero-modern-v2 .hero-subtitle{
  font-size:clamp(14px, 1.1vw, 17px) !important;
  line-height:1.55 !important;
}

.search-field input,
.search-field select,
.search-submit,
.hero-search-modern input,
.hero-search-modern select,
.hero-search-modern button{
  font-size:clamp(14px, 1vw, 16px) !important;
}

.field-caption,
.city-picker-toggle .field-caption{
  font-size:clamp(12px, .85vw, 13px) !important;
}

.stat-item strong,
.hero-stats-modern .stat-item strong{
  font-size:clamp(22px, 2.3vw, 34px) !important;
}

.stat-item span,
.hero-stats-modern .stat-item span{
  font-size:clamp(12px, .95vw, 15px) !important;
  line-height:1.25 !important;
}

/* Section titles */
.section-head h2,
.professions-section h2,
.categories-section h2,
.subscribe-section h2,
.emp-steps h2,
.emp-save h2,
.emp-do h2,
.emp-pricing h2,
.emp-reviews h2,
.emp-trust h2,
.emp-faq h2,
.home-section-copy h2,
.jobs-modern-head h2,
.professions-head h2{
  font-size:var(--hm-fs-xl) !important;
  line-height:1.18 !important;
}

/* Badges and small text — hech qachon 12px dan past tushmasin */
.home-section-badge,
.professions-head span,
.section-eyebrow,
.emp-create-badge-v10,
.salary-rate-note-v2,
.salary-convert-v2 span,
.notify-dot,
[data-notification-count],
[data-notify-count]{
  font-size:var(--hm-fs-xxs) !important;
  line-height:1.25 !important;
}

/* Vacancy cards */
.vacancy-card h3,
.jobs-card-title-v3,
.route-jobs .jobs-card-title-v3{
  font-size:clamp(16px, 1.25vw, 21px) !important;
  line-height:1.35 !important;
}

.salary,
.jobs-card-salary-v3,
.route-jobs .jobs-card-salary-v3,
.jobs-card-salary-v3 strong,
.route-jobs .jobs-card-salary-v3 strong{
  font-size:clamp(15px, 1.1vw, 20px) !important;
  line-height:1.25 !important;
}

.source,
.jobs-card-meta-v3,
.jobs-card-chips-v3 span,
.route-jobs .jobs-card-chips-v3 span{
  font-size:clamp(13px, .95vw, 15px) !important;
  line-height:1.35 !important;
}

/* Profession/category/social cards */
.profession-column a,
.profession-name,
.category-card strong,
.category-card-modern strong,
.social-text strong,
.dream-social-text strong{
  font-size:clamp(15px, 1vw, 18px) !important;
  line-height:1.35 !important;
}

.profession-column b,
.profession-pill b,
.cat-count,
.category-open,
.social-text em,
.dream-social-text small,
.dream-social-text em,
.dream-social-action{
  font-size:clamp(12px, .9vw, 14px) !important;
  line-height:1.35 !important;
}

/* Footer */
.footer-brand p,
.footer-col a,
.footer-copy,
.footer-socials a,
.emp-footer-links a{
  font-size:clamp(14px, 1vw, 17px) !important;
  line-height:1.45 !important;
}

.footer-col h4{
  font-size:clamp(16px, 1.1vw, 18px) !important;
}

/* Auth/modal */
.auth-choice-title,
.auth-modal-card h2,
.modal-card h2{
  font-size:clamp(22px, 2vw, 28px) !important;
  line-height:1.2 !important;
}

.auth-form label,
.auth-message,
.auth-subtitle{
  font-size:var(--hm-fs-sm) !important;
}

.auth-form input,
.auth-form select,
.auth-form input[type="file"],
.auth-role-btn,
.auth-main-btn,
.auth-submit{
  font-size:var(--hm-fs-md) !important;
}

/* Jobs filter */
.jobs-filter-title,
.filter-title,
.salary-filter-v2 h3{
  font-size:clamp(16px, 1.1vw, 18px) !important;
}

.jobs-filter label,
.jobs-filter input,
.jobs-filter select,
.salary-currency-v2 span,
.salary-inputs-v2 small,
.salary-inputs-v2 input,
.salary-presets-v2 button{
  font-size:clamp(13px, .95vw, 15px) !important;
}

.salary-convert-v2 b{
  font-size:clamp(13px, .95vw, 15px) !important;
}

/* Jobseeker profile v20 */
.jp-shell-v20 .jp-profile-hero-main-v20 h1{
  font-size:clamp(30px, 4.2vw, 42px) !important;
}

.jp-profile-hero-main-v20 p,
.jp-shell-v20 .jp-card p,
.jp-create-top-v20 p{
  font-size:clamp(14px, 1vw, 16px) !important;
  line-height:1.6 !important;
}

.jp-tabs-v20 a span,
.jp-shell-v20 .jp-card h2,
.jp-shell-v20 .jp-card-head h2,
.jp-create-top-v20 h2{
  line-height:1.22 !important;
}

.jp-tabs-v20 a span{
  font-size:clamp(14px, 1vw, 16px) !important;
}

.jp-tabs-v20 a small{
  font-size:var(--hm-fs-xxs) !important;
}

.jp-shell-v20 .jp-card h2,
.jp-shell-v20 .jp-card-head h2{
  font-size:clamp(22px, 2vw, 26px) !important;
}

.jp-shell-v20 .jp-form-grid label,
.jp-shell-v20 .jp-form-grid input,
.jp-shell-v20 .jp-form-grid select,
.jp-shell-v20 .resume-form-card input,
.jp-shell-v20 .resume-form-card select,
.jp-shell-v20 .resume-form-card textarea{
  font-size:var(--hm-fs-md) !important;
}

.jp-shell-v20 .jp-resume-modern-top h3,
.jp-shell-v20 .jp-resume-item h3,
.jp-shell-v20 .jp-response-top-v11 h3{
  font-size:clamp(17px, 1.2vw, 20px) !important;
}

.jp-shell-v20 .jp-resume-modern-meta span,
.jp-shell-v20 .jp-response-status-v11,
.jp-shell-v20 .jp-notify-tabs button{
  font-size:var(--hm-fs-xs) !important;
}

/* Employer landing */
.emp-hero-copy h1,
.emp-final h2{
  font-size:clamp(34px, 4.8vw, 62px) !important;
  line-height:1.12 !important;
}

.emp-hero-copy p,
.emp-create p,
.emp-live-grid p,
.emp-step-list p,
.emp-final p{
  font-size:clamp(15px, 1.05vw, 18px) !important;
  line-height:1.5 !important;
}

.emp-badges span,
.emp-primary-btn,
.emp-create-form input,
.emp-select select,
.emp-create-form button,
.emp-tags span{
  font-size:clamp(14px, 1vw, 17px) !important;
}

/* Employer create v10 */
.emp-create-v10-copy h2{
  font-size:clamp(28px, 3.6vw, 46px) !important;
}

.emp-create-v10-copy p,
.emp-create-benefits-v10 span,
.emp-create-field-v10 input,
.emp-create-field-v10 select,
.emp-create-submit-v10{
  font-size:clamp(14px, 1vw, 16px) !important;
}

.emp-create-field-v10 span,
.emp-create-note-v10,
.emp-tags-v10 b,
.emp-tags-v10 span,
.emp-create-ai-card-v10 small{
  font-size:clamp(12px, .88vw, 13px) !important;
}

/* Mobile hard minimum */
@media (max-width:520px){
  body{
    font-size:15px !important;
  }

  .main-nav a,
  .mode-btn,
  .lang-select,
  .lang-select .lang-toggle,
  .header-actions .btn{
    font-size:13px !important;
  }

  .home-section-badge,
  .professions-head span,
  .section-eyebrow,
  .salary-rate-note-v2,
  .salary-convert-v2 span,
  .notify-dot,
  [data-notification-count],
  [data-notify-count]{
    font-size:12px !important;
  }

  .hero h1,
  .hero-modern-v2 h1{
    font-size:clamp(30px, 8.5vw, 38px) !important;
  }

  .hero-subtitle,
  .hero-modern-v2 .hero-subtitle,
  .home-section-copy p{
    font-size:14px !important;
  }

  .section-head h2,
  .professions-section h2,
  .categories-section h2,
  .subscribe-section h2,
  .home-section-copy h2,
  .jobs-modern-head h2,
  .professions-head h2{
    font-size:24px !important;
  }

  .vacancy-card h3,
  .jobs-card-title-v3,
  .route-jobs .jobs-card-title-v3,
  .category-card strong,
  .category-card-modern strong,
  .profession-column a,
  .profession-name{
    font-size:16px !important;
  }

  .salary,
  .jobs-card-salary-v3,
  .route-jobs .jobs-card-salary-v3,
  .jobs-card-salary-v3 strong,
  .route-jobs .jobs-card-salary-v3 strong{
    font-size:15px !important;
  }

  .source,
  .jobs-card-meta-v3,
  .jobs-card-chips-v3 span,
  .route-jobs .jobs-card-chips-v3 span,
  .cat-count,
  .social-text em,
  .footer-brand p,
  .footer-col a,
  .footer-copy,
  .footer-socials a{
    font-size:14px !important;
  }

  .social-text strong,
  .dream-social-text strong{
    font-size:15px !important;
  }

  .jp-tabs-v20 a span,
  .jp-shell-v20 .jp-form-grid label,
  .jp-shell-v20 .jp-form-grid input,
  .jp-shell-v20 .jp-form-grid select{
    font-size:15px !important;
  }

  .jp-tabs-v20 a small,
  .jp-shell-v20 .jp-resume-modern-meta span,
  .jp-shell-v20 .jp-response-status-v11{
    font-size:12px !important;
  }
}

@media (max-width:380px){
  body{
    font-size:14px !important;
  }

  .hero h1,
  .hero-modern-v2 h1{
    font-size:29px !important;
  }

  .section-head h2,
  .professions-section h2,
  .categories-section h2,
  .subscribe-section h2,
  .home-section-copy h2{
    font-size:22px !important;
  }

  .vacancy-card h3,
  .category-card strong,
  .profession-column a,
  .profession-name{
    font-size:15px !important;
  }

  .search-field input,
  .search-field select,
  .search-submit,
  .salary,
  .source,
  .social-text strong,
  .social-text em{
    font-size:14px !important;
  }
}


/* ==========================================================
   Resume portfolio media manager v12
   ========================================================== */

.resume-media-card-v12{
  overflow:visible !important;
}

.resume-media-grid-v12{
  align-items:start !important;
}

.resume-media-box-v12{
  display:grid !important;
  gap:14px !important;
  min-width:0 !important;
}

.resume-upload-field-v12{
  min-height:170px !important;
  cursor:pointer !important;
}

.resume-media-preview-v12{
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:12px !important;
  margin-top:0 !important;
}

.resume-media-empty-v12{
  min-height:82px !important;
  display:grid !important;
  place-items:center !important;
  gap:8px !important;
  padding:16px !important;
  border:1px dashed #cbd5e1 !important;
  border-radius:18px !important;
  background:#f8fafc !important;
  color:#667085 !important;
  text-align:center !important;
  font-weight:800 !important;
}

.resume-media-empty-v12 i{
  width:42px !important;
  height:42px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:14px !important;
  background:#eef8f5 !important;
  color:var(--green) !important;
  font-size:18px !important;
}

.resume-media-item-v12{
  display:grid !important;
  grid-template-columns:88px minmax(0, 1fr) auto !important;
  gap:14px !important;
  align-items:center !important;
  padding:12px !important;
  border:1px solid #dfe5ed !important;
  border-radius:18px !important;
  background:#fff !important;
  box-shadow:0 10px 24px rgba(15,23,42,.04) !important;
}

.resume-media-new-item-v12{
  border-color:rgba(0,79,67,.20) !important;
  background:#f5fffb !important;
}

.resume-media-thumb-v12{
  width:88px !important;
  height:72px !important;
  overflow:hidden !important;
  border-radius:14px !important;
  background:#eef2f6 !important;
}

.resume-media-thumb-v12 img,
.resume-media-thumb-v12 video{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

.resume-media-video-thumb-v12{
  background:#0f172a !important;
}

.resume-media-info-v12{
  min-width:0 !important;
  display:grid !important;
  gap:5px !important;
}

.resume-media-info-v12 b{
  overflow:hidden !important;
  color:#142238 !important;
  font-size:14px !important;
  line-height:1.25 !important;
  font-weight:900 !important;
  text-overflow:ellipsis !important;
  white-space:nowrap !important;
}

.resume-media-info-v12 span{
  color:#667085 !important;
  font-size:12px !important;
  line-height:1.35 !important;
  font-weight:700 !important;
}

.resume-media-actions-v12{
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
  flex-wrap:wrap !important;
  justify-content:flex-end !important;
}

.resume-media-actions-v12 button{
  min-height:38px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:7px !important;
  padding:0 12px !important;
  border:1px solid #d0d5dd !important;
  border-radius:12px !important;
  background:#f8fafc !important;
  color:#344054 !important;
  font-size:12px !important;
  font-weight:900 !important;
  cursor:pointer !important;
}

.resume-media-actions-v12 button:hover{
  border-color:rgba(0,79,67,.25) !important;
  background:#eef8f5 !important;
  color:var(--green) !important;
}

.resume-media-actions-v12 button.is-danger{
  border-color:#fee4e2 !important;
  background:#fff5f5 !important;
  color:#d92d20 !important;
}

.resume-view-media-grid-v12{
  display:grid !important;
  grid-template-columns:repeat(auto-fill, minmax(150px, 1fr)) !important;
  gap:12px !important;
}

.resume-view-image-card-v12{
  display:grid !important;
  gap:8px !important;
  padding:10px !important;
  border:1px solid #e4e7ec !important;
  border-radius:16px !important;
  background:#fff !important;
  color:#344054 !important;
  font-weight:800 !important;
}

.resume-view-image-card-v12 img{
  width:100% !important;
  height:130px !important;
  object-fit:cover !important;
  border-radius:12px !important;
}

.resume-view-image-card-v12 span{
  overflow:hidden !important;
  font-size:12px !important;
  line-height:1.35 !important;
  text-overflow:ellipsis !important;
  white-space:nowrap !important;
}

.resume-view-video-grid-v12{
  display:grid !important;
  gap:14px !important;
}

.resume-view-video-card-v12{
  display:grid !important;
  grid-template-columns:220px minmax(0, 1fr) !important;
  gap:14px !important;
  align-items:center !important;
  padding:12px !important;
  border:1px solid #e4e7ec !important;
  border-radius:18px !important;
  background:#fff !important;
}

.resume-view-video-card-v12 video{
  width:100% !important;
  height:130px !important;
  border-radius:14px !important;
  background:#0f172a !important;
  object-fit:cover !important;
}

.resume-view-video-card-v12 div{
  min-width:0 !important;
  display:grid !important;
  gap:8px !important;
}

.resume-view-video-card-v12 b{
  overflow:hidden !important;
  color:#142238 !important;
  font-size:15px !important;
  line-height:1.35 !important;
  font-weight:900 !important;
  text-overflow:ellipsis !important;
  white-space:nowrap !important;
}

.resume-view-video-card-v12 a{
  width:max-content !important;
  display:inline-flex !important;
  align-items:center !important;
  min-height:38px !important;
  padding:0 12px !important;
  border-radius:12px !important;
  background:#eef8f5 !important;
  color:var(--green) !important;
  font-size:13px !important;
  font-weight:900 !important;
}

@media (max-width:760px){
  .resume-media-item-v12{
    grid-template-columns:72px minmax(0, 1fr) !important;
    align-items:start !important;
  }

  .resume-media-thumb-v12{
    width:72px !important;
    height:62px !important;
  }

  .resume-media-actions-v12{
    grid-column:1/-1 !important;
    display:grid !important;
    grid-template-columns:1fr 1fr !important;
  }

  .resume-media-actions-v12 button{
    width:100% !important;
  }

  .resume-view-video-card-v12{
    grid-template-columns:1fr !important;
  }

  .resume-view-video-card-v12 video{
    height:210px !important;
  }
}

@media (max-width:430px){
  .resume-media-item-v12{
    grid-template-columns:1fr !important;
  }

  .resume-media-thumb-v12{
    width:100% !important;
    height:180px !important;
  }

  .resume-media-info-v12 b{
    white-space:normal !important;
  }

  .resume-media-actions-v12{
    grid-template-columns:1fr !important;
  }

  .resume-view-media-grid-v12{
    grid-template-columns:1fr !important;
  }

  .resume-view-video-card-v12 video{
    height:180px !important;
  }
}

/* ==========================================================
   Jobseeker personal city manual + editable phone v12
   ========================================================== */

.jp-city-field-v12{
  min-width:0 !important;
}

.jp-city-manual-v12{
  display:grid !important;
  gap:10px !important;
}

.jp-city-manual-v12 select,
.jp-city-manual-v12 input{
  width:100% !important;
}

.jp-city-manual-v12 input[data-profile-city-custom]{
  min-height:52px !important;
  padding:0 15px !important;
  border:1px solid rgba(15,23,42,.11) !important;
  border-radius:16px !important;
  background:#fff !important;
  color:#0f172a !important;
  outline:0 !important;
  transition:border-color .16s ease, box-shadow .16s ease, background .16s ease !important;
}

.jp-city-manual-v12 input[data-profile-city-custom]:focus,
.jp-form-grid input[name="phone"]:focus{
  border-color:rgba(0,79,67,.42) !important;
  box-shadow:0 0 0 4px rgba(0,79,67,.08) !important;
}

.jp-city-manual-v12 small,
.jp-form-grid input[name="phone"] + small{
  color:#667085 !important;
  font-size:12px !important;
  line-height:1.4 !important;
  font-weight:700 !important;
}

.jp-form-grid input[name="phone"]{
  min-height:56px !important;
  padding:0 15px !important;
  border:1px solid rgba(15,23,42,.11) !important;
  border-radius:16px !important;
  background:#fff !important;
  color:#0f172a !important;
  outline:0 !important;
  font-weight:700 !important;
}

.jp-form-grid input[name="phone"]::placeholder,
.jp-city-manual-v12 input[data-profile-city-custom]::placeholder{
  color:#98a2b3 !important;
  opacity:1 !important;
}

@media (max-width:760px){
  .jp-city-manual-v12{
    gap:9px !important;
  }

  .jp-city-manual-v12 input[data-profile-city-custom],
  .jp-form-grid input[name="phone"]{
    min-height:52px !important;
    border-radius:14px !important;
  }
}

/* =========================
   Employers Landing v11
========================= */
.employers-v11{background:#f7f7f8;color:#12233a}
.emp-v11-hero,
.emp-v11-quick-start,
.emp-v11-flow,
.emp-v11-showcases,
.emp-v11-savings,
.emp-v11-what,
.emp-v11-brands,
.emp-v11-faq-contact{padding:64px 0}

.emp-v11-hero-grid,
.emp-v11-savings-grid,
.emp-v11-flow-grid,
.emp-v11-faq-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
}

.emp-v11-badges{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:20px}
.emp-v11-badges span{
  background:#f26b36;
  color:#fff;
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
}

.emp-v11-copy h1{
  font-size:68px;
  line-height:1.05;
  margin:0 0 24px;
  color:#16243a;
  letter-spacing:-2px;
}
.emp-v11-copy p{
  font-size:20px;
  line-height:1.65;
  color:#526177;
  margin:0 0 28px;
}
.emp-v11-hero-actions{display:flex;gap:16px;flex-wrap:wrap;margin-bottom:30px}

.emp-v11-primary-btn,
.emp-v11-secondary-btn,
.emp-v11-submit{
  min-height:58px;
  border-radius:18px;
  padding:0 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  font-size:16px;
  border:0;
  cursor:pointer;
}
.emp-v11-primary-btn,
.emp-v11-submit{
  background:#044d44;
  color:#fff;
}
.emp-v11-secondary-btn{
  background:#fff;
  color:#12233a;
  border:1px solid #d9dfe7;
}

.emp-v11-hero-trust{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.emp-v11-hero-trust div{
  background:#fff;
  border:1px solid #e4e8ee;
  border-radius:20px;
  padding:18px;
}
.emp-v11-hero-trust strong{display:block;font-size:28px;color:#044d44}
.emp-v11-hero-trust span{display:block;margin-top:6px;color:#5f6e82;font-size:14px}

.emp-v11-media-frame{
  position:relative;
  border:4px solid #f26b36;
  border-radius:44px;
  overflow:hidden;
  background:#fff;
  min-height:540px;
}
.emp-v11-media-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.emp-v11-floating{
  position:absolute;
  background:rgba(83,219,217,.92);
  color:#fff;
  padding:18px 22px;
  border-radius:20px;
  font-weight:700;
  box-shadow:0 16px 40px rgba(0,0,0,.18);
}
.emp-v11-floating-top{top:20px;left:20px}
.emp-v11-floating-bottom{left:20px;bottom:22px;background:#f26b36}
.emp-v11-response-card{
  position:absolute;
  right:20px;
  bottom:44px;
  width:320px;
  background:rgba(255,255,255,.92);
  border:3px solid #9aa3ad;
  border-radius:28px;
  padding:18px;
  backdrop-filter:blur(8px);
}
.emp-v11-response-card strong{display:block;margin-bottom:12px}
.emp-v11-response-bar{
  height:12px;background:#e9eef4;border-radius:999px;overflow:hidden;margin-bottom:12px
}
.emp-v11-response-bar i{display:block;width:82%;height:100%;background:#55c987}

.emp-v11-quick-card,
.emp-v11-contact-card,
.emp-v11-faq-box{
  background:#fff;
  border:1px solid #e7ebf0;
  border-radius:36px;
  padding:40px;
}
.emp-v11-quick-head{text-align:center;margin-bottom:26px}
.emp-v11-quick-head h2{
  margin:0 0 12px;
  font-size:42px;
  line-height:1.18;
  color:#14243c;
}
.emp-v11-quick-head p{
  margin:0;
  font-size:18px;
  color:#607085;
  line-height:1.6;
}
.emp-v11-form-grid{
  display:grid;
  grid-template-columns:1.1fr .95fr auto;
  gap:18px;
  align-items:end;
}
.emp-v11-field{display:block}
.emp-v11-field > span,
.emp-v11-field .field-caption{
  display:block;
  margin-bottom:10px;
  color:#7d8797;
  font-size:13px;
  font-weight:600;
}
.emp-v11-field input,
.emp-v11-field .city-picker-toggle{
  width:100%;
  min-height:62px;
  border:1px solid #dbe1e8;
  background:#fff;
  border-radius:18px;
  padding:0 18px;
  font-size:17px;
  color:#14243c;
}
.emp-v11-field .city-picker-toggle{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
}
.emp-v11-form-error{
  margin-top:14px;
  color:#c23636;
  font-weight:700;
}

.emp-v11-popular{margin-top:28px;text-align:center}
.emp-v11-popular b{display:block;margin-bottom:14px;font-size:18px}
.emp-v11-popular-chips{
  display:flex;flex-wrap:wrap;gap:12px;justify-content:center
}
.emp-v11-chip{
  border:0;
  background:#f1f4f8;
  color:#14243c;
  border-radius:999px;
  padding:11px 18px;
  font-size:15px;
  cursor:pointer;
}
.emp-v11-chip:hover{background:#e3edf9}

.emp-v11-flow-list h2,
.emp-v11-section-head h2,
.emp-v11-savings-copy h2,
.emp-v11-what h2,
.emp-v11-faq-box h2{
  margin:0 0 22px;
  font-size:42px;
  line-height:1.18;
  color:#14243c;
}
.emp-v11-flow-media{
  background:#f26b36;
  border-radius:40px;
  padding:26px;
}
.emp-v11-flow-panel{display:none}
.emp-v11-flow-panel.is-active{display:block}
.emp-v11-flow-panel img{
  width:100%;
  border-radius:26px;
  background:#fff;
  display:block;
}
.emp-v11-flow-list{display:flex;flex-direction:column;gap:12px}
.emp-v11-flow-item{
  width:100%;
  text-align:left;
  background:#fff;
  border:1px solid #e6ebf0;
  border-radius:24px;
  padding:20px 22px;
  cursor:pointer;
}
.emp-v11-flow-item.is-active{
  border-color:#f26b36;
  box-shadow:0 12px 32px rgba(242,107,54,.12);
}
.emp-v11-flow-item small{display:block;color:#f26b36;font-size:18px;margin-bottom:8px}
.emp-v11-flow-item strong{display:block;font-size:28px;margin-bottom:8px}
.emp-v11-flow-item p{margin:0;color:#607085;line-height:1.6}

.emp-v11-showcases{background:#044d44}
.emp-v11-section-head{text-align:center;margin-bottom:28px}
.emp-v11-section-head span{
  display:inline-block;
  margin-bottom:10px;
  color:#98dcb9;
  font-weight:700;
}
.emp-v11-showcases .emp-v11-section-head h2{color:#fff}
.emp-v11-showcase-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
}
.emp-v11-showcase-card{
  background:#fff;
  border-radius:28px;
  padding:28px;
}
.emp-v11-showcase-card h3{
  margin:0 0 16px;
  color:#14243c;
  font-size:22px;
  line-height:1.35;
}
.emp-v11-showcase-card h3 span{display:block;margin-top:8px;font-size:16px;color:#617084;font-weight:700}
.emp-v11-showcase-meta{display:flex;gap:18px;color:#8a95a5;font-size:15px;margin-bottom:18px}
.emp-v11-showcase-card ul{padding:0;margin:0 0 18px;list-style:none}
.emp-v11-showcase-card li{padding:8px 0;color:#445468}
.emp-v11-showcase-badge{
  padding:12px 16px;
  border-radius:999px;
  font-weight:700;
  color:#1d6934;
  display:inline-block;
}

.emp-v11-metric-card{
  background:#fff;
  border-radius:28px;
  border:1px solid #e7ebf0;
  padding:26px 28px;
  margin-bottom:18px;
}
.emp-v11-metric-card strong{
  display:block;
  font-size:52px;
  line-height:1;
  margin-bottom:10px;
}
.emp-v11-metric-card p{margin:0;color:#5d6c81;line-height:1.7}

.emp-v11-what-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
.emp-v11-what-grid article{
  position:relative;
  background:#fff;
  border:1px solid #dae3ea;
  border-radius:34px;
  padding:28px;
  min-height:280px;
}
.emp-v11-what-grid article.is-orange{background:#f26b36;color:#fff}
.emp-v11-what-grid article.is-dark{background:#044d44;color:#fff}
.emp-v11-what-grid b{
  position:absolute;
  right:18px;top:14px;
  font-size:90px;
  opacity:.12;
}
.emp-v11-what-grid h3{margin:0 0 14px;font-size:32px;line-height:1.18}
.emp-v11-what-grid p{margin:0;line-height:1.7;color:inherit}

.emp-v11-marquee{
  overflow:hidden;
  border-radius:26px;
  background:#fff;
  border:1px solid #e7ebf0;
  padding:18px 0;
}
.emp-v11-marquee-track{
  display:flex;
  width:max-content;
  gap:22px;
  animation:empBrandMove 30s linear infinite;
}
.emp-v11-marquee.reverse .emp-v11-marquee-track{animation-direction:reverse}
.emp-v11-logo-card{
  width:220px;
  min-width:220px;
  height:110px;
  background:#fff;
  border-radius:18px;
  border:1px solid #eef2f6;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
}
.emp-v11-logo-card img{
  max-width:100%;
  max-height:70px;
  object-fit:contain;
  display:block;
}

.emp-v11-contact-card ul{list-style:none;padding:0;margin:20px 0}
.emp-v11-contact-card li{padding:10px 0;color:#5f6f84;line-height:1.55}
.emp-v11-faq-items{display:flex;flex-direction:column;gap:14px}
.emp-v11-faq-item{
  background:#fff;
  border:1px solid #e7ebf0;
  border-radius:20px;
  padding:0 18px;
}
.emp-v11-faq-item summary{
  cursor:pointer;
  list-style:none;
  padding:20px 0;
  font-weight:800;
  color:#15253d;
  font-size:24px;
}
.emp-v11-faq-item div{
  padding:0 0 20px;
  color:#607085;
  line-height:1.75;
}

.emp-auth-required-modal{
  position:fixed;inset:0;z-index:120;
  background:rgba(8,18,30,.58);
  display:grid;place-items:center;
  padding:20px;
}
.emp-auth-required-modal[hidden]{display:none}
.emp-auth-required-card{
  width:min(480px,100%);
  background:#fff;
  border-radius:30px;
  padding:34px;
  position:relative;
  box-shadow:0 22px 70px rgba(0,0,0,.24);
}
.emp-auth-required-close{
  position:absolute;top:14px;right:16px;
  width:38px;height:38px;border:0;border-radius:12px;background:#f2f4f8;
  font-size:24px;cursor:pointer;
}
.emp-auth-required-card h3{margin:0 0 10px;font-size:30px}
.emp-auth-required-card p{margin:0 0 22px;color:#607085;line-height:1.65}
.emp-auth-required-actions{display:flex;gap:12px;flex-wrap:wrap}

@keyframes empBrandMove{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

@media (max-width:1200px){
  .emp-v11-copy h1{font-size:52px}
  .emp-v11-hero-grid,
  .emp-v11-savings-grid,
  .emp-v11-flow-grid,
  .emp-v11-faq-grid{grid-template-columns:1fr}
  .emp-v11-form-grid{grid-template-columns:1fr}
  .emp-v11-showcase-grid{grid-template-columns:1fr}
  .emp-v11-what-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:768px){
  .emp-v11-copy h1{font-size:38px;line-height:1.12}
  .emp-v11-quick-head h2,
  .emp-v11-flow-list h2,
  .emp-v11-section-head h2,
  .emp-v11-savings-copy h2,
  .emp-v11-what h2,
  .emp-v11-faq-box h2{font-size:30px}
  .emp-v11-hero-trust{grid-template-columns:1fr}
  .emp-v11-what-grid{grid-template-columns:1fr}
  .emp-v11-quick-card,
  .emp-v11-contact-card,
  .emp-v11-faq-box{padding:24px}
  .emp-v11-response-card{position:static;width:auto;margin:16px}
}

/* ==========================================================
   HandyMens Employers Landing FINAL v12
   /ru/employers professional redesign override
   ========================================================== */

body.route-employers,
body.employer-mode{
  background:#f6f8fb !important;
  color:#14243c !important;
}

body.route-employers .site-header,
body.employer-mode .site-header{
  background:rgba(255,255,255,.96) !important;
  border-bottom:1px solid rgba(226,232,240,.9) !important;
  box-shadow:0 10px 34px rgba(15,23,42,.06) !important;
  backdrop-filter:blur(18px) !important;
}

body.route-employers .main-nav a,
body.employer-mode .main-nav a,
body.route-employers .lang-select,
body.employer-mode .lang-select{
  color:#14243c !important;
}

body.route-employers .btn-light,
body.employer-mode .btn-light{
}

body.route-employers .btn-primary,
body.employer-mode .btn-primary{
  background:#044d44 !important;
  color:#fff !important;
}

.employers-v11{
  background:
    radial-gradient(circle at 8% 5%, rgba(4,77,68,.09), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(242,107,54,.12), transparent 32%),
    #f6f8fb !important;
  overflow:hidden !important;
}

.employers-v11 .hm-container{
  width:min(1440px, calc(100% - 64px)) !important;
}

/* ===== Hero ===== */

.emp-v11-hero{
  padding:138px 0 70px !important;
  position:relative !important;
}

.emp-v11-hero-grid{
  display:grid !important;
  grid-template-columns:minmax(0, 1.04fr) minmax(420px, .96fr) !important;
  gap:42px !important;
  align-items:stretch !important;
}

.emp-v11-copy{
  min-height:650px !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  padding:58px 54px !important;
  border-radius:44px !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,255,255,.86)),
    radial-gradient(circle at 0 0, rgba(4,77,68,.10), transparent 35%) !important;
  border:1px solid rgba(226,232,240,.95) !important;
  box-shadow:0 26px 80px rgba(15,23,42,.08) !important;
}

.emp-v11-badges{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:12px !important;
  margin:0 0 24px !important;
}

.emp-v11-badges span{
  display:inline-flex !important;
  align-items:center !important;
  min-height:38px !important;
  padding:0 16px !important;
  border-radius:999px !important;
  background:linear-gradient(135deg,#f26b36,#ff865c) !important;
  color:#fff !important;
  font-size:14px !important;
  line-height:1 !important;
  font-weight:900 !important;
  box-shadow:0 12px 28px rgba(242,107,54,.20) !important;
}

.emp-v11-copy h1{
  margin:0 0 24px !important;
  max-width:780px !important;
  color:#102238 !important;
  font-size:clamp(42px, 5.1vw, 76px) !important;
  line-height:1.02 !important;
  letter-spacing:-2.6px !important;
  font-weight:950 !important;
}

.emp-v11-copy p{
  max-width:650px !important;
  margin:0 0 32px !important;
  color:#5d6c81 !important;
  font-size:clamp(16px, 1.28vw, 21px) !important;
  line-height:1.7 !important;
  font-weight:600 !important;
}

.emp-v11-hero-actions{
  display:flex !important;
  align-items:center !important;
  flex-wrap:wrap !important;
  gap:14px !important;
  margin:0 0 34px !important;
}

.emp-v11-primary-btn,
.emp-v11-secondary-btn,
.emp-v11-submit{
  min-height:58px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px !important;
  padding:0 26px !important;
  border-radius:18px !important;
  border:0 !important;
  cursor:pointer !important;
  font-size:16px !important;
  line-height:1 !important;
  font-weight:900 !important;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease !important;
}

.emp-v11-primary-btn,
.emp-v11-submit{
  background:linear-gradient(135deg,#044d44,#067463) !important;
  color:#fff !important;
  box-shadow:0 16px 34px rgba(4,77,68,.22) !important;
}

.emp-v11-primary-btn:hover,
.emp-v11-submit:hover{
  transform:translateY(-2px) !important;
  box-shadow:0 22px 46px rgba(4,77,68,.28) !important;
}

.emp-v11-secondary-btn{
  background:#fff !important;
  color:#14243c !important;
  border:1px solid #dbe4ed !important;
  box-shadow:0 10px 24px rgba(15,23,42,.06) !important;
}

.emp-v11-secondary-btn:hover{
  transform:translateY(-2px) !important;
  border-color:rgba(4,77,68,.25) !important;
}

.emp-v11-hero-trust{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:14px !important;
  max-width:720px !important;
}

.emp-v11-hero-trust div{
  min-height:118px !important;
  padding:20px 18px !important;
  border-radius:24px !important;
  background:#fff !important;
  border:1px solid #e3e9ef !important;
  box-shadow:0 14px 32px rgba(15,23,42,.05) !important;
}

.emp-v11-hero-trust strong{
  display:block !important;
  margin:0 0 8px !important;
  color:#044d44 !important;
  font-size:clamp(26px, 2.5vw, 38px) !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.emp-v11-hero-trust span{
  display:block !important;
  color:#66778a !important;
  font-size:13px !important;
  line-height:1.45 !important;
  font-weight:700 !important;
}

/* ===== Hero media ===== */

.emp-v11-media{
  min-width:0 !important;
}

.emp-v11-media-frame{
  position:relative !important;
  min-height:650px !important;
  height:100% !important;
  overflow:hidden !important;
  border-radius:44px !important;
  border:6px solid #f26b36 !important;
  background:
    linear-gradient(135deg, #eaf7f4, #fff4ee),
    #fff !important;
  box-shadow:0 34px 90px rgba(15,23,42,.12) !important;
}

.emp-v11-media-frame::before{
  content:"" !important;
  position:absolute !important;
  inset:22px !important;
  border-radius:34px !important;
  background:
    radial-gradient(circle at 70% 24%, rgba(242,107,54,.22), transparent 26%),
    radial-gradient(circle at 28% 74%, rgba(4,77,68,.18), transparent 32%) !important;
  z-index:0 !important;
}

.emp-v11-media-frame img{
  position:relative !important;
  z-index:1 !important;
  width:100% !important;
  height:100% !important;
  min-height:650px !important;
  object-fit:cover !important;
  display:block !important;
}

.emp-v11-floating{
  position:absolute !important;
  z-index:3 !important;
  display:inline-flex !important;
  align-items:center !important;
  min-height:58px !important;
  padding:0 20px !important;
  border-radius:18px !important;
  color:#fff !important;
  font-size:15px !important;
  line-height:1.25 !important;
  font-weight:900 !important;
  box-shadow:0 18px 42px rgba(15,23,42,.18) !important;
}

.emp-v11-floating-top{
  top:34px !important;
  left:34px !important;
  background:linear-gradient(135deg,#4fc7c0,#15998d) !important;
}

.emp-v11-floating-bottom{
  left:34px !important;
  bottom:40px !important;
  background:linear-gradient(135deg,#f26b36,#ff8a5e) !important;
}

.emp-v11-response-card{
  position:absolute !important;
  z-index:4 !important;
  right:28px !important;
  bottom:112px !important;
  width:min(360px, calc(100% - 56px)) !important;
  padding:22px !important;
  border-radius:26px !important;
  border:2px solid rgba(148,163,184,.70) !important;
  background:rgba(255,255,255,.88) !important;
  backdrop-filter:blur(14px) !important;
  box-shadow:0 22px 54px rgba(15,23,42,.16) !important;
}

.emp-v11-response-card strong{
  display:block !important;
  margin:0 0 14px !important;
  color:#14243c !important;
  font-size:17px !important;
  font-weight:900 !important;
}

.emp-v11-response-bar{
  height:12px !important;
  overflow:hidden !important;
  margin:0 0 12px !important;
  border-radius:999px !important;
  background:#e7edf3 !important;
}

.emp-v11-response-bar i{
  display:block !important;
  width:82% !important;
  height:100% !important;
  border-radius:inherit !important;
  background:linear-gradient(90deg,#21c26f,#69dd93) !important;
}

.emp-v11-response-card span{
  display:inline-flex !important;
  padding:8px 12px !important;
  border-radius:999px !important;
  background:#e8fff0 !important;
  color:#15803d !important;
  font-size:13px !important;
  font-weight:900 !important;
}

/* ===== Quick start form ===== */

.emp-v11-quick-start{
  padding:28px 0 82px !important;
  background:transparent !important;
}

.emp-v11-quick-card{
  padding:48px !important;
  border-radius:38px !important;
  background:#fff !important;
  border:1px solid #e3eaf1 !important;
  box-shadow:0 24px 72px rgba(15,23,42,.08) !important;
}

.emp-v11-quick-head{
  max-width:900px !important;
  margin:0 auto 34px !important;
  text-align:center !important;
}

.emp-v11-quick-head h2{
  margin:0 0 12px !important;
  color:#102238 !important;
  font-size:clamp(30px, 3.3vw, 52px) !important;
  line-height:1.14 !important;
  letter-spacing:-1.3px !important;
  font-weight:950 !important;
}

.emp-v11-quick-head p{
  max-width:760px !important;
  margin:0 auto !important;
  color:#64748b !important;
  font-size:17px !important;
  line-height:1.65 !important;
  font-weight:600 !important;
}

.emp-v11-form-grid{
  display:grid !important;
  grid-template-columns:minmax(260px,1.1fr) minmax(260px,.9fr) auto !important;
  gap:16px !important;
  align-items:end !important;
}

.emp-v11-field{
  display:block !important;
  min-width:0 !important;
}

.emp-v11-field > span,
.emp-v11-field .field-caption{
  display:block !important;
  margin:0 0 9px !important;
  color:#64748b !important;
  font-size:13px !important;
  line-height:1.25 !important;
  font-weight:800 !important;
}

.emp-v11-field input,
.emp-v11-field .city-picker-toggle{
  width:100% !important;
  min-height:62px !important;
  border:1px solid #dbe4ed !important;
  border-radius:18px !important;
  background:#f9fbfd !important;
  color:#14243c !important;
  padding:0 18px !important;
  font-size:16px !important;
  font-weight:700 !important;
  outline:none !important;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8) !important;
}

.emp-v11-field input:focus,
.emp-v11-field .city-picker-toggle:focus{
  border-color:rgba(4,77,68,.42) !important;
  background:#fff !important;
  box-shadow:0 0 0 4px rgba(4,77,68,.08) !important;
}

.emp-v11-field .city-picker-toggle{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  justify-content:center !important;
  text-align:left !important;
}

.emp-v11-field .city-picker-toggle strong{
  color:#14243c !important;
  font-size:16px !important;
  line-height:1.2 !important;
  font-weight:900 !important;
}

.emp-v11-submit{
  min-width:230px !important;
  min-height:62px !important;
  white-space:nowrap !important;
}

.emp-v11-form-error{
  margin:14px 0 0 !important;
  padding:13px 16px !important;
  border-radius:16px !important;
  background:#fff1f2 !important;
  color:#be123c !important;
  font-size:14px !important;
  font-weight:900 !important;
}

.emp-v11-popular{
  margin:28px 0 0 !important;
  text-align:center !important;
}

.emp-v11-popular b{
  display:block !important;
  margin:0 0 14px !important;
  color:#334155 !important;
  font-size:16px !important;
  font-weight:900 !important;
}

.emp-v11-popular-chips{
  display:flex !important;
  flex-wrap:wrap !important;
  justify-content:center !important;
  gap:10px !important;
}

.emp-v11-chip{
  min-height:40px !important;
  border:0 !important;
  border-radius:999px !important;
  padding:0 16px !important;
  background:#eef4f7 !important;
  color:#14243c !important;
  font-size:14px !important;
  font-weight:800 !important;
  cursor:pointer !important;
  transition:.18s ease !important;
}

.emp-v11-chip:hover{
  background:#dff4ed !important;
  color:#044d44 !important;
  transform:translateY(-1px) !important;
}

/* ===== Flow ===== */

.emp-v11-flow{
  padding:76px 0 !important;
  background:#fff !important;
}

.emp-v11-flow-grid{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) minmax(380px,.82fr) !important;
  gap:42px !important;
  align-items:center !important;
}

.emp-v11-flow-media{
  min-height:560px !important;
  display:grid !important;
  place-items:center !important;
  padding:34px !important;
  border-radius:42px !important;
  background:
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.25), transparent 26%),
    linear-gradient(135deg,#f26b36,#ff8c5b) !important;
  box-shadow:0 30px 80px rgba(242,107,54,.20) !important;
}

.emp-v11-flow-panel{
  display:none !important;
  width:100% !important;
}

.emp-v11-flow-panel.is-active{
  display:block !important;
  animation:empFadeIn .28s ease both !important;
}

.emp-v11-flow-panel img{
  width:100% !important;
  max-height:500px !important;
  object-fit:cover !important;
  border-radius:28px !important;
  background:#fff !important;
  box-shadow:0 24px 54px rgba(15,23,42,.14) !important;
}

.emp-v11-flow-list h2,
.emp-v11-section-head h2,
.emp-v11-savings-copy h2,
.emp-v11-what h2,
.emp-v11-faq-box h2,
.emp-v11-contact-card h2{
  margin:0 0 24px !important;
  color:#102238 !important;
  font-size:clamp(30px, 3vw, 48px) !important;
  line-height:1.14 !important;
  letter-spacing:-1.1px !important;
  font-weight:950 !important;
}

.emp-v11-flow-list{
  display:flex !important;
  flex-direction:column !important;
  gap:12px !important;
}

.emp-v11-flow-item{
  position:relative !important;
  width:100% !important;
  text-align:left !important;
  padding:22px 24px 22px 86px !important;
  border-radius:24px !important;
  border:1px solid #e3eaf1 !important;
  background:#f8fafc !important;
  cursor:pointer !important;
  transition:.18s ease !important;
}

.emp-v11-flow-item small{
  position:absolute !important;
  left:22px !important;
  top:22px !important;
  width:42px !important;
  height:42px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:15px !important;
  background:#fff !important;
  color:#f26b36 !important;
  font-size:16px !important;
  font-weight:950 !important;
  box-shadow:0 8px 18px rgba(15,23,42,.06) !important;
}

.emp-v11-flow-item strong{
  display:block !important;
  margin:0 0 7px !important;
  color:#14243c !important;
  font-size:22px !important;
  line-height:1.25 !important;
  font-weight:950 !important;
}

.emp-v11-flow-item p{
  margin:0 !important;
  color:#64748b !important;
  font-size:15px !important;
  line-height:1.6 !important;
  font-weight:600 !important;
}

.emp-v11-flow-item.is-active{
  border-color:rgba(242,107,54,.55) !important;
  background:#fff !important;
  box-shadow:0 18px 44px rgba(242,107,54,.12) !important;
  transform:translateX(-3px) !important;
}

/* ===== Showcase ===== */

.emp-v11-showcases{
  padding:86px 0 !important;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.10), transparent 30%),
    linear-gradient(135deg,#044d44,#023c35) !important;
  color:#fff !important;
}

.emp-v11-section-head{
  max-width:900px !important;
  margin:0 auto 34px !important;
  text-align:center !important;
}

.emp-v11-section-head span{
  display:inline-flex !important;
  margin:0 0 12px !important;
  padding:8px 14px !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.12) !important;
  color:#a7f3d0 !important;
  font-size:13px !important;
  font-weight:900 !important;
}

.emp-v11-showcases .emp-v11-section-head h2{
  color:#fff !important;
}

.emp-v11-showcase-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:22px !important;
}

.emp-v11-showcase-card{
  min-height:360px !important;
  display:flex !important;
  flex-direction:column !important;
  padding:28px !important;
  border-radius:30px !important;
  background:#fff !important;
  color:#14243c !important;
  border:1px solid rgba(255,255,255,.22) !important;
  box-shadow:0 26px 64px rgba(0,0,0,.18) !important;
}

.emp-v11-showcase-card h3{
  margin:0 0 16px !important;
  color:#102238 !important;
  font-size:22px !important;
  line-height:1.34 !important;
  font-weight:950 !important;
}

.emp-v11-showcase-card h3 span{
  display:block !important;
  margin-top:8px !important;
  color:#64748b !important;
  font-size:15px !important;
  font-weight:800 !important;
}

.emp-v11-showcase-meta{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:10px !important;
  margin:0 0 18px !important;
}

.emp-v11-showcase-meta span{
  display:inline-flex !important;
  padding:7px 11px !important;
  border-radius:999px !important;
  background:#f1f5f9 !important;
  color:#64748b !important;
  font-size:13px !important;
  font-weight:800 !important;
}

.emp-v11-showcase-card ul{
  list-style:none !important;
  margin:0 0 20px !important;
  padding:0 !important;
  display:grid !important;
  gap:10px !important;
}

.emp-v11-showcase-card li{
  display:flex !important;
  justify-content:space-between !important;
  gap:12px !important;
  padding:12px 0 !important;
  border-bottom:1px solid #eef2f6 !important;
  color:#526173 !important;
  font-size:15px !important;
  line-height:1.35 !important;
  font-weight:700 !important;
}

.emp-v11-showcase-card li b{
  color:#044d44 !important;
  font-weight:950 !important;
}

.emp-v11-showcase-badge{
  margin-top:auto !important;
  display:inline-flex !important;
  align-items:center !important;
  width:max-content !important;
  max-width:100% !important;
  padding:11px 14px !important;
  border-radius:999px !important;
  color:#166534 !important;
  font-size:13px !important;
  font-weight:950 !important;
}

/* ===== Savings ===== */

.emp-v11-savings{
  padding:86px 0 !important;
  background:#f6f8fb !important;
}

.emp-v11-savings-grid{
  display:grid !important;
  grid-template-columns:.9fr 1.1fr !important;
  gap:42px !important;
  align-items:center !important;
}

.emp-v11-savings-copy{
  display:grid !important;
  gap:16px !important;
}

.emp-v11-metric-card{
  padding:24px 26px !important;
  border-radius:28px !important;
  background:#fff !important;
  border:1px solid #e3eaf1 !important;
  box-shadow:0 18px 44px rgba(15,23,42,.06) !important;
}

.emp-v11-metric-card strong{
  display:block !important;
  margin:0 0 8px !important;
  color:#044d44 !important;
  font-size:clamp(34px, 4vw, 58px) !important;
  line-height:1 !important;
  letter-spacing:-1px !important;
  font-weight:950 !important;
}

.emp-v11-metric-card p{
  margin:0 !important;
  color:#64748b !important;
  font-size:16px !important;
  line-height:1.65 !important;
  font-weight:650 !important;
}

.emp-v11-savings-media .emp-v11-media-frame{
  min-height:540px !important;
}

.emp-v11-savings-media .emp-v11-media-frame img{
  min-height:540px !important;
}

/* ===== What we do ===== */

.emp-v11-what{
  padding:86px 0 !important;
  background:#fff !important;
}

.emp-v11-what h2{
  text-align:center !important;
  max-width:900px !important;
  margin:0 auto 36px !important;
}

.emp-v11-what-grid{
  display:grid !important;
  grid-template-columns:repeat(4,minmax(0,1fr)) !important;
  gap:20px !important;
}

.emp-v11-what-grid article{
  position:relative !important;
  min-height:330px !important;
  overflow:hidden !important;
  padding:28px !important;
  border-radius:32px !important;
  border:1px solid #dfe7ef !important;
  background:#f8fafc !important;
  box-shadow:0 18px 44px rgba(15,23,42,.04) !important;
}

.emp-v11-what-grid article.is-orange{
  background:linear-gradient(135deg,#f26b36,#ff8a5e) !important;
  color:#fff !important;
  border-color:#f26b36 !important;
}

.emp-v11-what-grid article.is-dark{
  background:linear-gradient(135deg,#044d44,#022f2a) !important;
  color:#fff !important;
  border-color:#044d44 !important;
}

.emp-v11-what-grid b{
  position:absolute !important;
  right:18px !important;
  top:10px !important;
  color:currentColor !important;
  opacity:.10 !important;
  font-size:120px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.emp-v11-what-grid h3{
  position:relative !important;
  z-index:1 !important;
  margin:0 0 16px !important;
  font-size:25px !important;
  line-height:1.18 !important;
  letter-spacing:-.5px !important;
  font-weight:950 !important;
}

.emp-v11-what-grid p{
  position:relative !important;
  z-index:1 !important;
  margin:0 !important;
  color:inherit !important;
  opacity:.86 !important;
  font-size:15px !important;
  line-height:1.7 !important;
  font-weight:650 !important;
}

/* ===== Brands ===== */

.emp-v11-brands{
  padding:82px 0 !important;
  background:#f6f8fb !important;
}

.emp-v11-section-head.second{
  margin-top:48px !important;
}

.emp-v11-brands .emp-v11-section-head h2{
  color:#102238 !important;
}

.emp-v11-brands .emp-v11-section-head span{
  background:#eaf7f3 !important;
  color:#047263 !important;
}

.emp-v11-marquee{
  position:relative !important;
  overflow:hidden !important;
  padding:18px 0 !important;
  border-radius:28px !important;
  background:#fff !important;
  border:1px solid #e3eaf1 !important;
  box-shadow:0 18px 44px rgba(15,23,42,.05) !important;
}

.emp-v11-marquee::before,
.emp-v11-marquee::after{
  content:"" !important;
  position:absolute !important;
  top:0 !important;
  bottom:0 !important;
  width:120px !important;
  z-index:2 !important;
  pointer-events:none !important;
}

.emp-v11-marquee::before{
  left:0 !important;
  background:linear-gradient(90deg,#fff,rgba(255,255,255,0)) !important;
}

.emp-v11-marquee::after{
  right:0 !important;
  background:linear-gradient(-90deg,#fff,rgba(255,255,255,0)) !important;
}

.emp-v11-marquee-track{
  display:flex !important;
  gap:18px !important;
  width:max-content !important;
  animation:empBrandMoveFinal 34s linear infinite !important;
}

.emp-v11-marquee.reverse .emp-v11-marquee-track{
  animation-direction:reverse !important;
}

.emp-v11-logo-card{
  width:210px !important;
  min-width:210px !important;
  height:104px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:18px !important;
  border-radius:20px !important;
  background:#fff !important;
  border:1px solid #eef2f6 !important;
  transition:.18s ease !important;
}

.emp-v11-logo-card:hover{
  transform:translateY(-2px) !important;
  box-shadow:0 14px 34px rgba(15,23,42,.08) !important;
}

.emp-v11-logo-card img{
  max-width:100% !important;
  max-height:66px !important;
  object-fit:contain !important;
  display:block !important;
}

/* ===== FAQ + Contact ===== */

.emp-v11-faq-contact{
  padding:86px 0 !important;
  background:#fff !important;
}

.emp-v11-faq-grid{
  display:grid !important;
  grid-template-columns:minmax(320px,.72fr) minmax(0,1.28fr) !important;
  gap:28px !important;
  align-items:start !important;
}

.emp-v11-contact-card,
.emp-v11-faq-box{
  border-radius:34px !important;
  background:#f8fafc !important;
  border:1px solid #e3eaf1 !important;
  padding:34px !important;
  box-shadow:0 18px 44px rgba(15,23,42,.05) !important;
}

.emp-v11-contact-card{
  background:
    radial-gradient(circle at 90% 0, rgba(242,107,54,.16), transparent 34%),
    linear-gradient(135deg,#044d44,#023c35) !important;
  color:#fff !important;
  position:sticky !important;
  top:96px !important;
}

.emp-v11-contact-card h2{
  color:#fff !important;
}

.emp-v11-contact-card p{
  color:rgba(255,255,255,.82) !important;
  font-size:16px !important;
  line-height:1.7 !important;
  font-weight:650 !important;
}

.emp-v11-contact-card ul{
  list-style:none !important;
  margin:22px 0 26px !important;
  padding:0 !important;
  display:grid !important;
  gap:12px !important;
}

.emp-v11-contact-card li{
  color:rgba(255,255,255,.85) !important;
  font-size:15px !important;
  line-height:1.45 !important;
  font-weight:650 !important;
}

.emp-v11-contact-card li b{
  color:#fff !important;
}

.emp-v11-contact-card .emp-v11-primary-btn{
  background:#fff !important;
  color:#044d44 !important;
  box-shadow:none !important;
}

.emp-v11-faq-item{
  overflow:hidden !important;
  border-radius:22px !important;
  border:1px solid #e3eaf1 !important;
  background:#fff !important;
  margin:0 0 14px !important;
}

.emp-v11-faq-item summary{
  cursor:pointer !important;
  list-style:none !important;
  padding:22px 24px !important;
  color:#14243c !important;
  font-size:20px !important;
  line-height:1.35 !important;
  font-weight:950 !important;
}

.emp-v11-faq-item summary::-webkit-details-marker{
  display:none !important;
}

.emp-v11-faq-item summary::after{
  content:"+" !important;
  float:right !important;
  color:#044d44 !important;
  font-size:24px !important;
  line-height:1 !important;
}

.emp-v11-faq-item[open] summary::after{
  content:"−" !important;
}

.emp-v11-faq-item div{
  padding:0 24px 24px !important;
  color:#64748b !important;
  font-size:16px !important;
  line-height:1.7 !important;
  font-weight:600 !important;
}

/* ===== Employer auth modal ===== */

.emp-auth-required-modal{
  position:fixed !important;
  inset:0 !important;
  z-index:10000 !important;
  display:grid !important;
  place-items:center !important;
  padding:24px !important;
  background:rgba(7,16,28,.66) !important;
  backdrop-filter:blur(14px) !important;
}

.emp-auth-required-modal[hidden]{
  display:none !important;
}

.emp-auth-required-card{
  width:min(500px,100%) !important;
  position:relative !important;
  padding:36px !important;
  border-radius:30px !important;
  background:#fff !important;
  box-shadow:0 28px 80px rgba(0,0,0,.25) !important;
}

.emp-auth-required-close{
  position:absolute !important;
  top:14px !important;
  right:14px !important;
  width:42px !important;
  height:42px !important;
  border:0 !important;
  border-radius:14px !important;
  background:#f1f5f9 !important;
  color:#14243c !important;
  font-size:24px !important;
  cursor:pointer !important;
}

.emp-auth-required-card h3{
  margin:0 0 12px !important;
  color:#102238 !important;
  font-size:30px !important;
  line-height:1.18 !important;
  font-weight:950 !important;
}

.emp-auth-required-card p{
  margin:0 0 24px !important;
  color:#64748b !important;
  font-size:16px !important;
  line-height:1.65 !important;
  font-weight:650 !important;
}

.emp-auth-required-actions{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:12px !important;
}

/* ===== Animations ===== */

@keyframes empFadeIn{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:translateY(0)}
}

@keyframes empBrandMoveFinal{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ===== Responsive ===== */

@media (max-width:1200px){
  .employers-v11 .hm-container{
    width:min(1120px, calc(100% - 42px)) !important;
  }

  .emp-v11-hero-grid,
  .emp-v11-flow-grid,
  .emp-v11-savings-grid,
  .emp-v11-faq-grid{
    grid-template-columns:1fr !important;
  }

  .emp-v11-copy,
  .emp-v11-media-frame{
    min-height:auto !important;
  }

  .emp-v11-media-frame img{
    min-height:520px !important;
  }

  .emp-v11-form-grid{
    grid-template-columns:1fr 1fr !important;
  }

  .emp-v11-submit{
    grid-column:1 / -1 !important;
    width:100% !important;
  }

  .emp-v11-showcase-grid{
    grid-template-columns:1fr !important;
  }

  .emp-v11-what-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  }

  .emp-v11-contact-card{
    position:relative !important;
    top:auto !important;
  }
}

@media (max-width:760px){
  .employers-v11 .hm-container{
    width:calc(100% - 24px) !important;
  }

  .emp-v11-hero{
    padding:92px 0 36px !important;
  }

  .emp-v11-copy{
    padding:30px 20px !important;
    border-radius:30px !important;
  }

  .emp-v11-copy h1{
    font-size:clamp(34px, 10vw, 46px) !important;
    letter-spacing:-1.4px !important;
  }

  .emp-v11-copy p{
    font-size:15px !important;
    line-height:1.6 !important;
  }

  .emp-v11-hero-actions{
    display:grid !important;
    grid-template-columns:1fr !important;
  }

  .emp-v11-primary-btn,
  .emp-v11-secondary-btn,
  .emp-v11-submit{
    width:100% !important;
    min-height:54px !important;
    border-radius:16px !important;
    font-size:15px !important;
  }

  .emp-v11-hero-trust{
    grid-template-columns:1fr !important;
  }

  .emp-v11-media-frame{
    min-height:390px !important;
    border-width:4px !important;
    border-radius:30px !important;
  }

  .emp-v11-media-frame img{
    min-height:390px !important;
  }

  .emp-v11-floating{
    display:none !important;
  }

  .emp-v11-response-card{
    left:16px !important;
    right:16px !important;
    bottom:16px !important;
    width:auto !important;
  }

  .emp-v11-quick-start,
  .emp-v11-flow,
  .emp-v11-showcases,
  .emp-v11-savings,
  .emp-v11-what,
  .emp-v11-brands,
  .emp-v11-faq-contact{
    padding:46px 0 !important;
  }

  .emp-v11-quick-card,
  .emp-v11-contact-card,
  .emp-v11-faq-box{
    padding:22px !important;
    border-radius:26px !important;
  }

  .emp-v11-form-grid{
    grid-template-columns:1fr !important;
  }

  .emp-v11-field input,
  .emp-v11-field .city-picker-toggle{
    min-height:56px !important;
    font-size:15px !important;
    border-radius:16px !important;
  }

  .emp-v11-flow-media{
    min-height:auto !important;
    padding:18px !important;
    border-radius:28px !important;
  }

  .emp-v11-flow-panel img{
    max-height:none !important;
    min-height:260px !important;
  }

  .emp-v11-flow-item{
    padding:18px 18px 18px 70px !important;
    border-radius:20px !important;
  }

  .emp-v11-flow-item small{
    left:16px !important;
    top:18px !important;
    width:38px !important;
    height:38px !important;
  }

  .emp-v11-flow-item strong{
    font-size:18px !important;
  }

  .emp-v11-flow-item p{
    font-size:14px !important;
  }

  .emp-v11-what-grid{
    grid-template-columns:1fr !important;
  }

  .emp-v11-what-grid article{
    min-height:260px !important;
  }

  .emp-v11-logo-card{
    width:170px !important;
    min-width:170px !important;
    height:88px !important;
  }

  .emp-v11-marquee::before,
  .emp-v11-marquee::after{
    width:50px !important;
  }

  .emp-v11-faq-item summary{
    padding:18px !important;
    font-size:17px !important;
  }

  .emp-v11-faq-item div{
    padding:0 18px 18px !important;
    font-size:14px !important;
  }

  .emp-auth-required-card{
    padding:28px 20px !important;
    border-radius:24px !important;
  }
}

@media (max-width:420px){
  .emp-v11-copy h1{
    font-size:32px !important;
  }

  .emp-v11-quick-head h2,
  .emp-v11-flow-list h2,
  .emp-v11-section-head h2,
  .emp-v11-savings-copy h2,
  .emp-v11-what h2,
  .emp-v11-faq-box h2,
  .emp-v11-contact-card h2{
    font-size:26px !important;
  }

  .emp-v11-showcase-card,
  .emp-v11-metric-card,
  .emp-v11-what-grid article{
    padding:20px !important;
    border-radius:24px !important;
  }
}

/* ==========================================================
   Employer auth fullscreen modal v12
   ========================================================== */

body.emp-auth-modal-open{
  overflow:hidden !important;
}

.emp-auth-fullscreen-v12{
  position:fixed !important;
  inset:0 !important;
  z-index:100000 !important;
  display:grid !important;
  place-items:stretch !important;
  padding:0 !important;
  background:transparent !important;
}

.emp-auth-fullscreen-v12[hidden]{
  display:none !important;
}

.emp-auth-fullscreen-backdrop{
  position:absolute !important;
  inset:0 !important;
  background:
    radial-gradient(circle at 12% 10%, rgba(242,107,54,.26), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(4,77,68,.28), transparent 34%),
    rgba(6,17,30,.76) !important;
  backdrop-filter:blur(18px) !important;
}

.emp-auth-fullscreen-shell{
  position:relative !important;
  z-index:2 !important;
  width:100% !important;
  min-height:100vh !important;
  display:grid !important;
  place-items:center !important;
  padding:42px !important;
}

.emp-auth-fullscreen-card{
  width:min(1180px, 100%) !important;
  min-height:min(680px, calc(100vh - 84px)) !important;
  display:grid !important;
  grid-template-columns:.92fr 1.08fr !important;
  overflow:hidden !important;
  border-radius:46px !important;
  background:#fff !important;
  box-shadow:0 40px 130px rgba(0,0,0,.34) !important;
  border:1px solid rgba(255,255,255,.28) !important;
}

.emp-auth-fullscreen-close{
  position:absolute !important;
  top:28px !important;
  right:28px !important;
  z-index:4 !important;
  width:54px !important;
  height:54px !important;
  display:grid !important;
  place-items:center !important;
  border:0 !important;
  border-radius:18px !important;
  background:rgba(255,255,255,.92) !important;
  color:#102238 !important;
  font-size:34px !important;
  line-height:1 !important;
  cursor:pointer !important;
  box-shadow:0 12px 34px rgba(15,23,42,.16) !important;
  transition:.18s ease !important;
}

.emp-auth-fullscreen-close:hover{
  transform:translateY(-1px) !important;
  background:#fff !important;
}

.emp-auth-fullscreen-visual{
  position:relative !important;
  min-height:640px !important;
  overflow:hidden !important;
  padding:42px !important;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.20), transparent 28%),
    linear-gradient(145deg,#044d44,#07223d) !important;
}

.emp-auth-fullscreen-visual::before{
  content:"" !important;
  position:absolute !important;
  inset:44px !important;
  border-radius:38px !important;
  border:1px solid rgba(255,255,255,.18) !important;
}

.emp-auth-fullscreen-visual::after{
  content:"" !important;
  position:absolute !important;
  width:360px !important;
  height:360px !important;
  right:-110px !important;
  bottom:-100px !important;
  border-radius:50% !important;
  background:rgba(242,107,54,.45) !important;
  filter:blur(2px) !important;
}

.emp-auth-visual-logo{
  position:relative !important;
  z-index:2 !important;
  width:96px !important;
  height:96px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:30px !important;
  background:rgba(255,255,255,.12) !important;
  border:1px solid rgba(255,255,255,.20) !important;
  backdrop-filter:blur(12px) !important;
}

.emp-auth-visual-logo .brand-mark i{
  background:#fff !important;
}

.emp-auth-visual-card{
  position:absolute !important;
  z-index:3 !important;
  width:260px !important;
  padding:24px !important;
  border-radius:28px !important;
  background:rgba(255,255,255,.14) !important;
  border:1px solid rgba(255,255,255,.22) !important;
  color:#fff !important;
  backdrop-filter:blur(18px) !important;
  box-shadow:0 22px 56px rgba(0,0,0,.18) !important;
}

.emp-auth-visual-card span{
  display:block !important;
  margin:0 0 10px !important;
  color:rgba(255,255,255,.74) !important;
  font-size:14px !important;
  line-height:1.35 !important;
  font-weight:800 !important;
}

.emp-auth-visual-card strong{
  display:block !important;
  color:#fff !important;
  font-size:38px !important;
  line-height:1 !important;
  letter-spacing:-1px !important;
  font-weight:950 !important;
}

.emp-auth-visual-card-one{
  left:58px !important;
  bottom:96px !important;
}

.emp-auth-visual-card-two{
  right:42px !important;
  top:170px !important;
  background:rgba(242,107,54,.82) !important;
}

.emp-auth-visual-lines{
  position:absolute !important;
  z-index:2 !important;
  left:70px !important;
  right:70px !important;
  top:300px !important;
  display:grid !important;
  gap:18px !important;
}

.emp-auth-visual-lines i{
  display:block !important;
  height:18px !important;
  border-radius:999px !important;
  background:rgba(255,255,255,.16) !important;
}

.emp-auth-visual-lines i:nth-child(1){
  width:72% !important;
}

.emp-auth-visual-lines i:nth-child(2){
  width:92% !important;
}

.emp-auth-visual-lines i:nth-child(3){
  width:58% !important;
}

.emp-auth-fullscreen-content{
  min-width:0 !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  padding:70px 64px !important;
}

.emp-auth-kicker{
  width:max-content !important;
  max-width:100% !important;
  display:inline-flex !important;
  align-items:center !important;
  min-height:36px !important;
  margin:0 0 20px !important;
  padding:0 14px !important;
  border-radius:999px !important;
  background:#eaf7f3 !important;
  color:#047263 !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.emp-auth-fullscreen-content h3{
  margin:0 0 18px !important;
  color:#102238 !important;
  font-size:clamp(36px, 4vw, 58px) !important;
  line-height:1.05 !important;
  letter-spacing:-1.6px !important;
  font-weight:950 !important;
}

.emp-auth-fullscreen-content p{
  max-width:640px !important;
  margin:0 0 28px !important;
  color:#64748b !important;
  font-size:18px !important;
  line-height:1.7 !important;
  font-weight:650 !important;
}

.emp-auth-benefits{
  display:grid !important;
  gap:12px !important;
  margin:0 0 34px !important;
}

.emp-auth-benefits span{
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  color:#334155 !important;
  font-size:15px !important;
  line-height:1.45 !important;
  font-weight:800 !important;
}

.emp-auth-benefits i{
  width:28px !important;
  height:28px !important;
  display:grid !important;
  place-items:center !important;
  flex:0 0 28px !important;
  border-radius:50% !important;
  background:#e8fff0 !important;
  color:#15803d !important;
  font-size:13px !important;
}

.emp-auth-fullscreen-actions{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:12px !important;
}

.emp-auth-fullscreen-actions .emp-v11-primary-btn,
.emp-auth-fullscreen-actions .emp-v11-secondary-btn,
.emp-auth-register-btn{
  min-height:58px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px !important;
  padding:0 22px !important;
  border-radius:18px !important;
  font-size:15px !important;
  line-height:1 !important;
  font-weight:950 !important;
  cursor:pointer !important;
}

.emp-auth-register-btn{
  border:1px solid #dbe4ed !important;
  background:#fff !important;
  color:#044d44 !important;
  box-shadow:0 10px 24px rgba(15,23,42,.06) !important;
}

.emp-auth-login-btn{
  min-width:170px !important;
}

/* login/register auth modal tepaga chiqsin */
.auth-ui-modal,
.auth-fullscreen-modal,
#loginModal,
#registerModal{
  z-index:100200 !important;
}

/* Employer auth modal ochilganda auth modal ham to‘g‘ri ustiga chiqsin */
body.auth-modal-open .emp-auth-fullscreen-v12{
  z-index:99990 !important;
}

@media (max-width:980px){
  .emp-auth-fullscreen-shell{
    padding:20px !important;
  }

  .emp-auth-fullscreen-card{
    min-height:auto !important;
    grid-template-columns:1fr !important;
    border-radius:32px !important;
  }

  .emp-auth-fullscreen-visual{
    min-height:240px !important;
    padding:24px !important;
  }

  .emp-auth-fullscreen-visual::before{
    inset:20px !important;
    border-radius:24px !important;
  }

  .emp-auth-visual-logo{
    width:70px !important;
    height:70px !important;
    border-radius:22px !important;
  }

  .emp-auth-visual-card{
    width:220px !important;
    padding:18px !important;
    border-radius:22px !important;
  }

  .emp-auth-visual-card strong{
    font-size:30px !important;
  }

  .emp-auth-visual-card-one{
    left:24px !important;
    bottom:24px !important;
  }

  .emp-auth-visual-card-two{
    right:24px !important;
    top:28px !important;
  }

  .emp-auth-visual-lines{
    display:none !important;
  }

  .emp-auth-fullscreen-content{
    padding:34px 24px 28px !important;
  }
}

@media (max-width:620px){
  .emp-auth-fullscreen-shell{
    align-items:stretch !important;
    padding:0 !important;
  }

  .emp-auth-fullscreen-card{
    width:100% !important;
    min-height:100vh !important;
    border-radius:0 !important;
  }

  .emp-auth-fullscreen-close{
    top:14px !important;
    right:14px !important;
    width:46px !important;
    height:46px !important;
    border-radius:15px !important;
    font-size:30px !important;
  }

  .emp-auth-fullscreen-visual{
    min-height:220px !important;
  }

  .emp-auth-visual-card{
    width:190px !important;
  }

  .emp-auth-visual-card span{
    font-size:12px !important;
  }

  .emp-auth-visual-card strong{
    font-size:26px !important;
  }

  .emp-auth-fullscreen-content{
    justify-content:flex-start !important;
    padding:28px 18px 34px !important;
  }

  .emp-auth-fullscreen-content h3{
    font-size:31px !important;
    letter-spacing:-.9px !important;
  }

  .emp-auth-fullscreen-content p{
    font-size:15px !important;
    line-height:1.6 !important;
  }

  .emp-auth-fullscreen-actions{
    display:grid !important;
    grid-template-columns:1fr !important;
  }

  .emp-auth-fullscreen-actions .emp-v11-primary-btn,
  .emp-auth-fullscreen-actions .emp-v11-secondary-btn,
  .emp-auth-register-btn{
    width:100% !important;
    min-height:54px !important;
  }
}

/* ==========================================================
   Employer Hero v13 — modern left content + right landscape image
   ========================================================== */

.emp-v13-hero{
  position:relative;
  min-height:760px;
  padding:138px 0 86px;
  overflow:hidden;
  background:
    linear-gradient(135deg,#eef7f4 0%,#f8fafc 42%,#fff3ec 100%);
  isolation:isolate;
}

.emp-v13-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-3;
  background-image:
    linear-gradient(rgba(15,23,42,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.045) 1px, transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.10));
}

.emp-v13-bg{
  position:absolute;
  inset:0;
  z-index:-2;
  pointer-events:none;
}

.emp-v13-orb{
  position:absolute;
  display:block;
  border-radius:999px;
  filter:blur(4px);
  opacity:.78;
}

.emp-v13-orb-one{
  width:460px;
  height:460px;
  left:-160px;
  top:60px;
  background:radial-gradient(circle, rgba(0,79,67,.22), transparent 68%);
}

.emp-v13-orb-two{
  width:520px;
  height:520px;
  right:-170px;
  top:40px;
  background:radial-gradient(circle, rgba(248,100,54,.24), transparent 68%);
}

.emp-v13-orb-three{
  width:360px;
  height:360px;
  left:44%;
  bottom:-160px;
  background:radial-gradient(circle, rgba(59,130,246,.14), transparent 70%);
}

.emp-v13-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0, .92fr) minmax(520px, 1.08fr);
  gap:54px;
  align-items:center;
}

.emp-v13-left{
  min-width:0;
}

.emp-v13-kicker{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 24px;
}

.emp-v13-kicker span{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  padding:0 15px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(0,79,67,.13);
  color:#004f43;
  box-shadow:0 12px 28px rgba(15,23,42,.055);
  backdrop-filter:blur(14px);
  font-size:13px;
  line-height:1;
  font-weight:950;
}

.emp-v13-left h1{
  max-width:760px;
  margin:0 0 24px;
  color:#0f2137;
  font-size:clamp(46px, 5vw, 78px);
  line-height:.98;
  letter-spacing:-3px;
  font-weight:950;
}

.emp-v13-lead{
  max-width:670px;
  margin:0 0 30px;
  color:#5f6f84;
  font-size:18px;
  line-height:1.72;
  font-weight:650;
}

.emp-v13-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:0 0 30px;
}

.emp-v13-primary,
.emp-v13-secondary{
  min-height:60px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 26px;
  border-radius:20px;
  font-size:16px;
  line-height:1;
  font-weight:950;
  transition:.18s ease;
}

.emp-v13-primary{
  background:linear-gradient(135deg,#004f43,#087665);
  color:#fff;
  box-shadow:0 18px 38px rgba(0,79,67,.24);
}

.emp-v13-secondary{
  background:rgba(255,255,255,.76);
  color:#0f2137;
  border:1px solid rgba(203,213,225,.9);
  box-shadow:0 14px 32px rgba(15,23,42,.06);
  backdrop-filter:blur(14px);
}

.emp-v13-primary:hover,
.emp-v13-secondary:hover{
  transform:translateY(-2px);
}

.emp-v13-features{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin:0 0 18px;
}

.emp-v13-features article{
  min-height:164px;
  padding:18px;
  border-radius:24px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(226,232,240,.95);
  box-shadow:0 18px 44px rgba(15,23,42,.055);
  backdrop-filter:blur(16px);
}

.emp-v13-features b{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  margin:0 0 14px;
  border-radius:14px;
  background:#e8f7f3;
  color:#004f43;
  font-size:13px;
  line-height:1;
  font-weight:950;
}

.emp-v13-features strong{
  display:block;
  margin:0 0 8px;
  color:#0f2137;
  font-size:16px;
  line-height:1.25;
  font-weight:950;
}

.emp-v13-features span{
  display:block;
  color:#64748b;
  font-size:13px;
  line-height:1.5;
  font-weight:650;
}

.emp-v13-stats{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.emp-v13-stats div{
  min-height:86px;
  padding:16px;
  border-radius:22px;
  background:rgba(0,79,67,.07);
  border:1px solid rgba(0,79,67,.12);
}

.emp-v13-stats strong{
  display:block;
  margin:0 0 7px;
  color:#004f43;
  font-size:24px;
  line-height:1;
  letter-spacing:-.7px;
  font-weight:950;
}

.emp-v13-stats span{
  display:block;
  color:#5f6f84;
  font-size:13px;
  line-height:1.35;
  font-weight:800;
}

/* right image */

.emp-v13-right{
  min-width:0;
}

.emp-v13-image-wrap{
  position:relative;
  width:100%;
  aspect-ratio:16 / 10;
  min-height:610px;
  overflow:hidden;
  border-radius:46px;
  background:#dce9e7;
  border:1px solid rgba(255,255,255,.72);
  box-shadow:
    0 42px 110px rgba(15,23,42,.18),
    inset 0 1px 0 rgba(255,255,255,.55);
}

.emp-v13-image-wrap::before{
  content:"";
  position:absolute;
  inset:18px;
  z-index:2;
  border-radius:34px;
  border:1px solid rgba(255,255,255,.34);
  pointer-events:none;
}

.emp-v13-image-wrap img{
  width:100%;
  height:100%;
  min-height:610px;
  display:block;
  object-fit:cover;
  object-position:center;
  transform:scale(1.015);
}

.emp-v13-image-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(0,79,67,.12), rgba(0,0,0,0) 44%, rgba(15,23,42,.36)),
    linear-gradient(180deg, rgba(15,23,42,.04), rgba(15,23,42,.32));
  pointer-events:none;
}

.emp-v13-live-card{
  position:absolute;
  z-index:5;
  right:30px;
  bottom:30px;
  width:min(360px, calc(100% - 60px));
  padding:22px;
  border-radius:28px;
  background:rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.70);
  box-shadow:0 24px 60px rgba(15,23,42,.22);
  backdrop-filter:blur(18px);
}

.emp-v13-live-card span{
  display:block;
  margin:0 0 8px;
  color:#64748b;
  font-size:13px;
  line-height:1.25;
  font-weight:850;
}

.emp-v13-live-card strong{
  display:block;
  margin:0 0 14px;
  color:#0f2137;
  font-size:21px;
  line-height:1.18;
  font-weight:950;
}

.emp-v13-live-card div{
  height:12px;
  overflow:hidden;
  margin:0 0 12px;
  border-radius:999px;
  background:#e2e8f0;
}

.emp-v13-live-card div i{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg,#16a34a,#86efac);
}

.emp-v13-live-card em{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#dcfce7;
  color:#15803d;
  font-style:normal;
  font-size:13px;
  line-height:1;
  font-weight:950;
}

.emp-v13-ai-chip{
  position:absolute;
  z-index:6;
  left:30px;
  bottom:30px;
  min-width:250px;
  min-height:68px;
  display:flex;
  align-items:center;
  gap:14px;
  padding:0 18px;
  border-radius:24px;
  background:rgba(248,100,54,.92);
  color:#fff;
  box-shadow:0 24px 60px rgba(248,100,54,.28);
  backdrop-filter:blur(18px);
}

.emp-v13-ai-chip b{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:rgba(255,255,255,.20);
  font-size:15px;
  font-weight:950;
}

.emp-v13-ai-chip span{
  font-size:15px;
  line-height:1.25;
  font-weight:950;
}

.emp-v13-mini-card{
  position:absolute;
  z-index:6;
  min-width:190px;
  padding:18px;
  border-radius:24px;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(255,255,255,.65);
  box-shadow:0 22px 54px rgba(15,23,42,.18);
  backdrop-filter:blur(18px);
}

.emp-v13-mini-card strong{
  display:block;
  margin:0 0 5px;
  color:#004f43;
  font-size:30px;
  line-height:1;
  font-weight:950;
}

.emp-v13-mini-card span{
  display:block;
  color:#64748b;
  font-size:13px;
  line-height:1.35;
  font-weight:800;
}

.emp-v13-mini-top{
  right:42px;
  top:42px;
}

.emp-v13-mini-bottom{
  left:42px;
  top:42px;
}

/* Responsive */

@media (max-width:1300px){
  .emp-v13-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .emp-v13-left h1,
  .emp-v13-lead{
    max-width:900px;
  }

  .emp-v13-image-wrap{
    min-height:520px;
  }

  .emp-v13-image-wrap img{
    min-height:520px;
  }
}

@media (max-width:900px){
  .emp-v13-hero{
    min-height:auto;
    padding:96px 0 54px;
  }

  .emp-v13-features{
    grid-template-columns:1fr;
  }

  .emp-v13-stats{
    grid-template-columns:1fr;
  }

  .emp-v13-stats div{
    min-height:auto;
  }

  .emp-v13-image-wrap{
    min-height:420px;
    border-radius:34px;
  }

  .emp-v13-image-wrap img{
    min-height:420px;
  }

  .emp-v13-mini-card{
    display:none;
  }
}

@media (max-width:640px){
  .emp-v13-hero{
    padding:82px 0 40px;
  }

  .emp-v13-left h1{
    font-size:36px;
    line-height:1.05;
    letter-spacing:-1.2px;
  }

  .emp-v13-lead{
    font-size:15px;
    line-height:1.62;
  }

  .emp-v13-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .emp-v13-primary,
  .emp-v13-secondary{
    width:100%;
    min-height:54px;
    border-radius:17px;
  }

  .emp-v13-image-wrap{
    min-height:330px;
    aspect-ratio:16 / 11;
    border-radius:28px;
  }

  .emp-v13-image-wrap img{
    min-height:330px;
  }

  .emp-v13-image-wrap::before{
    inset:12px;
    border-radius:22px;
  }

  .emp-v13-ai-chip{
    left:16px;
    bottom:16px;
    min-width:0;
    width:calc(100% - 32px);
    min-height:58px;
    border-radius:20px;
  }

  .emp-v13-live-card{
    display:none;
  }
}

@media (max-width:420px){
  .emp-v13-left h1{
    font-size:31px;
  }

  .emp-v13-kicker span{
    width:100%;
    justify-content:center;
  }

  .emp-v13-image-wrap{
    min-height:290px;
  }

  .emp-v13-image-wrap img{
    min-height:290px;
  }
}

/* ==========================================================
   Employer quick vacancy form v14
   Modern AI launch panel
   ========================================================== */

.emp-v14-quick-start{
  position:relative;
  padding:92px 0 104px !important;
  overflow:hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(0,79,67,.16), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(248,100,54,.15), transparent 32%),
    linear-gradient(135deg,#f7fbfa 0%,#f8fafc 46%,#fff4ee 100%) !important;
}

.emp-v14-quick-start::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(15,23,42,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.045) 1px, transparent 1px);
  background-size:44px 44px;
  opacity:.65;
  pointer-events:none;
}

.emp-v14-quick-shell{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(0, .92fr) minmax(430px, .78fr);
  gap:44px;
  align-items:stretch;
}

.emp-v14-quick-left{
  min-width:0;
  padding:48px 0;
}

.emp-v14-kicker{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  margin:0 0 22px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,79,67,.14);
  color:#004f43;
  box-shadow:0 12px 28px rgba(15,23,42,.055);
  backdrop-filter:blur(14px);
  font-size:13px;
  line-height:1;
  font-weight:950;
}

.emp-v14-quick-left h2{
  max-width:780px;
  margin:0 0 22px;
  color:#0f2137;
  font-size:clamp(36px, 4.2vw, 64px);
  line-height:1.04;
  letter-spacing:-2px;
  font-weight:950;
}

.emp-v14-quick-left > p{
  max-width:720px;
  margin:0 0 30px;
  color:#64748b;
  font-size:18px;
  line-height:1.72;
  font-weight:650;
}

.emp-v14-benefits{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.emp-v14-benefits article{
  min-height:190px;
  padding:20px;
  border-radius:26px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(226,232,240,.94);
  box-shadow:0 20px 48px rgba(15,23,42,.06);
  backdrop-filter:blur(16px);
}

.emp-v14-benefits b{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  margin:0 0 16px;
  border-radius:15px;
  background:#e8f7f3;
  color:#004f43;
  font-size:13px;
  line-height:1;
  font-weight:950;
}

.emp-v14-benefits strong{
  display:block;
  margin:0 0 9px;
  color:#0f2137;
  font-size:18px;
  line-height:1.25;
  font-weight:950;
}

.emp-v14-benefits span{
  display:block;
  color:#64748b;
  font-size:14px;
  line-height:1.55;
  font-weight:650;
}

/* right card */

.emp-v14-quick-right{
  min-width:0;
  display:flex;
  align-items:center;
}

.emp-v14-form-card{
  position:relative;
  width:100%;
  padding:34px;
  overflow:hidden;
  border-radius:38px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
    radial-gradient(circle at 88% 0, rgba(248,100,54,.16), transparent 34%);
  border:1px solid rgba(226,232,240,.95);
  box-shadow:
    0 34px 92px rgba(15,23,42,.12),
    inset 0 1px 0 rgba(255,255,255,.78);
  backdrop-filter:blur(18px);
}

.emp-v14-form-card::before{
  content:"";
  position:absolute;
  width:180px;
  height:180px;
  right:-70px;
  top:-70px;
  border-radius:50%;
  background:rgba(0,79,67,.10);
}

.emp-v14-form-card::after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  left:-120px;
  bottom:-120px;
  border-radius:50%;
  background:rgba(248,100,54,.12);
}

.emp-v14-form-head,
.emp-v14-launch-form{
  position:relative;
  z-index:2;
}

.emp-v14-form-head{
  margin:0 0 24px;
}

.emp-v14-form-head span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  margin:0 0 14px;
  padding:0 13px;
  border-radius:999px;
  background:#eaf7f3;
  color:#047263;
  font-size:12px;
  line-height:1;
  font-weight:950;
}

.emp-v14-form-head h3{
  margin:0 0 10px;
  color:#0f2137;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-1px;
  font-weight:950;
}

.emp-v14-form-head p{
  margin:0;
  color:#64748b;
  font-size:15px;
  line-height:1.6;
  font-weight:650;
}

.emp-v14-launch-form{
  display:grid;
  gap:15px;
}

.emp-v14-field{
  display:block;
  min-width:0;
}

.emp-v14-field > span,
.emp-v14-field .field-caption{
  display:block;
  margin:0 0 8px;
  color:#475569;
  font-size:13px;
  line-height:1.2;
  font-weight:900;
}

.emp-v14-field input,
.emp-v14-region-toggle{
  width:100%;
  min-height:62px;
  border:1px solid #dbe4ed;
  border-radius:19px;
  background:#f8fafc;
  color:#0f2137;
  padding:0 18px;
  outline:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85);
  font-size:16px;
  font-weight:800;
  transition:.18s ease;
}

.emp-v14-field input:focus,
.emp-v14-region-toggle:focus{
  border-color:rgba(0,79,67,.42);
  background:#fff;
  box-shadow:0 0 0 4px rgba(0,79,67,.08);
}

.emp-v14-region-toggle{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  text-align:left;
  cursor:pointer;
}

.emp-v14-region-toggle .field-caption{
  margin:0 0 5px;
  color:#94a3b8;
  font-size:12px;
}

.emp-v14-region-toggle strong{
  display:block;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#0f2137;
  font-size:16px;
  line-height:1.2;
  font-weight:950;
}

.emp-v14-submit{
  width:100%;
  min-height:64px;
  border:0;
  border-radius:20px;
  background:linear-gradient(135deg,#004f43,#087665);
  color:#fff;
  cursor:pointer;
  box-shadow:0 18px 38px rgba(0,79,67,.24);
  font-size:16px;
  line-height:1;
  font-weight:950;
  transition:.18s ease;
}

.emp-v14-submit:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 52px rgba(0,79,67,.30);
}

.emp-v14-form-error{
  margin:2px 0 0 !important;
  padding:13px 15px !important;
  border-radius:16px !important;
  background:#fff1f2 !important;
  color:#be123c !important;
  font-size:14px !important;
  line-height:1.4 !important;
  font-weight:900 !important;
}

.emp-v14-popular{
  margin:10px 0 0;
  padding:18px;
  border-radius:22px;
  background:rgba(248,250,252,.88);
  border:1px solid #e8eef5;
}

.emp-v14-popular b{
  display:block;
  margin:0 0 12px;
  color:#334155;
  font-size:14px;
  line-height:1.2;
  font-weight:950;
}

.emp-v14-popular-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.emp-v14-chip{
  min-height:36px;
  display:inline-flex;
  align-items:center;
  border:0;
  border-radius:999px;
  padding:0 13px;
  background:#fff;
  color:#0f2137;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(15,23,42,.045);
  font-size:13px;
  line-height:1;
  font-weight:850;
  transition:.18s ease;
}

.emp-v14-chip:hover{
  background:#e8f7f3;
  color:#004f43;
  transform:translateY(-1px);
}

/* fullscreen region modal better inside employer form */

.emp-v14-form-card .city-picker-full-modal{
  z-index:100010;
}

.emp-v14-form-card .city-picker-manual-btn{
  border-radius:16px;
  background:#004f43;
  color:#fff;
  font-weight:900;
}

/* responsive */

@media (max-width:1200px){
  .emp-v14-quick-shell{
    grid-template-columns:1fr;
    gap:28px;
  }

  .emp-v14-quick-left{
    padding:0;
  }

  .emp-v14-benefits{
    grid-template-columns:1fr;
  }

  .emp-v14-benefits article{
    min-height:auto;
  }
}

@media (max-width:760px){
  .emp-v14-quick-start{
    padding:54px 0 62px !important;
  }

  .emp-v14-quick-left h2{
    font-size:32px;
    letter-spacing:-1px;
  }

  .emp-v14-quick-left > p{
    font-size:15px;
    line-height:1.62;
  }

  .emp-v14-form-card{
    padding:22px;
    border-radius:28px;
  }

  .emp-v14-form-head h3{
    font-size:28px;
  }

  .emp-v14-field input,
  .emp-v14-region-toggle{
    min-height:56px;
    border-radius:17px;
    font-size:15px;
  }

  .emp-v14-submit{
    min-height:56px;
    border-radius:17px;
    font-size:15px;
  }

  .emp-v14-popular{
    padding:14px;
    border-radius:18px;
  }
}

@media (max-width:420px){
  .emp-v14-quick-left h2{
    font-size:29px;
  }

  .emp-v14-kicker{
    width:100%;
    justify-content:center;
  }

  .emp-v14-form-card{
    padding:18px;
  }
}

/* ==========================================================
   Employer Flow v15 — modern AI workflow section
   ========================================================== */

.emp-v15-flow{
  position:relative;
  padding:104px 0 116px;
  overflow:hidden;
  background:
    linear-gradient(135deg,#061b2e 0%,#073b35 48%,#0b1b32 100%);
  color:#fff;
  isolation:isolate;
}

.emp-v15-flow::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-3;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size:46px 46px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.18));
}

.emp-v15-flow-bg{
  position:absolute;
  inset:0;
  z-index:-2;
  pointer-events:none;
}

.emp-v15-flow-bg span{
  position:absolute;
  display:block;
  border-radius:50%;
  filter:blur(5px);
}

.emp-v15-flow-bg span:nth-child(1){
  width:520px;
  height:520px;
  left:-180px;
  top:-120px;
  background:radial-gradient(circle, rgba(20,184,166,.34), transparent 68%);
}

.emp-v15-flow-bg span:nth-child(2){
  width:520px;
  height:520px;
  right:-190px;
  top:60px;
  background:radial-gradient(circle, rgba(248,100,54,.33), transparent 68%);
}

.emp-v15-flow-bg span:nth-child(3){
  width:420px;
  height:420px;
  left:42%;
  bottom:-220px;
  background:radial-gradient(circle, rgba(59,130,246,.20), transparent 70%);
}

.emp-v15-flow-head{
  max-width:880px;
  margin:0 auto 52px;
  text-align:center;
}

.emp-v15-flow-head span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  margin:0 0 18px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color:#9df3df;
  backdrop-filter:blur(16px);
  font-size:13px;
  line-height:1;
  font-weight:950;
}

.emp-v15-flow-head h2{
  margin:0 0 18px;
  color:#fff;
  font-size:clamp(36px, 4.2vw, 64px);
  line-height:1.04;
  letter-spacing:-2px;
  font-weight:950;
}

.emp-v15-flow-head p{
  max-width:720px;
  margin:0 auto;
  color:rgba(255,255,255,.72);
  font-size:17px;
  line-height:1.72;
  font-weight:650;
}

.emp-v15-flow-grid{
  display:grid;
  grid-template-columns:minmax(360px,.82fr) minmax(0,1.18fr);
  gap:42px;
  align-items:center;
}

/* left step list */

.emp-v15-flow-left{
  min-width:0;
}

.emp-v15-step-list{
  display:grid;
  gap:14px;
}

.emp-v15-step-item{
  position:relative;
  width:100%;
  display:grid;
  grid-template-columns:56px 1fr 34px;
  gap:16px;
  align-items:center;
  min-height:112px;
  padding:18px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:28px;
  background:rgba(255,255,255,.08);
  color:#fff;
  text-align:left;
  cursor:pointer;
  backdrop-filter:blur(18px);
  box-shadow:0 18px 44px rgba(0,0,0,.12);
  transition:.2s ease;
}

.emp-v15-step-item:hover{
  transform:translateX(4px);
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.24);
}

.emp-v15-step-item.is-active{
  background:#fff;
  color:#0f2137;
  border-color:#fff;
  box-shadow:0 24px 66px rgba(0,0,0,.22);
  transform:translateX(8px);
}

.emp-v15-step-num{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:19px;
  background:rgba(255,255,255,.12);
  color:#9df3df;
  font-size:17px;
  line-height:1;
  font-weight:950;
}

.emp-v15-step-item.is-active .emp-v15-step-num{
  background:#e8f7f3;
  color:#004f43;
}

.emp-v15-step-content{
  min-width:0;
  display:block;
}

.emp-v15-step-content strong{
  display:block;
  margin:0 0 7px;
  color:inherit;
  font-size:20px;
  line-height:1.22;
  letter-spacing:-.3px;
  font-weight:950;
}

.emp-v15-step-content em{
  display:block;
  color:rgba(255,255,255,.66);
  font-style:normal;
  font-size:14px;
  line-height:1.48;
  font-weight:650;
}

.emp-v15-step-item.is-active .emp-v15-step-content em{
  color:#64748b;
}

.emp-v15-step-item > i{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:inherit;
  font-style:normal;
  font-size:18px;
  line-height:1;
  transition:.2s ease;
}

.emp-v15-step-item.is-active > i{
  background:#004f43;
  color:#fff;
}

/* right preview */

.emp-v15-flow-right{
  min-width:0;
}

.emp-v15-preview-shell{
  position:relative;
  overflow:visible;
  padding:18px;
  border-radius:42px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 42px 120px rgba(0,0,0,.24);
  backdrop-filter:blur(20px);
}

.emp-v15-preview-top{
  height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0 22px;
  border-radius:26px 26px 0 0;
  background:rgba(255,255,255,.92);
  color:#0f2137;
}

.emp-v15-preview-top div{
  display:flex;
  gap:7px;
}

.emp-v15-preview-top b{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#e2e8f0;
}

.emp-v15-preview-top b:nth-child(1){
  background:#f87171;
}

.emp-v15-preview-top b:nth-child(2){
  background:#fbbf24;
}

.emp-v15-preview-top b:nth-child(3){
  background:#34d399;
}

.emp-v15-preview-top span{
  color:#475569;
  font-size:13px;
  line-height:1;
  font-weight:900;
}

.emp-v15-preview-body{
  position:relative;
  min-height:560px;
  overflow:hidden;
  border-radius:0 0 30px 30px;
  background:#f8fafc;
}

.emp-v15-flow-panel{
  position:absolute;
  inset:0;
  display:none;
}

.emp-v15-flow-panel.is-active{
  display:block;
  animation:empV15Fade .28s ease both;
}

.emp-v15-flow-panel img{
  width:100%;
  min-height:560px;
  object-fit:cover;
  object-position:center;
  display:block;
}

.emp-v15-flow-panel::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(15,23,42,.18), rgba(15,23,42,.02) 48%, rgba(15,23,42,.26)),
    linear-gradient(180deg, rgba(15,23,42,.02), rgba(15,23,42,.38));
  pointer-events:none;
}

.emp-v15-panel-caption{
  position:absolute;
  left:28px;
  bottom:28px;
  z-index:3;
  width:min(420px, calc(100% - 56px));
  padding:22px;
  border-radius:26px;
  background:rgba(255,255,255,.90);
  border:1px solid rgba(255,255,255,.66);
  box-shadow:0 24px 60px rgba(15,23,42,.20);
  backdrop-filter:blur(18px);
}

.emp-v15-panel-caption small{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  margin:0 0 12px;
  border-radius:15px;
  background:#e8f7f3;
  color:#004f43;
  font-size:14px;
  line-height:1;
  font-weight:950;
}

.emp-v15-panel-caption strong{
  display:block;
  margin:0 0 8px;
  color:#0f2137;
  font-size:24px;
  line-height:1.2;
  font-weight:950;
}

.emp-v15-panel-caption span{
  display:block;
  color:#64748b;
  font-size:14px;
  line-height:1.55;
  font-weight:650;
}

.emp-v15-preview-floating{
  position:absolute;
  z-index:7;
  min-width:190px;
  padding:18px;
  border-radius:24px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.66);
  color:#0f2137;
  box-shadow:0 24px 60px rgba(0,0,0,.22);
  backdrop-filter:blur(18px);
}

.emp-v15-preview-floating strong{
  display:block;
  margin:0 0 6px;
  color:#004f43;
  font-size:32px;
  line-height:1;
  font-weight:950;
}

.emp-v15-preview-floating span{
  display:block;
  color:#64748b;
  font-size:13px;
  line-height:1.35;
  font-weight:800;
}

.emp-v15-preview-floating-one{
  right:-24px;
  top:112px;
}

.emp-v15-preview-floating-two{
  left:-24px;
  top:210px;
}

.emp-v15-preview-floating-two strong{
  color:#f86436;
}

@keyframes empV15Fade{
  from{
    opacity:0;
    transform:scale(1.015);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

/* Responsive */

@media (max-width:1200px){
  .emp-v15-flow-grid{
    grid-template-columns:1fr;
  }

  .emp-v15-step-item.is-active,
  .emp-v15-step-item:hover{
    transform:none;
  }

  .emp-v15-preview-floating-one{
    right:24px;
  }

  .emp-v15-preview-floating-two{
    left:24px;
  }
}

@media (max-width:760px){
  .emp-v15-flow{
    padding:62px 0 72px;
  }

  .emp-v15-flow-head{
    text-align:left;
    margin-bottom:32px;
  }

  .emp-v15-flow-head h2{
    font-size:31px;
    letter-spacing:-1px;
  }

  .emp-v15-flow-head p{
    font-size:15px;
    line-height:1.62;
  }

  .emp-v15-step-item{
    grid-template-columns:48px 1fr;
    min-height:auto;
    padding:16px;
    border-radius:22px;
  }

  .emp-v15-step-num{
    width:48px;
    height:48px;
    border-radius:16px;
  }

  .emp-v15-step-item > i{
    display:none;
  }

  .emp-v15-step-content strong{
    font-size:17px;
  }

  .emp-v15-step-content em{
    font-size:13px;
  }

  .emp-v15-preview-shell{
    padding:12px;
    border-radius:30px;
  }

  .emp-v15-preview-body{
    min-height:360px;
    border-radius:0 0 22px 22px;
  }

  .emp-v15-flow-panel img{
    min-height:360px;
  }

  .emp-v15-panel-caption{
    left:14px;
    right:14px;
    bottom:14px;
    width:auto;
    padding:16px;
    border-radius:20px;
  }

  .emp-v15-panel-caption small{
    width:34px;
    height:34px;
    border-radius:12px;
    margin-bottom:9px;
  }

  .emp-v15-panel-caption strong{
    font-size:18px;
  }

  .emp-v15-panel-caption span{
    font-size:13px;
  }

  .emp-v15-preview-floating{
    display:none;
  }
}

@media (max-width:420px){
  .emp-v15-flow-head h2{
    font-size:28px;
  }

  .emp-v15-preview-body{
    min-height:320px;
  }

  .emp-v15-flow-panel img{
    min-height:320px;
  }
}

/* ==========================================================
   Employer What HandyMens Does v16
   Premium service cards section
   ========================================================== */

.emp-v16-what{
  position:relative;
  padding:112px 0 120px;
  overflow:hidden;
  background:
    linear-gradient(135deg,#f7fbfa 0%,#f8fafc 48%,#fff4ee 100%);
  isolation:isolate;
}

.emp-v16-what::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-3;
  background-image:
    linear-gradient(rgba(15,23,42,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.045) 1px, transparent 1px);
  background-size:46px 46px;
  opacity:.72;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.76), rgba(0,0,0,.16));
}

.emp-v16-what-bg{
  position:absolute;
  inset:0;
  z-index:-2;
  pointer-events:none;
}

.emp-v16-what-bg span{
  position:absolute;
  display:block;
  border-radius:999px;
  filter:blur(5px);
}

.emp-v16-what-bg span:nth-child(1){
  width:520px;
  height:520px;
  left:-190px;
  top:40px;
  background:radial-gradient(circle, rgba(0,79,67,.18), transparent 68%);
}

.emp-v16-what-bg span:nth-child(2){
  width:520px;
  height:520px;
  right:-190px;
  bottom:-120px;
  background:radial-gradient(circle, rgba(248,100,54,.18), transparent 68%);
}

.emp-v16-what-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:minmax(340px,.78fr) minmax(0,1.22fr);
  gap:54px;
  align-items:center;
}

.emp-v16-what-left{
  min-width:0;
  position:sticky;
  top:110px;
}

.emp-v16-kicker{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  margin:0 0 22px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,79,67,.14);
  color:#004f43;
  box-shadow:0 12px 28px rgba(15,23,42,.055);
  backdrop-filter:blur(14px);
  font-size:13px;
  line-height:1;
  font-weight:950;
}

.emp-v16-what-left h2{
  max-width:640px;
  margin:0 0 22px;
  color:#0f2137;
  font-size:clamp(38px,4.2vw,66px);
  line-height:1.02;
  letter-spacing:-2.2px;
  font-weight:950;
}

.emp-v16-what-left p{
  max-width:610px;
  margin:0 0 32px;
  color:#64748b;
  font-size:18px;
  line-height:1.74;
  font-weight:650;
}

.emp-v16-what-actions{
  display:grid;
  gap:14px;
  max-width:560px;
}

.emp-v16-primary{
  width:max-content;
  min-height:60px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 28px;
  border-radius:20px;
  background:linear-gradient(135deg,#004f43,#087665);
  color:#fff;
  box-shadow:0 18px 38px rgba(0,79,67,.24);
  font-size:16px;
  line-height:1;
  font-weight:950;
  transition:.18s ease;
}

.emp-v16-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 52px rgba(0,79,67,.30);
}

.emp-v16-what-actions span{
  color:#64748b;
  font-size:14px;
  line-height:1.55;
  font-weight:750;
}

/* cards */

.emp-v16-what-right{
  min-width:0;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

.emp-v16-card{
  position:relative;
  min-height:330px;
  overflow:hidden;
  padding:28px;
  border-radius:34px;
  border:1px solid rgba(226,232,240,.95);
  box-shadow:0 26px 70px rgba(15,23,42,.08);
  transition:.2s ease;
}

.emp-v16-card:hover{
  transform:translateY(-5px);
  box-shadow:0 34px 86px rgba(15,23,42,.13);
}

.emp-v16-card::before{
  content:"";
  position:absolute;
  width:230px;
  height:230px;
  right:-105px;
  top:-105px;
  border-radius:50%;
  background:rgba(255,255,255,.16);
}

.emp-v16-card::after{
  content:"";
  position:absolute;
  right:22px;
  bottom:16px;
  color:currentColor;
  opacity:.08;
  font-size:170px;
  line-height:1;
  font-weight:950;
}

.emp-v16-card:nth-child(1)::after{content:"01"}
.emp-v16-card:nth-child(2)::after{content:"02"}
.emp-v16-card:nth-child(3)::after{content:"03"}
.emp-v16-card:nth-child(4)::after{content:"04"}

.emp-v16-card-top{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin:0 0 38px;
}

.emp-v16-card-top b{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:rgba(255,255,255,.18);
  color:inherit;
  font-size:15px;
  line-height:1;
  font-weight:950;
}

.emp-v16-card-top i{
  width:58px;
  height:58px;
  display:block;
  border-radius:20px;
  background:
    radial-gradient(circle at 50% 50%, currentColor 0 18%, transparent 19%),
    linear-gradient(135deg, rgba(255,255,255,.20), rgba(255,255,255,.08));
  opacity:.92;
}

.emp-v16-card h3{
  position:relative;
  z-index:2;
  max-width:360px;
  margin:0 0 14px;
  color:inherit;
  font-size:28px;
  line-height:1.15;
  letter-spacing:-.7px;
  font-weight:950;
}

.emp-v16-card p{
  position:relative;
  z-index:2;
  max-width:380px;
  margin:0;
  color:inherit;
  opacity:.78;
  font-size:16px;
  line-height:1.65;
  font-weight:650;
}

/* card variants */

.emp-v16-card-green{
  background:
    radial-gradient(circle at 90% 0, rgba(255,255,255,.18), transparent 34%),
    linear-gradient(135deg,#004f43,#087665);
  color:#fff;
  border-color:rgba(255,255,255,.18);
}

.emp-v16-card-white{
  background:rgba(255,255,255,.86);
  color:#0f2137;
  backdrop-filter:blur(18px);
}

.emp-v16-card-white .emp-v16-card-top b{
  background:#e8f7f3;
  color:#004f43;
}

.emp-v16-card-white .emp-v16-card-top i{
  color:#004f43;
  background:
    radial-gradient(circle at 50% 50%, #004f43 0 18%, transparent 19%),
    linear-gradient(135deg,#e8f7f3,#f8fafc);
}

.emp-v16-card-orange{
  background:
    radial-gradient(circle at 90% 0, rgba(255,255,255,.22), transparent 34%),
    linear-gradient(135deg,#f86436,#ff8a5e);
  color:#fff;
  border-color:rgba(255,255,255,.18);
  margin-top:34px;
}

.emp-v16-card-dark{
  background:
    radial-gradient(circle at 90% 0, rgba(255,255,255,.14), transparent 34%),
    linear-gradient(135deg,#071736,#10294d);
  color:#fff;
  border-color:rgba(255,255,255,.16);
  margin-top:34px;
}

/* responsive */

@media (max-width:1200px){
  .emp-v16-what-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .emp-v16-what-left{
    position:relative;
    top:auto;
  }

  .emp-v16-what-left h2,
  .emp-v16-what-left p{
    max-width:900px;
  }
}

@media (max-width:820px){
  .emp-v16-what{
    padding:66px 0 76px;
  }

  .emp-v16-what-right{
    grid-template-columns:1fr;
  }

  .emp-v16-card-orange,
  .emp-v16-card-dark{
    margin-top:0;
  }

  .emp-v16-card{
    min-height:260px;
    border-radius:28px;
  }

  .emp-v16-card h3{
    font-size:23px;
  }
}

@media (max-width:560px){
  .emp-v16-what-left h2{
    font-size:31px;
    letter-spacing:-1px;
  }

  .emp-v16-what-left p{
    font-size:15px;
    line-height:1.62;
  }

  .emp-v16-primary{
    width:100%;
    min-height:54px;
    border-radius:17px;
  }

  .emp-v16-card{
    min-height:auto;
    padding:22px;
    border-radius:24px;
  }

  .emp-v16-card-top{
    margin-bottom:24px;
  }

  .emp-v16-card-top b,
  .emp-v16-card-top i{
    width:48px;
    height:48px;
    border-radius:16px;
  }

  .emp-v16-card h3{
    font-size:20px;
  }

  .emp-v16-card p{
    font-size:14px;
    line-height:1.58;
  }
}

/* ==========================================================
   Employer Brands v17 + Help/FAQ v18
   ========================================================== */

/* ===== Brands ===== */

.emp-v17-brands{
  position:relative;
  padding:104px 0 112px;
  overflow:hidden;
  background:
    linear-gradient(135deg,#061b2e 0%,#073b35 52%,#0b1b32 100%);
  color:#fff;
  isolation:isolate;
}

.emp-v17-brands::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-3;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size:46px 46px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.18));
}

.emp-v17-brands-bg{
  position:absolute;
  inset:0;
  z-index:-2;
  pointer-events:none;
}

.emp-v17-brands-bg span{
  position:absolute;
  display:block;
  border-radius:999px;
  filter:blur(5px);
}

.emp-v17-brands-bg span:nth-child(1){
  width:540px;
  height:540px;
  left:-200px;
  top:-140px;
  background:radial-gradient(circle, rgba(20,184,166,.28), transparent 68%);
}

.emp-v17-brands-bg span:nth-child(2){
  width:540px;
  height:540px;
  right:-200px;
  bottom:-160px;
  background:radial-gradient(circle, rgba(248,100,54,.28), transparent 68%);
}

.emp-v17-head{
  max-width:900px;
  margin:0 auto 58px;
  text-align:center;
}

.emp-v17-head > span,
.emp-v17-logo-title span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  margin:0 0 18px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  color:#9df3df;
  backdrop-filter:blur(16px);
  font-size:13px;
  line-height:1;
  font-weight:950;
}

.emp-v17-head h2{
  margin:0 0 18px;
  color:#fff;
  font-size:clamp(36px,4.2vw,64px);
  line-height:1.04;
  letter-spacing:-2px;
  font-weight:950;
}

.emp-v17-head p{
  max-width:740px;
  margin:0 auto;
  color:rgba(255,255,255,.72);
  font-size:17px;
  line-height:1.72;
  font-weight:650;
}

.emp-v17-logo-section{
  margin-top:40px;
}

.emp-v17-logo-section-trusted{
  margin-top:72px;
}

.emp-v17-logo-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin:0 0 22px;
}

.emp-v17-logo-title h3{
  max-width:720px;
  margin:0;
  color:#fff;
  font-size:clamp(26px,2.8vw,42px);
  line-height:1.12;
  letter-spacing:-1px;
  font-weight:950;
}

.emp-v17-marquee{
  position:relative;
  overflow:hidden;
  padding:20px 0;
  border-radius:34px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 34px 90px rgba(0,0,0,.20);
  backdrop-filter:blur(18px);
}

.emp-v17-marquee::before,
.emp-v17-marquee::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:150px;
  z-index:3;
  pointer-events:none;
}

.emp-v17-marquee::before{
  left:0;
  background:linear-gradient(90deg,rgba(6,27,46,.98),rgba(6,27,46,0));
}

.emp-v17-marquee::after{
  right:0;
  background:linear-gradient(-90deg,rgba(6,27,46,.98),rgba(6,27,46,0));
}

.emp-v17-marquee-track{
  width:max-content;
  display:flex;
  gap:18px;
  animation:empV17Marquee 34s linear infinite;
}

.emp-v17-marquee-reverse .emp-v17-marquee-track{
  animation-direction:reverse;
  animation-duration:38s;
}

.emp-v17-logo-card{
  width:230px;
  min-width:230px;
  height:112px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px 22px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 18px 44px rgba(0,0,0,.10);
  transition:.18s ease;
}

.emp-v17-logo-card:hover{
  transform:translateY(-3px);
  box-shadow:0 26px 62px rgba(0,0,0,.18);
}

.emp-v17-logo-card img{
  max-width:100%;
  max-height:68px;
  object-fit:contain;
  display:block;
}

.emp-v17-logo-card strong{
  color:#0f2137;
  font-size:18px;
  line-height:1.25;
  font-weight:950;
  text-align:center;
}

.emp-v17-logo-card-trusted{
  background:rgba(255,255,255,.88);
}

@keyframes empV17Marquee{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

/* ===== Help / FAQ ===== */

.emp-v18-help{
  position:relative;
  padding:108px 0 120px;
  overflow:hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(0,79,67,.14), transparent 34%),
    radial-gradient(circle at 90% 20%, rgba(248,100,54,.13), transparent 32%),
    linear-gradient(135deg,#f7fbfa 0%,#f8fafc 46%,#fff4ee 100%);
  isolation:isolate;
}

.emp-v18-help::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-3;
  background-image:
    linear-gradient(rgba(15,23,42,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.045) 1px, transparent 1px);
  background-size:46px 46px;
  opacity:.70;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.74), rgba(0,0,0,.14));
}

.emp-v18-help-bg{
  position:absolute;
  inset:0;
  z-index:-2;
  pointer-events:none;
}

.emp-v18-help-bg span{
  position:absolute;
  display:block;
  border-radius:999px;
  filter:blur(5px);
}

.emp-v18-help-bg span:nth-child(1){
  width:520px;
  height:520px;
  left:-190px;
  bottom:-160px;
  background:radial-gradient(circle, rgba(0,79,67,.18), transparent 68%);
}

.emp-v18-help-bg span:nth-child(2){
  width:520px;
  height:520px;
  right:-180px;
  top:40px;
  background:radial-gradient(circle, rgba(248,100,54,.16), transparent 68%);
}

.emp-v18-help-head{
  max-width:900px;
  margin:0 auto 52px;
  text-align:center;
}

.emp-v18-help-head > span{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  margin:0 0 18px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(0,79,67,.14);
  color:#004f43;
  box-shadow:0 12px 28px rgba(15,23,42,.055);
  backdrop-filter:blur(14px);
  font-size:13px;
  line-height:1;
  font-weight:950;
}

.emp-v18-help-head h2{
  margin:0 0 18px;
  color:#0f2137;
  font-size:clamp(36px,4.2vw,64px);
  line-height:1.04;
  letter-spacing:-2px;
  font-weight:950;
}

.emp-v18-help-head p{
  max-width:740px;
  margin:0 auto;
  color:#64748b;
  font-size:17px;
  line-height:1.72;
  font-weight:650;
}

.emp-v18-help-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(340px,.72fr);
  gap:28px;
  align-items:start;
}

.emp-v18-faq-panel,
.emp-v18-contact-panel{
  border-radius:36px;
  border:1px solid rgba(226,232,240,.95);
  background:rgba(255,255,255,.82);
  box-shadow:0 30px 86px rgba(15,23,42,.09);
  backdrop-filter:blur(18px);
}

.emp-v18-faq-panel{
  padding:32px;
}

.emp-v18-panel-title{
  margin:0 0 24px;
}

.emp-v18-panel-title > span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  margin:0 0 12px;
  padding:0 13px;
  border-radius:999px;
  background:#e8f7f3;
  color:#004f43;
  font-size:12px;
  line-height:1;
  font-weight:950;
}

.emp-v18-panel-title h3{
  margin:0;
  color:#0f2137;
  font-size:30px;
  line-height:1.12;
  letter-spacing:-.8px;
  font-weight:950;
}

.emp-v18-faq-items{
  display:grid;
  gap:14px;
}

.emp-v18-faq-item{
  overflow:hidden;
  border-radius:24px;
  border:1px solid #e3eaf1;
  background:#fff;
  box-shadow:0 12px 28px rgba(15,23,42,.045);
}

.emp-v18-faq-item summary{
  min-height:78px;
  display:grid;
  grid-template-columns:52px 1fr;
  gap:16px;
  align-items:center;
  padding:18px 22px;
  cursor:pointer;
  list-style:none;
}

.emp-v18-faq-item summary::-webkit-details-marker{
  display:none;
}

.emp-v18-faq-item summary span{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:17px;
  background:#e8f7f3;
  color:#004f43;
  font-size:14px;
  line-height:1;
  font-weight:950;
}

.emp-v18-faq-item summary strong{
  color:#0f2137;
  font-size:19px;
  line-height:1.35;
  font-weight:950;
}

.emp-v18-faq-item div{
  padding:0 22px 22px 90px;
  color:#64748b;
  font-size:16px;
  line-height:1.7;
  font-weight:650;
}

.emp-v18-contact-panel{
  position:sticky;
  top:96px;
  overflow:hidden;
  padding:34px;
  background:
    radial-gradient(circle at 95% 0, rgba(248,100,54,.24), transparent 36%),
    linear-gradient(135deg,#004f43,#062f48);
  color:#fff;
}

.emp-v18-contact-panel::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-120px;
  bottom:-120px;
  border-radius:50%;
  background:rgba(255,255,255,.10);
}

.emp-v18-contact-kicker{
  position:relative;
  z-index:2;
  display:inline-flex;
  align-items:center;
  min-height:34px;
  margin:0 0 16px;
  padding:0 13px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#9df3df;
  font-size:12px;
  line-height:1;
  font-weight:950;
}

.emp-v18-contact-panel h3,
.emp-v18-contact-panel p,
.emp-v18-contact-list,
.emp-v18-contact-btn{
  position:relative;
  z-index:2;
}

.emp-v18-contact-panel h3{
  margin:0 0 14px;
  color:#fff;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-.9px;
  font-weight:950;
}

.emp-v18-contact-panel p{
  margin:0 0 24px;
  color:rgba(255,255,255,.76);
  font-size:15px;
  line-height:1.7;
  font-weight:650;
}

.emp-v18-contact-list{
  display:grid;
  gap:10px;
  margin:0 0 26px;
}

.emp-v18-contact-list a,
.emp-v18-contact-list div{
  display:block;
  padding:15px 16px;
  border-radius:18px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  backdrop-filter:blur(14px);
  transition:.18s ease;
}

.emp-v18-contact-list a:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.15);
}

.emp-v18-contact-list b{
  display:block;
  margin:0 0 5px;
  color:rgba(255,255,255,.72);
  font-size:12px;
  line-height:1;
  font-weight:900;
}

.emp-v18-contact-list span{
  display:block;
  color:#fff;
  font-size:15px;
  line-height:1.35;
  font-weight:850;
  word-break:break-word;
}

.emp-v18-contact-btn{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:19px;
  background:#fff;
  color:#004f43;
  box-shadow:0 18px 38px rgba(0,0,0,.18);
  font-size:15px;
  line-height:1;
  font-weight:950;
  transition:.18s ease;
}

.emp-v18-contact-btn:hover{
  transform:translateY(-2px);
}

/* Responsive */

@media (max-width:1100px){
  .emp-v18-help-grid{
    grid-template-columns:1fr;
  }

  .emp-v18-contact-panel{
    position:relative;
    top:auto;
  }

  .emp-v17-logo-title{
    display:block;
  }

  .emp-v17-logo-title h3{
    margin-top:10px;
  }
}

@media (max-width:760px){
  .emp-v17-brands,
  .emp-v18-help{
    padding:66px 0 76px;
  }

  .emp-v17-head,
  .emp-v18-help-head{
    text-align:left;
    margin-bottom:34px;
  }

  .emp-v17-head h2,
  .emp-v18-help-head h2{
    font-size:31px;
    letter-spacing:-1px;
  }

  .emp-v17-head p,
  .emp-v18-help-head p{
    font-size:15px;
    line-height:1.62;
  }

  .emp-v17-marquee{
    border-radius:24px;
  }

  .emp-v17-marquee::before,
  .emp-v17-marquee::after{
    width:54px;
  }

  .emp-v17-logo-card{
    width:174px;
    min-width:174px;
    height:88px;
    border-radius:18px;
  }

  .emp-v17-logo-card img{
    max-height:52px;
  }

  .emp-v18-faq-panel,
  .emp-v18-contact-panel{
    padding:22px;
    border-radius:28px;
  }

  .emp-v18-panel-title h3,
  .emp-v18-contact-panel h3{
    font-size:26px;
  }

  .emp-v18-faq-item summary{
    grid-template-columns:42px 1fr;
    gap:12px;
    min-height:66px;
    padding:14px;
  }

  .emp-v18-faq-item summary span{
    width:42px;
    height:42px;
    border-radius:14px;
  }

  .emp-v18-faq-item summary strong{
    font-size:16px;
  }

  .emp-v18-faq-item div{
    padding:0 14px 16px 68px;
    font-size:14px;
    line-height:1.6;
  }
}

@media (max-width:420px){
  .emp-v17-head h2,
  .emp-v18-help-head h2{
    font-size:28px;
  }

  .emp-v18-contact-list a,
  .emp-v18-contact-list div{
    padding:13px 14px;
  }
}

/* ==========================================================
   Employer Auth Modal v19 — premium fullscreen
   ========================================================== */

body.emp-auth-v19-open{
  overflow:hidden !important;
}

.emp-auth-v19{
  position:fixed !important;
  inset:0 !important;
  z-index:100000 !important;
  display:block !important;
  padding:0 !important;
  background:transparent !important;
}

.emp-auth-v19[hidden]{
  display:none !important;
}

.emp-auth-v19-backdrop{
  position:absolute !important;
  inset:0 !important;
  backdrop-filter:blur(20px) !important;
}

.emp-auth-v19-shell{
  position:relative !important;
  z-index:2 !important;
  width:100% !important;
  min-height:100vh !important;
  display:grid !important;
  place-items:center !important;
}

.emp-auth-v19-close{
  position:absolute !important;
  top:26px !important;
  right:26px !important;
  z-index:6 !important;
  width:54px !important;
  height:54px !important;
  border:0 !important;
  border-radius:18px !important;
  background:rgba(255,255,255,.92) !important;
  color:#0f2137 !important;
  font-size:34px !important;
  line-height:1 !important;
  cursor:pointer !important;
  box-shadow:0 18px 44px rgba(0,0,0,.22) !important;
  transition:.18s ease !important;
}

.emp-auth-v19-close:hover{
  transform:translateY(-2px) !important;
  background:#fff !important;
}

.emp-auth-v19-card{
  width:min(1180px,100%) !important;
  min-height:min(700px, calc(100vh - 76px)) !important;
  display:grid !important;
  overflow:hidden !important;
  background:#fff !important;
  border:1px solid rgba(255,255,255,.30) !important;
  box-shadow:0 46px 140px rgba(0,0,0,.38) !important;
}

.emp-auth-v19-visual{
  position:relative !important;
  min-height:660px !important;
  overflow:hidden !important;
  padding:42px !important;
  background:
    radial-gradient(circle at 80% 8%, rgba(248,100,54,.42), transparent 34%),
    radial-gradient(circle at 16% 84%, rgba(20,184,166,.26), transparent 34%),
    linear-gradient(135deg,#061b2e,#073b35 58%,#0b1b32) !important;
  color:#fff !important;
  isolation:isolate !important;
}

.emp-auth-v19-grid-bg{
  position:absolute !important;
  inset:0 !important;
  z-index:-1 !important;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px) !important;
  background-size:42px 42px !important;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.72), rgba(0,0,0,.18)) !important;
}

.emp-auth-v19-brand{
  position:relative !important;
  z-index:2 !important;
  display:flex !important;
  align-items:center !important;
  gap:12px !important;
  color:#fff !important;
  font-size:24px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.emp-auth-v19-brand .brand-mark{
  width:38px !important;
  height:38px !important;
}

.emp-auth-v19-brand .brand-mark i{
  background:#fff !important;
}

.emp-auth-v19-dashboard{
  position:absolute !important;
  left:42px !important;
  right:42px !important;
  bottom:48px !important;
  z-index:2 !important;
  overflow:hidden !important;
  border-radius:32px !important;
  background:rgba(255,255,255,.92) !important;
  color:#0f2137 !important;
  box-shadow:0 32px 86px rgba(0,0,0,.26) !important;
  backdrop-filter:blur(18px) !important;
}

.emp-auth-v19-dashboard-head{
  height:58px !important;
  display:flex !important;
  align-items:center !important;
  gap:8px !important;
  padding:0 18px !important;
  border-bottom:1px solid #e2e8f0 !important;
}

.emp-auth-v19-dashboard-head span{
  width:12px !important;
  height:12px !important;
  border-radius:50% !important;
  background:#e2e8f0 !important;
}

.emp-auth-v19-dashboard-head span:nth-child(1){background:#fb7185 !important}
.emp-auth-v19-dashboard-head span:nth-child(2){background:#fbbf24 !important}
.emp-auth-v19-dashboard-head span:nth-child(3){background:#34d399 !important}

.emp-auth-v19-dashboard-head b{
  margin-left:auto !important;
  color:#64748b !important;
  font-size:12px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.emp-auth-v19-dashboard-body{
  position:relative !important;
  min-height:280px !important;
  padding:24px !important;
}

.emp-auth-v19-row{
  height:18px !important;
  margin-bottom:14px !important;
  border-radius:999px !important;
  background:#e8eef5 !important;
}

.emp-auth-v19-row.large{
  width:76% !important;
  height:26px !important;
}

.emp-auth-v19-row.short{
  width:54% !important;
}

.emp-auth-v19-score{
  position:absolute !important;
  right:24px !important;
  bottom:24px !important;
  width:150px !important;
  padding:18px !important;
  border-radius:24px !important;
  background:#e8fff0 !important;
}

.emp-auth-v19-score strong{
  display:block !important;
  margin:0 0 6px !important;
  color:#15803d !important;
  font-size:34px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.emp-auth-v19-score span{
  color:#166534 !important;
  font-size:12px !important;
  line-height:1.35 !important;
  font-weight:850 !important;
}

.emp-auth-v19-mini-list{
  position:absolute !important;
  left:24px !important;
  bottom:24px !important;
  display:grid !important;
  gap:10px !important;
  width:190px !important;
}

.emp-auth-v19-mini-list i{
  height:42px !important;
  border-radius:16px !important;
  background:#f1f5f9 !important;
}

.emp-auth-v19-float{
  position:absolute !important;
  z-index:4 !important;
  display:flex !important;
  align-items:center !important;
  gap:14px !important;
  padding:16px 18px !important;
  border-radius:24px !important;
  color:#fff !important;
  box-shadow:0 24px 64px rgba(0,0,0,.24) !important;
  backdrop-filter:blur(18px) !important;
}

.emp-auth-v19-float b{
  width:48px !important;
  height:48px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:17px !important;
  background:rgba(255,255,255,.18) !important;
  font-size:16px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.emp-auth-v19-float span{
  max-width:150px !important;
  font-size:14px !important;
  line-height:1.3 !important;
  font-weight:900 !important;
}

.emp-auth-v19-float-one{
  left:60px !important;
  top:145px !important;
  background:rgba(248,100,54,.88) !important;
}

.emp-auth-v19-float-two{
  right:38px !important;
  top:235px !important;
  background:rgba(255,255,255,.14) !important;
  border:1px solid rgba(255,255,255,.18) !important;
}

.emp-auth-v19-content{
  min-width:0 !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  padding:40px 35px !important;
  background:
    radial-gradient(circle at 100% 0, rgba(248,100,54,.10), transparent 34%),
    #fff !important;
}

.emp-auth-v19-kicker{
  width:max-content !important;
  max-width:100% !important;
  min-height:38px !important;
  display:inline-flex !important;
  align-items:center !important;
  margin:0 0 20px !important;
  padding:0 15px !important;
  border-radius:999px !important;
  background:#e8f7f3 !important;
  color:#004f43 !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.emp-auth-v19-content h3{
  margin:0 0 18px !important;
  color:#0f2137 !important;
  font-size:clamp(38px,4vw,58px) !important;
  line-height:1.04 !important;
  letter-spacing:-1.7px !important;
  font-weight:950 !important;
}

.emp-auth-v19-content p[data-employer-auth-message]{
  max-width:640px !important;
  margin:0 0 28px !important;
  color:#64748b !important;
  font-size:17px !important;
  line-height:1.72 !important;
  font-weight:650 !important;
}

.emp-auth-v19-benefits{
  display:grid !important;
  gap:12px !important;
  margin:0 0 30px !important;
}

.emp-auth-v19-benefits div{
  display:grid !important;
  grid-template-columns:52px 1fr !important;
  gap:14px !important;
  align-items:center !important;
  min-height:66px !important;
  padding:12px !important;
  border-radius:22px !important;
  background:#f8fafc !important;
  border:1px solid #e3eaf1 !important;
}

.emp-auth-v19-benefits b{
  width:42px !important;
  height:42px !important;
  display:grid !important;
  place-items:center !important;
  border-radius:15px !important;
  background:#e8f7f3 !important;
  color:#004f43 !important;
  font-size:13px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.emp-auth-v19-benefits span{
  color:#334155 !important;
  font-size:15px !important;
  line-height:1.35 !important;
  font-weight:850 !important;
}

.emp-auth-v19-actions{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:12px !important;
  margin:0 0 18px !important;
}

.emp-auth-v19-login,
.emp-auth-v19-register,
.emp-auth-v19-cancel{
  min-height:58px !important;
  border-radius:19px !important;
  border:0 !important;
  cursor:pointer !important;
  font-size:15px !important;
  line-height:1 !important;
  font-weight:950 !important;
  transition:.18s ease !important;
}

.emp-auth-v19-login{
  background:linear-gradient(135deg,#004f43,#087665) !important;
  color:#fff !important;
  box-shadow:0 18px 38px rgba(0,79,67,.24) !important;
}

.emp-auth-v19-register{
  background:#0f2137 !important;
  color:#fff !important;
  box-shadow:0 18px 38px rgba(15,33,55,.20) !important;
}

.emp-auth-v19-cancel{
  grid-column:1 / -1 !important;
  background:#f1f5f9 !important;
  color:#475569 !important;
}

.emp-auth-v19-login:hover,
.emp-auth-v19-register:hover,
.emp-auth-v19-cancel:hover{
  transform:translateY(-2px) !important;
}

.emp-auth-v19-note{
  margin:0 !important;
  color:#94a3b8 !important;
  font-size:13px !important;
  line-height:1.55 !important;
  font-weight:700 !important;
}

.auth-ui-modal,
.auth-fullscreen-modal,
.auth-login-fullscreen-modal,
.auth-register-fullscreen-modal,
#loginModal,
#registerModal{
  z-index:100200 !important;
}

body.auth-modal-open .emp-auth-v19{
  z-index:99990 !important;
}

@media (max-width:980px){
  .emp-auth-v19-shell{
    padding:20px !important;
  }

  .emp-auth-v19-card{
    min-height:auto !important;
    grid-template-columns:1fr !important;
    border-radius:34px !important;
  }

  .emp-auth-v19-visual{
    min-height:330px !important;
    padding:28px !important;
  }

  .emp-auth-v19-dashboard{
    left:28px !important;
    right:28px !important;
    bottom:28px !important;
  }

  .emp-auth-v19-dashboard-body{
    min-height:210px !important;
  }

  .emp-auth-v19-float{
    display:none !important;
  }

  .emp-auth-v19-content{
    padding:38px 28px 32px !important;
  }
}

@media (max-width:620px){
  .emp-auth-v19-shell{
    padding:0 !important;
    place-items:stretch !important;
  }

  .emp-auth-v19-card{
    width:100% !important;
    min-height:100vh !important;
    border-radius:0 !important;
  }

  .emp-auth-v19-close{
    top:14px !important;
    right:14px !important;
    width:46px !important;
    height:46px !important;
    border-radius:15px !important;
    font-size:30px !important;
  }

  .emp-auth-v19-visual{
    min-height:260px !important;
    padding:20px !important;
  }

  .emp-auth-v19-brand{
    font-size:20px !important;
  }

  .emp-auth-v19-dashboard{
    left:16px !important;
    right:16px !important;
    bottom:16px !important;
    border-radius:24px !important;
  }

  .emp-auth-v19-dashboard-head{
    height:46px !important;
  }

  .emp-auth-v19-dashboard-body{
    min-height:150px !important;
    padding:16px !important;
  }

  .emp-auth-v19-score{
    right:16px !important;
    bottom:16px !important;
    width:120px !important;
    padding:13px !important;
    border-radius:18px !important;
  }

  .emp-auth-v19-score strong{
    font-size:26px !important;
  }

  .emp-auth-v19-mini-list{
    display:none !important;
  }

  .emp-auth-v19-content{
    justify-content:flex-start !important;
    padding:28px 18px 34px !important;
  }

  .emp-auth-v19-content h3{
    font-size:31px !important;
    letter-spacing:-.9px !important;
  }

  .emp-auth-v19-content p[data-employer-auth-message]{
    font-size:15px !important;
    line-height:1.62 !important;
  }

  .emp-auth-v19-benefits div{
    grid-template-columns:44px 1fr !important;
    min-height:auto !important;
  }

  .emp-auth-v19-actions{
    grid-template-columns:1fr !important;
  }

  .emp-auth-v19-cancel{
    grid-column:auto !important;
  }
}

/* ==========================================================
   Employers landing background differentiation patch
   Add this at the VERY END of style.css
   ========================================================== */

/* =========================
   v13 HERO
   Fresh emerald + sky mesh
   ========================= */

.emp-v13-hero{
  background:
    radial-gradient(circle at 8% 14%, rgba(27, 169, 125, .18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(74, 144, 226, .16), transparent 26%),
    radial-gradient(circle at 52% 100%, rgba(255, 196, 140, .18), transparent 32%),
    linear-gradient(135deg,#f3fbf7 0%, #edf7ff 46%, #fff8ef 100%);
}

.emp-v13-hero::before{
  background-image:
    linear-gradient(rgba(0,79,67,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,79,67,.045) 1px, transparent 1px);
  background-size:40px 40px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.78), rgba(0,0,0,.16));
}

.emp-v13-orb-one{
  background:radial-gradient(circle, rgba(6, 148, 106, .24), transparent 68%);
}
.emp-v13-orb-two{
  background:radial-gradient(circle, rgba(59, 130, 246, .20), transparent 68%);
}
.emp-v13-orb-three{
  background:radial-gradient(circle, rgba(251, 146, 60, .16), transparent 70%);
}


/* =========================
   v14 QUICK START
   Warm ivory + peach studio
   ========================= */

.emp-v14-quick-start{
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 205, 160, .24), transparent 30%),
    radial-gradient(circle at 86% 16%, rgba(255, 147, 113, .18), transparent 28%),
    radial-gradient(circle at 72% 82%, rgba(255, 241, 212, .50), transparent 24%),
    linear-gradient(135deg,#fffaf2 0%, #fff7fb 48%, #fff2e8 100%) !important;
}

.emp-v14-quick-start::before{
  background-image:
    radial-gradient(rgba(15,23,42,.08) 1px, transparent 1px);
  background-size:18px 18px;
  opacity:.26;
}

.emp-v14-form-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(255,250,247,.92)),
    radial-gradient(circle at 100% 0, rgba(255,156,110,.16), transparent 36%);
}


/* =========================
   v15 FLOW
   Deep navy + violet neon
   ========================= */

.emp-v15-flow{
  background:
    radial-gradient(circle at 12% 16%, rgba(34,197,94,.14), transparent 24%),
    radial-gradient(circle at 86% 12%, rgba(139,92,246,.22), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(56,189,248,.14), transparent 30%),
    linear-gradient(135deg,#081426 0%, #1a1d4f 42%, #0a2f3c 100%);
}

.emp-v15-flow::before{
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size:48px 48px;
}

.emp-v15-flow-bg span:nth-child(1){
  background:radial-gradient(circle, rgba(56,189,248,.26), transparent 68%);
}
.emp-v15-flow-bg span:nth-child(2){
  background:radial-gradient(circle, rgba(168,85,247,.28), transparent 68%);
}
.emp-v15-flow-bg span:nth-child(3){
  background:radial-gradient(circle, rgba(34,197,94,.18), transparent 70%);
}


/* =========================
   v16 WHAT
   Sand + mint editorial
   ========================= */

.emp-v16-what{
  background:
    radial-gradient(circle at 8% 14%, rgba(245, 199, 119, .18), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(110, 231, 183, .18), transparent 30%),
    radial-gradient(circle at 76% 84%, rgba(255,255,255,.80), transparent 28%),
    linear-gradient(135deg,#fffaf4 0%, #f5fbf6 50%, #fff5e9 100%);
}

.emp-v16-what::before{
  background-image:
    linear-gradient(rgba(120, 113, 108, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 113, 108, .06) 1px, transparent 1px);
  background-size:42px 42px;
}

.emp-v16-what-bg span:nth-child(1){
  background:radial-gradient(circle, rgba(245,158,11,.16), transparent 68%);
}
.emp-v16-what-bg span:nth-child(2){
  background:radial-gradient(circle, rgba(16,185,129,.16), transparent 68%);
}


/* =========================
   v17 BRANDS
   Graphite + teal corporate
   ========================= */

.emp-v17-brands{
  background:
    radial-gradient(circle at 10% 18%, rgba(45,212,191,.14), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(6,182,212,.16), transparent 24%),
    radial-gradient(circle at 52% 100%, rgba(255,255,255,.06), transparent 30%),
    linear-gradient(135deg,#111827 0%, #0f2d35 48%, #1f2937 100%);
}

.emp-v17-brands::before{
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:44px 44px;
}

.emp-v17-brands-bg span:nth-child(1){
  background:radial-gradient(circle, rgba(45,212,191,.24), transparent 68%);
}
.emp-v17-brands-bg span:nth-child(2){
  background:radial-gradient(circle, rgba(34,211,238,.20), transparent 68%);
}

.emp-v17-marquee::before{
  background:linear-gradient(90deg,rgba(17,24,39,.98),rgba(17,24,39,0));
}
.emp-v17-marquee::after{
  background:linear-gradient(-90deg,rgba(17,24,39,.98),rgba(17,24,39,0));
}


/* =========================
   v18 HELP / FAQ
   Ice blue + lavender support
   ========================= */

.emp-v18-help{
  background:
    radial-gradient(circle at 10% 12%, rgba(147,197,253,.18), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(196,181,253,.18), transparent 28%),
    radial-gradient(circle at 48% 100%, rgba(255,255,255,.82), transparent 28%),
    linear-gradient(135deg,#f4f9ff 0%, #f8f7ff 44%, #fef7ff 100%);
}

.emp-v18-help::before{
  background-image:
    linear-gradient(rgba(30,41,59,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,41,59,.045) 1px, transparent 1px);
  background-size:42px 42px;
  opacity:.62;
}

.emp-v18-help-bg span:nth-child(1){
  background:radial-gradient(circle, rgba(96,165,250,.16), transparent 68%);
}
.emp-v18-help-bg span:nth-child(2){
  background:radial-gradient(circle, rgba(167,139,250,.16), transparent 68%);
}

.emp-v18-contact-panel{
  background:
    radial-gradient(circle at 90% 0, rgba(96,165,250,.20), transparent 34%),
    linear-gradient(135deg,#1d4ed8,#4f46e5 55%, #4338ca);
}


/* =========================
   v19 AUTH MODAL BACKGROUND
   Cinematic premium dark
   ========================= */

.emp-auth-v19-backdrop{
  background:
    radial-gradient(circle at 14% 10%, rgba(14,165,233,.28), transparent 26%) !important,
    radial-gradient(circle at 84% 16%, rgba(249,115,22,.26), transparent 28%) !important,
    radial-gradient(circle at 50% 100%, rgba(168,85,247,.18), transparent 24%) !important,
    linear-gradient(135deg, rgba(8,15,32,.92), rgba(26,20,56,.90)) !important;
}

.emp-auth-v19-visual{
  background:
    radial-gradient(circle at 84% 10%, rgba(249,115,22,.36), transparent 32%) !important,
    radial-gradient(circle at 16% 82%, rgba(14,165,233,.24), transparent 32%) !important,
    radial-gradient(circle at 52% 42%, rgba(168,85,247,.18), transparent 32%) !important,
    linear-gradient(135deg,#0b1020,#1a1b4b 56%, #111827) !important;
}

.emp-auth-v19-grid-bg{
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px) !important;
  background-size:40px 40px !important;
}


/* =========================
   Optional: section separators
   Gives each block more identity
   ========================= */

.emp-v14-quick-start,
.emp-v15-flow,
.emp-v16-what,
.emp-v17-brands,
.emp-v18-help{
  border-top:1px solid rgba(255,255,255,.04);
}

.emp-v14-quick-start{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.55);
}
.emp-v16-what{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.65);
}
.emp-v18-help{
  box-shadow:inset 0 1px 0 rgba(255,255,255,.75);
}

/* ===== Employer profile cabinet v1 ===== */
[data-employers-page][hidden],
.emp-profile-shell[hidden]{
  display:none !important;
}

.emp-profile-shell{
  padding-top:110px !important;
  padding-bottom:64px !important;
  background:
    radial-gradient(circle at 12% 8%, rgba(0,79,67,.08), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(248,100,54,.08), transparent 26%),
    linear-gradient(180deg,#f7fbfa 0%, #ffffff 100%) !important;
  min-height:100vh !important;
}

.emp-profile-shell .jp-container-v20{
  display:grid !important;
  gap:22px !important;
}

.emp-profile-shell .jp-tabs-v20{
  margin-bottom:0 !important;
}

.emp-profile-shell .jp-tabs-v20 a{
  text-decoration:none !important;
}

.emp-profile-shell .jp-tabs-v20 a.is-active{
  border-color:rgba(0,79,67,.22) !important;
  background:linear-gradient(135deg,#ecfdf7,#ffffff) !important;
  box-shadow:0 14px 38px rgba(0,79,67,.08) !important;
}

.emp-profile-shell .jp-tabs-v20 a.is-active > i{
  background:var(--green) !important;
  color:#fff !important;
}

.emp-profile-shell .jp-section{
  animation:empProfileFade .18s ease both;
}

@keyframes empProfileFade{
  from{
    opacity:0;
    transform:translateY(8px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.emp-profile-shell .jp-card{
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:28px !important;
  background:rgba(255,255,255,.96) !important;
  box-shadow:0 18px 54px rgba(15,23,42,.07) !important;
}

.emp-profile-shell .jp-card-head{
  align-items:flex-start !important;
  gap:18px !important;
}

.emp-profile-shell .jp-card-head span{
  display:inline-flex !important;
  align-items:center !important;
  width:max-content !important;
  max-width:100% !important;
  margin-bottom:8px !important;
  padding:7px 11px !important;
  border-radius:999px !important;
  background:#ecfdf7 !important;
  color:var(--green) !important;
  font-size:12px !important;
  font-weight:900 !important;
  letter-spacing:.04em !important;
  text-transform:uppercase !important;
}

.emp-profile-shell .jp-card-head h2{
  margin:0 0 8px !important;
  color:#102338 !important;
  font-size:clamp(24px, 2.4vw, 32px) !important;
  line-height:1.16 !important;
  font-weight:950 !important;
  letter-spacing:-.7px !important;
}

.emp-profile-shell .jp-card-head p{
  margin:0 !important;
  max-width:740px !important;
  color:#667085 !important;
  font-size:15px !important;
  line-height:1.6 !important;
  font-weight:600 !important;
}

.emp-profile-actions{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:12px !important;
  margin-top:22px !important;
}

.emp-profile-actions .btn,
.emp-profile-shell .jp-card-head .btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:170px !important;
  height:44px !important;
  border-radius:14px !important;
  padding:0 18px !important;
  font-size:14px !important;
  font-weight:900 !important;
  white-space:nowrap !important;
}

.emp-profile-actions .btn-light{
  border:1px solid rgba(15,23,42,.08) !important;
  background:#fff !important;
  color:#102338 !important;
}

.emp-profile-list{
  display:grid !important;
  gap:14px !important;
}

.emp-profile-item{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto !important;
  gap:18px !important;
  align-items:center !important;
  padding:18px !important;
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:20px !important;
  background:
    linear-gradient(180deg,#ffffff,#fbfdfc) !important;
  box-shadow:0 10px 28px rgba(15,23,42,.045) !important;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease !important;
}

.emp-profile-item:hover{
  transform:translateY(-1px) !important;
  border-color:rgba(0,79,67,.20) !important;
  box-shadow:0 18px 42px rgba(15,23,42,.075) !important;
}

.emp-profile-item h3{
  margin:0 0 8px !important;
  color:#102338 !important;
  font-size:18px !important;
  line-height:1.28 !important;
  font-weight:900 !important;
  letter-spacing:-.25px !important;
}

.emp-profile-item p{
  margin:0 !important;
  color:#667085 !important;
  font-size:14px !important;
  line-height:1.45 !important;
  font-weight:600 !important;
}

.emp-profile-meta{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:8px !important;
  margin-top:11px !important;
}

.emp-profile-meta span,
.emp-profile-status{
  display:inline-flex !important;
  align-items:center !important;
  gap:6px !important;
  max-width:100% !important;
  min-height:30px !important;
  padding:7px 10px !important;
  border-radius:999px !important;
  background:#f1f5f7 !important;
  color:#344054 !important;
  font-size:12px !important;
  line-height:1 !important;
  font-weight:850 !important;
}

.emp-profile-status.is-new{
  background:#e9fff4 !important;
  color:#057a55 !important;
}

.emp-profile-side{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-end !important;
  justify-content:center !important;
  gap:10px !important;
}

.emp-profile-open{
  height:38px !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border-radius:12px !important;
  background:var(--green) !important;
  color:#fff !important;
  padding:0 15px !important;
  font-size:13px !important;
  font-weight:900 !important;
  text-decoration:none !important;
  white-space:nowrap !important;
  box-shadow:0 10px 22px rgba(0,79,67,.14) !important;
}

.emp-profile-open:hover{
  background:var(--green-dark) !important;
}

.emp-profile-info-grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:14px !important;
}

.emp-profile-info-grid div{
  min-height:86px !important;
  padding:17px !important;
  border:1px solid rgba(15,23,42,.08) !important;
  border-radius:18px !important;
  background:#fff !important;
  box-shadow:0 8px 22px rgba(15,23,42,.035) !important;
}

.emp-profile-info-grid span{
  display:block !important;
  margin-bottom:7px !important;
  color:#667085 !important;
  font-size:12px !important;
  line-height:1.2 !important;
  font-weight:900 !important;
  text-transform:uppercase !important;
  letter-spacing:.04em !important;
}

.emp-profile-info-grid b{
  display:block !important;
  color:#172438 !important;
  font-size:15px !important;
  line-height:1.35 !important;
  font-weight:850 !important;
  word-break:break-word !important;
}

.emp-profile-shell .jp-empty{
  min-height:260px !important;
  display:grid !important;
  place-items:center !important;
  text-align:center !important;
  padding:36px 20px !important;
  border:1px dashed rgba(15,23,42,.14) !important;
  border-radius:24px !important;
  background:#fbfdff !important;
}

.emp-profile-shell .jp-empty i{
  width:54px !important;
  height:54px !important;
  display:grid !important;
  place-items:center !important;
  margin-bottom:14px !important;
  border-radius:18px !important;
  background:#ecfdf7 !important;
  color:var(--green) !important;
  font-size:22px !important;
}

.emp-profile-shell .jp-empty h3{
  margin:0 0 8px !important;
  color:#102338 !important;
  font-size:20px !important;
  font-weight:950 !important;
}

.emp-profile-shell .jp-empty p{
  max-width:520px !important;
  margin:0 auto !important;
  color:#667085 !important;
  font-size:14px !important;
  line-height:1.6 !important;
}

/* Employer notification dropdown polish */
.header-notify-wrap[data-emp-notify-menu] .notify-drop-item i{
  background:#ecfdf7 !important;
  color:var(--green) !important;
}

.header-notify-wrap[data-emp-notify-menu] .notify-drop-item.is-unread{
  background:#f3fff9 !important;
}

.header-notify-wrap[data-emp-notify-menu] .notify-drop-item.is-unread strong::after{
  content:'';
  display:inline-block;
  width:7px;
  height:7px;
  margin-left:7px;
  border-radius:50%;
  background:#16a34a;
  vertical-align:middle;
}

/* Mobile employer profile */
@media(max-width:760px){
  .emp-profile-shell{
    padding-top:86px !important;
    padding-bottom:46px !important;
  }

  .emp-profile-shell .jp-container-v20{
    width:calc(100% - 28px) !important;
    gap:14px !important;
  }

  .emp-profile-shell .jp-card{
    border-radius:24px !important;
    padding:20px !important;
  }

  .emp-profile-shell .jp-card-head{
    display:grid !important;
    gap:14px !important;
  }

  .emp-profile-shell .jp-card-head h2{
    font-size:24px !important;
  }

  .emp-profile-actions{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:10px !important;
  }

  .emp-profile-actions .btn,
  .emp-profile-shell .jp-card-head .btn,
  .emp-profile-shell .btn-primary,
  .emp-profile-shell .btn-light{
    display:inline-flex !important;
    width:100% !important;
    min-width:0 !important;
  }

  .emp-profile-item{
    grid-template-columns:1fr !important;
    gap:14px !important;
    padding:16px !important;
    border-radius:18px !important;
  }

  .emp-profile-side{
    align-items:flex-start !important;
  }

  .emp-profile-open{
    width:100% !important;
  }

  .emp-profile-info-grid{
    grid-template-columns:1fr !important;
  }
}

@media(max-width:520px){
  .emp-profile-shell .btn-primary,
  .emp-profile-shell .btn-light,
  .emp-profile-shell .btn{
    display:inline-flex !important;
  }

  .emp-profile-shell .jp-tabs-v20{
    grid-template-columns:1fr !important;
  }

  .emp-profile-shell .jp-tabs-v20 a{
    min-height:66px !important;
  }
}


/* ==========================================================
   HandyMens Employer Cabinet Full Professional UI v1
   Ish beruvchi kabineti: My vacancies / Personal / Responses
   ========================================================== */

.emp-profile-shell {
  position: relative;
  padding: 118px 0 72px;
  background:
    radial-gradient(circle at 8% 8%, rgba(37, 99, 235, .10), transparent 34%),
    radial-gradient(circle at 92% 14%, rgba(16, 185, 129, .13), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 52%, #f8fafc 100%);
  min-height: 760px;
}

.emp-profile-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 78%);
}

.emp-profile-shell .jp-container-v20 {
  position: relative;
  z-index: 2;
}

.emp-profile-shell .jp-tabs-v20 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.emp-profile-shell .jp-tabs-v20 a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 16px 45px rgba(15, 23, 42, .06);
  backdrop-filter: blur(18px);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  overflow: hidden;
}

.emp-profile-shell .jp-tabs-v20 a::before {
  content: "";
  position: absolute;
  inset: auto -35px -55px auto;
  width: 100px;
  height: 100px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .10);
  transition: transform .22s ease, opacity .22s ease;
}

.emp-profile-shell .jp-tabs-v20 a:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, .28);
  box-shadow: 0 22px 60px rgba(15, 23, 42, .10);
}

.emp-profile-shell .jp-tabs-v20 a.is-active {
  color: #ffffff;
  border-color: rgba(37, 99, 235, .85);
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 48%, #0f172a 100%);
  box-shadow: 0 24px 70px rgba(37, 99, 235, .32);
}

.emp-profile-shell .jp-tabs-v20 a.is-active::before {
  background: rgba(255, 255, 255, .13);
  transform: scale(1.35);
}

.emp-profile-shell .jp-tabs-v20 i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 18px;
  background: #eef2ff;
  color: #2563eb;
  font-size: 18px;
}

.emp-profile-shell .jp-tabs-v20 a.is-active i {
  color: #0f172a;
  background: #ffffff;
}

.emp-profile-shell .jp-tabs-v20 span {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 0;
}

.emp-profile-shell .jp-tabs-v20 span > small {
  color: #64748b;
  font-size: 12px;
  line-height: 1.25;
}

.emp-profile-shell .jp-tabs-v20 a.is-active span > small {
  color: rgba(255, 255, 255, .82);
}

.emp-profile-shell .jp-tabs-v20 b {
  position: relative;
  z-index: 2;
  margin-left: auto;
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 900;
}

.emp-profile-shell .jp-tabs-v20 a.is-active b {
  background: #ffffff;
  color: #1d4ed8;
}

.emp-profile-shell .jp-section {
  animation: empCabinetFade .22s ease both;
}

@keyframes empCabinetFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.emp-profile-shell .jp-card {
  position: relative;
  border: 1px solid rgba(148, 163, 184, .24);
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 80px rgba(15, 23, 42, .08);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.emp-profile-shell .jp-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #2563eb, #10b981, #f97316);
}

.emp-profile-shell .jp-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 30px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, .18);
}

.emp-profile-shell .jp-card-head span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.emp-profile-shell .jp-card-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.emp-profile-shell .jp-card-head p {
  max-width: 680px;
  margin: 8px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
}

.emp-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 28px 30px 32px;
}

.emp-profile-list {
  display: grid;
  gap: 14px;
  padding: 24px 30px 30px;
}

.emp-profile-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
  box-shadow: 0 14px 34px rgba(15, 23, 42, .045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.emp-profile-item:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, .22);
  box-shadow: 0 20px 48px rgba(15, 23, 42, .09);
}

.emp-profile-item h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.32;
  letter-spacing: -.02em;
}

.emp-profile-item p {
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.emp-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.emp-profile-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: 12px;
  font-weight: 800;
}

.emp-profile-meta span i {
  color: #2563eb;
}

.emp-profile-status {
  background: #eef2ff !important;
  color: #3730a3 !important;
}

.emp-profile-status.is-new {
  background: #ecfdf5 !important;
  color: #047857 !important;
}

.emp-profile-side {
  display: flex;
  align-items: center;
  gap: 10px;
}

.emp-profile-open {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .20);
  transition: transform .18s ease, background .18s ease;
}

.emp-profile-open:hover {
  transform: translateY(-1px);
  background: #2563eb;
}

.emp-profile-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 24px 30px 30px;
}

.emp-profile-info-grid > div {
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background: #f8fafc;
}

.emp-profile-info-grid span {
  display: block;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.emp-profile-info-grid b {
  display: block;
  overflow-wrap: anywhere;
  color: #0f172a;
  font-size: 15px;
  line-height: 1.45;
}

.emp-response-full-item {
  align-items: flex-start;
}

.emp-response-cover {
  margin-top: 14px;
  padding: 15px 16px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px dashed rgba(148, 163, 184, .38);
}

.emp-response-cover b {
  display: block;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 13px;
}

.emp-response-cover p {
  color: #475569;
  font-size: 14px;
}

.emp-profile-shell .jp-empty {
  margin: 24px 30px 30px;
  padding: 38px 24px;
  border: 1px dashed rgba(148, 163, 184, .45);
  border-radius: 26px;
  background: #f8fafc;
  text-align: center;
}

.emp-profile-shell .jp-empty i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 20px;
  background: #eef2ff;
  color: #2563eb;
  font-size: 22px;
}

.emp-profile-shell .jp-empty h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 22px;
}

.emp-profile-shell .jp-empty p {
  max-width: 520px;
  margin: 0 auto;
  color: #64748b;
  line-height: 1.65;
}

body[data-emp-current="my-vacancies"] .main-nav-modern [data-emp-header-section="my-vacancies"],
body[data-emp-current="new-responses"] .main-nav-modern [data-emp-header-section="new-responses"],
body[data-emp-current="create-vacancy"] .header-create-btn,
body[data-emp-current="personal"] .header-user-dropdown [data-emp-header-section="personal"] {
  color: #2563eb;
}

.header-notify-dropdown .notify-drop-item.is-unread,
.header-notify-dropdown .notify-drop-item.is-unread:hover {
  background: #eff6ff;
  border-color: rgba(37, 99, 235, .18);
}

.header-notify-dropdown .notify-drop-item.is-unread strong::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-radius: 50%;
  background: #2563eb;
  vertical-align: middle;
}

.emp-debug-box,
.emp-direct-db-box {
  margin: 0 0 16px;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 900;
  line-height: 1.6;
}

.emp-debug-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
}

.emp-direct-db-box {
  background: #ecfeff;
  border: 1px solid #67e8f9;
  color: #155e75;
}

@media (max-width: 1180px) {
  .emp-profile-shell {
    padding-top: 96px;
  }

  .emp-profile-shell .jp-tabs-v20 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .emp-profile-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .emp-profile-shell {
    padding: 82px 0 44px;
  }

  .emp-profile-shell .jp-tabs-v20 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .emp-profile-shell .jp-tabs-v20 a {
    min-height: 78px;
    padding: 14px;
    border-radius: 20px;
  }

  .emp-profile-shell .jp-tabs-v20 i {
    width: 42px;
    height: 42px;
    border-radius: 16px;
  }

  .emp-profile-shell .jp-card {
    border-radius: 24px;
  }

  .emp-profile-shell .jp-card-head {
    display: grid;
    padding: 22px 18px 16px;
  }

  .emp-profile-shell .jp-card-head .btn {
    width: 100%;
  }

  .emp-profile-list,
  .emp-profile-info-grid,
  .emp-profile-actions {
    padding-left: 18px;
    padding-right: 18px;
  }

  .emp-profile-item {
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 20px;
  }

  .emp-profile-side {
    justify-content: stretch;
  }

  .emp-profile-open {
    width: 100%;
  }

  .emp-profile-info-grid {
    grid-template-columns: 1fr;
  }

  .emp-profile-meta span {
    width: 100%;
    border-radius: 14px;
  }

  .emp-profile-shell .jp-empty {
    margin-left: 18px;
    margin-right: 18px;
  }
}





/* =========================================================
   HandyMens Employer Cabinet v20 — Premium Modern UI
   Qo‘yish joyi: assets/style.css ENG OXIRI
========================================================= */

:root{
  --emp-v20-green:#004f43;
  --emp-v20-green-2:#036b5c;
  --emp-v20-mint:#e8fff8;
  --emp-v20-orange:#f86436;
  --emp-v20-blue:#316bff;
  --emp-v20-red:#ef4444;
  --emp-v20-bg:#f5f7fb;
  --emp-v20-card:#ffffff;
  --emp-v20-text:#0f1f35;
  --emp-v20-muted:#6b778c;
  --emp-v20-line:#e6eaf0;
  --emp-v20-soft:#f8fafc;
  --emp-v20-shadow:0 22px 70px rgba(15,31,53,.10);
  --emp-v20-shadow-strong:0 34px 110px rgba(15,31,53,.18);
  --emp-v20-radius:28px;
}

/* ===== Employer cabinet shell ===== */
.emp-profile-shell-v20{
  position:relative;
  min-height:100vh;
  padding:132px 0 86px;
  background:
    radial-gradient(circle at 8% 5%, rgba(0,79,67,.13), transparent 33%),
    radial-gradient(circle at 94% 8%, rgba(248,100,54,.12), transparent 30%),
    linear-gradient(180deg,#fbfcff 0%,#f4f7fb 48%,#ffffff 100%);
  overflow:hidden;
}

.emp-profile-shell-v20:before{
  content:"";
  position:absolute;
  inset:86px auto auto -110px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(0,79,67,.13),rgba(248,100,54,.10));
  filter:blur(8px);
  pointer-events:none;
}

.emp-profile-shell-v20:after{
  content:"";
  position:absolute;
  right:-150px;
  top:210px;
  width:420px;
  height:420px;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(49,107,255,.09),rgba(0,79,67,.10));
  filter:blur(9px);
  pointer-events:none;
}

.emp-profile-shell-v20 .jp-container-v20{
  position:relative;
  z-index:2;
}

/* ===== Premium tabs ===== */
.emp-tabs-v20,
.emp-profile-shell-v20 .jp-tabs-v20{
  top:86px;
  z-index:20;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin:0 0 28px;
  padding:16px;
  border:1px solid rgba(230,234,240,.86);
  border-radius:30px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);
  box-shadow:0 18px 60px rgba(15,31,53,.08);
}

.emp-tabs-v20 a,
.emp-profile-shell-v20 .jp-tabs-v20 a{
  position:relative;
  min-height:88px;
  display:grid;
  grid-template-columns:46px minmax(0,1fr) auto;
  align-items:center;
  gap:13px;
  padding:18px;
  border:1px solid transparent;
  border-radius:22px;
  color:#26364d;
  background:transparent;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    color .18s ease;
  overflow:hidden;
}

.emp-tabs-v20 a:before,
.emp-profile-shell-v20 .jp-tabs-v20 a:before{
  content:"";
  position:absolute;
  inset:auto 16px 0 16px;
  height:3px;
  border-radius:999px 999px 0 0;
  background:linear-gradient(90deg,var(--emp-v20-green),var(--emp-v20-orange));
  opacity:0;
  transform:scaleX(.35);
  transition:.2s ease;
}

.emp-tabs-v20 a:hover,
.emp-profile-shell-v20 .jp-tabs-v20 a:hover{
  transform:translateY(-2px);
  background:#fff;
  border-color:#e9eef5;
  box-shadow:0 16px 38px rgba(15,31,53,.08);
}

.emp-tabs-v20 a.is-active,
.emp-profile-shell-v20 .jp-tabs-v20 a.is-active{
  color:var(--emp-v20-green);
  background:
    linear-gradient(180deg,#ffffff 0%,#f4fffb 100%);
  border-color:rgba(0,79,67,.18);
  box-shadow:0 18px 46px rgba(0,79,67,.12);
}

.emp-tabs-v20 a.is-active:before,
.emp-profile-shell-v20 .jp-tabs-v20 a.is-active:before{
  opacity:1;
  transform:scaleX(1);
}

.emp-tabs-v20 i,
.emp-profile-shell-v20 .jp-tabs-v20 i{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:16px;
  color:#fff;
  background:linear-gradient(135deg,var(--emp-v20-green),var(--emp-v20-green-2));
  box-shadow:0 14px 30px rgba(0,79,67,.18);
  font-size:18px;
}

.emp-tabs-v20 a:nth-child(3) i{
  background:linear-gradient(135deg,#0f5bff,#6f8cff);
  box-shadow:0 14px 30px rgba(49,107,255,.18);
}

.emp-tabs-v20 a:nth-child(4) i{
  background:linear-gradient(135deg,var(--emp-v20-orange),#ff9b6f);
  box-shadow:0 14px 30px rgba(248,100,54,.20);
}

.emp-tabs-v20 span,
.emp-profile-shell-v20 .jp-tabs-v20 span{
  min-width:0;
  display:grid;
  gap:5px;
  font-size:15px;
  font-weight:900;
  line-height:1.15;
}

.emp-tabs-v20 small,
.emp-profile-shell-v20 .jp-tabs-v20 small{
  color:#7b8798;
  font-size:12px;
  line-height:1.25;
  font-weight:700;
}

.emp-tabs-v20 b,
.emp-profile-shell-v20 .jp-tabs-v20 b{
  min-width:34px;
  height:28px;
  display:grid;
  place-items:center;
  padding:0 9px;
  border-radius:999px;
  color:#fff;
  background:linear-gradient(135deg,var(--emp-v20-orange),#ff8a62);
  box-shadow:0 10px 22px rgba(248,100,54,.24);
  font-size:12px;
  font-weight:900;
}

/* ===== Sections and cards ===== */
.emp-profile-shell-v20 .jp-section{
  animation:empV20Fade .24s ease both;
}

@keyframes empV20Fade{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:translateY(0)}
}

.emp-card-v20,
.emp-profile-shell-v20 .jp-card{
  position:relative;
  border:1px solid rgba(230,234,240,.92);
  border-radius:34px;
  background:rgba(255,255,255,.92);
  box-shadow:var(--emp-v20-shadow);
  overflow:hidden;
}

.emp-card-v20:before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:6px;
  background:linear-gradient(90deg,var(--emp-v20-green),#08a88e,var(--emp-v20-orange));
}

.emp-card-head-v20,
.emp-profile-shell-v20 .jp-card-head{
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  padding:34px 36px 24px;
  border-bottom:1px solid #edf1f6;
}

.emp-card-head-v20 span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 10px;
  color:var(--emp-v20-green);
  font-size:13px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.emp-card-head-v20 span:before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--emp-v20-orange);
  box-shadow:0 0 0 6px rgba(248,100,54,.12);
}

.emp-card-head-v20 h2,
.emp-profile-shell-v20 .jp-card-head h2{
  margin:0;
  color:var(--emp-v20-text);
  font-size:34px;
  line-height:1.12;
  letter-spacing:-.8px;
  font-weight:950;
}

.emp-card-head-v20 p,
.emp-profile-shell-v20 .jp-card-head p{
  max-width:680px;
  margin:10px 0 0;
  color:var(--emp-v20-muted);
  font-size:15px;
  line-height:1.55;
  font-weight:600;
}

.emp-card-head-v20 .btn,
.emp-card-head-v20 a.btn{
  height:52px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius:17px;
  box-shadow:0 16px 34px rgba(0,79,67,.18);
}

/* ===== Empty states ===== */
.emp-profile-shell-v20 .jp-empty{
  margin:0;
  padding:58px 28px;
  text-align:center;
  color:var(--emp-v20-muted);
  background:
    radial-gradient(circle at 50% 0%,rgba(0,79,67,.08),transparent 38%),
    #fff;
}

.emp-profile-shell-v20 .jp-empty i{
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  margin:0 auto 18px;
  border-radius:24px;
  color:var(--emp-v20-green);
  background:#ecfff8;
  font-size:30px;
}

.emp-profile-shell-v20 .jp-empty h3{
  margin:0 0 10px;
  color:var(--emp-v20-text);
  font-size:24px;
  line-height:1.2;
  font-weight:900;
}

.emp-profile-shell-v20 .jp-empty p{
  max-width:560px;
  margin:0 auto;
  font-size:15px;
  line-height:1.5;
}

/* ===== My vacancies list ===== */
.emp-vacancy-list-v20{
  display:grid;
  gap:18px;
}

.emp-vacancy-item-v20{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:center;
  padding:24px;
  border:1px solid #e7ecf3;
  border-radius:26px;
  background:
    linear-gradient(180deg,#fff 0%,#fbfdff 100%);
  box-shadow:0 12px 34px rgba(15,31,53,.055);
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.emp-vacancy-item-v20:before{
  content:"";
  position:absolute;
  left:0;
  top:22px;
  bottom:22px;
  width:4px;
  border-radius:0 999px 999px 0;
  background:linear-gradient(180deg,var(--emp-v20-green),var(--emp-v20-orange));
}

.emp-vacancy-item-v20:hover{
  transform:translateY(-3px);
  border-color:rgba(0,79,67,.20);
  box-shadow:0 22px 60px rgba(15,31,53,.105);
}

.emp-vacancy-main-v20{
  min-width:0;
  display:grid;
  gap:13px;
}

.emp-vacancy-title-row-v20{
  display:flex;
  align-items:flex-start;
  gap:14px;
  justify-content:space-between;
}

.emp-vacancy-title-row-v20 h3{
  margin:0;
  color:var(--emp-v20-text);
  font-size:23px;
  line-height:1.25;
  letter-spacing:-.35px;
  font-weight:950;
}

.emp-vacancy-title-row-v20 span{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 12px;
  border-radius:999px;
  color:#08705f;
  background:#e8fff8;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.emp-vacancy-main-v20 p{
  margin:0;
  color:var(--emp-v20-green);
  font-size:18px;
  font-weight:900;
}

.emp-vacancy-metrics-v20{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.emp-vacancy-metrics-v20 span{
  min-height:36px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 12px;
  border:1px solid #e8edf4;
  border-radius:999px;
  color:#5f6f84;
  background:#fff;
  font-size:13px;
  font-weight:800;
}

.emp-vacancy-metrics-v20 i{
  color:var(--emp-v20-green);
}

.emp-vacancy-metrics-v20 b{
  color:var(--emp-v20-text);
}

.emp-vacancy-actions-v20{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}

.emp-vacancy-actions-v20 a,
.emp-vacancy-actions-v20 button{
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 14px;
  border:1px solid #e3e9f2;
  border-radius:14px;
  color:#26364d;
  background:#fff;
  cursor:pointer;
  font-size:13px;
  line-height:1;
  font-weight:900;
  transition:.16s ease;
}

.emp-vacancy-actions-v20 a:hover,
.emp-vacancy-actions-v20 button:hover{
  transform:translateY(-1px);
  color:var(--emp-v20-green);
  border-color:rgba(0,79,67,.22);
  background:#f5fffb;
  box-shadow:0 12px 24px rgba(15,31,53,.07);
}

.emp-vacancy-actions-v20 .is-danger{
  color:#dc2626;
  border-color:#fee2e2;
  background:#fff7f7;
}

.emp-vacancy-actions-v20 .is-danger:hover{
  color:#fff;
  border-color:#ef4444;
  background:#ef4444;
}

/* ===== Forms ===== */
.emp-form-v20,
.emp-legal-v20{
  padding:0;
}

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

.emp-grid-2-v20{
  grid-template-columns:repeat(2,minmax(0,1fr));
}



.emp-form-grid-v20 label,
.emp-wide,
.emp-builder-panel-v20 label{
  min-width:0;
}

.emp-form-grid-v20 label span,
.emp-wide span,
.emp-builder-panel-v20 label span{
  margin:0 0 8px;
  color:#344257;
  font-size:13px;
  font-weight:900;
}

.emp-form-grid-v20 input,
.emp-form-grid-v20 select,
.emp-form-grid-v20 textarea,
.emp-wide input,
.emp-wide textarea,
.emp-wide select,
.emp-builder-panel-v20 input,
.emp-builder-panel-v20 select,
.emp-builder-panel-v20 textarea{
  width:100%;
  min-height:54px;
  border:1px solid #dfe6ef;
  border-radius:17px;
  outline:0;
  background:#fff;
  color:var(--emp-v20-text);
  padding:0 16px;
  font-size:15px;
  font-weight:700;
  transition:
    border-color .15s ease,
    box-shadow .15s ease,
    background .15s ease;
}

.emp-form-grid-v20 textarea,
.emp-wide textarea,
.emp-builder-panel-v20 textarea{
  min-height:130px;
  padding:15px 16px;
  line-height:1.5;
  resize:vertical;
}

.emp-form-grid-v20 input:focus,
.emp-form-grid-v20 select:focus,
.emp-form-grid-v20 textarea:focus,
.emp-wide input:focus,
.emp-wide textarea:focus,
.emp-wide select:focus,
.emp-builder-panel-v20 input:focus,
.emp-builder-panel-v20 select:focus,
.emp-builder-panel-v20 textarea:focus{
  border-color:rgba(0,79,67,.42);
  background:#fff;
  box-shadow:0 0 0 5px rgba(0,79,67,.08);
}

.emp-form-actions-v20{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px;
  padding:22px 36px 36px;
}

.emp-form-actions-v20 p,
.emp-builder-actions-v20 p{
  margin:0 auto 0 0;
  color:var(--emp-v20-muted);
  font-size:14px;
  font-weight:800;
}

.emp-form-actions-v20 p.is-ok,
.emp-builder-actions-v20 p.is-ok{
  color:#079669;
}

.emp-form-actions-v20 p.is-error,
.emp-builder-actions-v20 p.is-error{
  color:#ef4444;
}

/* ===== Legal information ===== */
.emp-legal-head-v20{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:22px;
  padding:36px 36px 24px;
  
}

.emp-legal-head-v20 h2{
  margin:0;
  color:var(--emp-v20-text);
  font-size:34px;
  line-height:1.12;
  letter-spacing:-.8px;
  font-weight:950;
}

.emp-legal-head-v20 p{
  max-width:720px;
  margin:10px 0 0;
  color:var(--emp-v20-muted);
  font-size:15px;
  line-height:1.55;
  font-weight:600;
}

.emp-legal-status-v20{
  flex:0 0 auto;
  min-height:42px;
  display:inline-flex;
  align-items:center;
  padding:0 16px;
  border-radius:999px;
  color:#b45309;
  background:#fff7ed;
  border:1px solid #fed7aa;
  font-size:13px;
  font-weight:950;
}

.emp-legal-toggle-v20{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  padding:22px 36px;
}

.emp-legal-toggle-v20 label{
  position:relative;
  cursor:pointer;
}

.emp-legal-toggle-v20 input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.emp-legal-toggle-v20 span{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border:1px solid #dfe6ef;
  border-radius:18px;
  color:#41506a;
  background:#fff;
  font-size:15px;
  font-weight:950;
  transition:.16s ease;
}

.emp-legal-toggle-v20 input:checked + span{
  color:#fff;
  border-color:var(--emp-v20-green);
  background:linear-gradient(135deg,var(--emp-v20-green),var(--emp-v20-green-2));
  box-shadow:0 18px 34px rgba(0,79,67,.18);
}

/* ===== Responses ===== */
.emp-response-list-v20{
  display:grid;
  gap:18px;
}

.emp-response-item-v20{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:22px;
  align-items:center;
  padding:24px;
  border:1px solid #e7ecf3;
  border-radius:26px;
  background:#fff;
  box-shadow:0 12px 34px rgba(15,31,53,.055);
  transition:.16s ease;
}

.emp-response-item-v20:hover{
  transform:translateY(-2px);
  border-color:rgba(0,79,67,.20);
  box-shadow:0 22px 60px rgba(15,31,53,.10);
}

.emp-response-item-v20.is-new{
  border-color:rgba(248,100,54,.30);
  background:
    radial-gradient(circle at 0% 0%,rgba(248,100,54,.08),transparent 28%),
    #fff;
}

.emp-response-item-v20.is-new:before{
  content:"NEW";
  position:absolute;
  top:18px;
  right:18px;
  height:24px;
  display:grid;
  place-items:center;
  padding:0 10px;
  border-radius:999px;
  color:#fff;
  background:var(--emp-v20-orange);
  font-size:10px;
  font-weight:950;
  letter-spacing:.08em;
}

.emp-response-main-v20{
  min-width:0;
}

.emp-response-main-v20 h3{
  margin:0 0 8px;
  color:var(--emp-v20-text);
  font-size:23px;
  line-height:1.2;
  font-weight:950;
}

.emp-response-main-v20 p{
  margin:0;
  color:#5f6f84;
  font-size:15px;
  line-height:1.45;
  font-weight:700;
}

.emp-response-meta-v20,
.emp-profile-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.emp-profile-meta span{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:0 12px;
  border:1px solid #e8edf4;
  border-radius:999px;
  color:#5f6f84;
  background:#fff;
  font-size:12px;
  font-weight:850;
}

.emp-profile-status{
  color:#075f53 !important;
  background:#e8fff8 !important;
  border-color:#b9f7df !important;
}

.emp-profile-status.is-new{
  color:#c2410c !important;
  background:#fff7ed !important;
  border-color:#fed7aa !important;
}

.emp-response-cover{
  margin-top:16px;
  padding:16px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid #e8edf4;
}

.emp-response-cover b{
  display:block;
  margin:0 0 7px;
  color:var(--emp-v20-text);
  font-size:13px;
  font-weight:950;
}

.emp-response-cover p{
  color:#657187;
  font-size:14px;
  line-height:1.5;
}

/* ===== Create vacancy builder ===== */
.emp-create-section-v20{
  position:relative;
}

.jp-create-top-v20{
  display:flex;
  align-items:flex-start;
  gap:20px;
  margin-bottom:22px;
  padding:30px 34px;
  border:1px solid #e7ecf3;
  border-radius:32px;
  background:rgba(255,255,255,.88);
  box-shadow:var(--emp-v20-shadow);
}

.jp-back-v20{
  height:44px;
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:0 16px;
  border:1px solid #e3e9f2;
  border-radius:15px;
  color:#26364d;
  background:#fff;
  font-weight:900;
}

.jp-create-top-v20 span{
  display:inline-flex;
  margin-bottom:10px;
  color:var(--emp-v20-orange);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:950;
}

.jp-create-top-v20 h2{
  margin:0;
  color:var(--emp-v20-text);
  font-size:38px;
  line-height:1.1;
  letter-spacing:-1px;
  font-weight:950;
}

.jp-create-top-v20 p{
  max-width:760px;
  margin:10px 0 0;
  color:var(--emp-v20-muted);
  font-size:15px;
  line-height:1.55;
  font-weight:650;
}

.emp-vacancy-builder-v20{
  display:grid;
  gap:20px;
}

.emp-builder-stepper-v20{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  padding:16px;
  border:1px solid #e7ecf3;
  border-radius:30px;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(16px);
  box-shadow:var(--emp-v20-shadow);
}

.emp-builder-stepper-v20 button{
  min-height:78px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border:1px solid transparent;
  border-radius:21px;
  background:transparent;
  color:#5d6b80;
  cursor:pointer;
  text-align:left;
  transition:.16s ease;
}

.emp-builder-stepper-v20 button:hover{
  background:#fff;
  border-color:#e7ecf3;
}

.emp-builder-stepper-v20 b{
  width:42px;
  height:42px;
  flex:0 0 42px;
  display:grid;
  place-items:center;
  border-radius:15px;
  color:#68758a;
  background:#eef2f7;
  font-size:16px;
  font-weight:950;
}

.emp-builder-stepper-v20 span{
  font-size:13px;
  line-height:1.25;
  font-weight:950;
}

.emp-builder-stepper-v20 button.is-active{
  color:var(--emp-v20-green);
  background:#fff;
  border-color:rgba(0,79,67,.18);
  box-shadow:0 16px 36px rgba(0,79,67,.10);
}

.emp-builder-stepper-v20 button.is-active b{
  color:#fff;
  background:linear-gradient(135deg,var(--emp-v20-green),var(--emp-v20-green-2));
}

.emp-builder-stepper-v20 button.is-done b{
  color:#fff;
  background:linear-gradient(135deg,#10b981,#34d399);
}

.emp-builder-card-v20{
  border:1px solid #e7ecf3;
  border-radius:34px;
  background:#fff;
  box-shadow:var(--emp-v20-shadow);
  overflow:hidden;
}

.emp-builder-panel-v20{
  padding:36px;
  animation:empV20Fade .22s ease both;
}

.emp-builder-panel-v20 h2{
  margin:0 0 10px;
  color:var(--emp-v20-text);
  font-size:34px;
  line-height:1.12;
  letter-spacing:-.8px;
  font-weight:950;
}

.emp-builder-panel-v20 > p{
  max-width:740px;
  margin:0 0 26px;
  color:var(--emp-v20-muted);
  font-size:15px;
  line-height:1.55;
  font-weight:650;
}

.emp-builder-options-v20{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:20px 0 0;
  padding:18px;
  border:1px solid #e7ecf3;
  border-radius:23px;
  background:#fbfdff;
}

.emp-builder-options-v20 h3{
  width:100%;
  margin:0 0 4px;
  color:#26364d;
  font-size:15px;
  font-weight:950;
}

.emp-v20-choice{
  position:relative;
  cursor:pointer;
}

.emp-v20-choice input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.emp-v20-choice span{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  border:1px solid #dfe6ef;
  border-radius:999px;
  color:#41506a;
  background:#fff;
  font-size:13px;
  line-height:1;
  font-weight:900;
  transition:.15s ease;
}

.emp-v20-choice input:checked + span{
  color:#fff;
  border-color:var(--emp-v20-green);
  background:linear-gradient(135deg,var(--emp-v20-green),var(--emp-v20-green-2));
  box-shadow:0 12px 26px rgba(0,79,67,.18);
}

.emp-checkline-v20{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:16px;
  font-weight:900;
  color:#26364d;
}

.emp-checkline-v20 input{
  width:18px;
  height:18px;
  accent-color:var(--emp-v20-green);
}

.emp-builder-actions-v20{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  padding:22px 36px 36px;
  border-top:1px solid #edf1f6;
  background:#fbfdff;
}

.emp-builder-actions-v20 .btn{
  min-width:auto;
  height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:17px;
}

.emp-builder-actions-v20 .btn-light{
  border:1px solid #e1e7f0;
  color:#26364d;
  background:#fff;
}

.emp-builder-actions-v20 .btn-primary{
  box-shadow:0 16px 34px rgba(0,79,67,.18);
}

/* ===== Dynamic modal ===== */
.emp-v20-modal{
  position: fixed;
    inset: 0;
    z-index: 130;
    display: grid; 
    place-items: center;
    /* padding: 24px; */
    background: rgba(8, 15, 29, .62);
    backdrop-filter: blur(12px);
}

.emp-v20-modal[hidden]{
  display:none !important;
}

.emp-v20-modal-card{
  position: relative;
    /* width: min(980px, 100%); */
    max-height: min(100vh, 860px);
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .65);
    /* border-radius: 34px; */
    background: #fff;
    box-shadow: var(--emp-v20-shadow-strong);
}

.emp-v20-modal-close{
  position:sticky;
  top:18px;
  left:calc(100% - 58px);
  z-index:2;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  margin:18px 18px -46px auto;
  border:0;
  border-radius:15px;
  color:#20304a;
  background:#f3f6fa;
  cursor:pointer;
  font-size:28px;
  line-height:1;
  font-weight:700;
}

.emp-v20-modal-close:hover{
  color:#fff;
  background:#ef4444;
}

.emp-v20-vacancy-view,
.emp-v20-resume-view,
.emp-v20-success{
  padding:44px;
}

.emp-v20-vacancy-view h2,
.emp-v20-resume-view h2,
.emp-v20-success h2{
  margin:0 0 18px;
  color:var(--emp-v20-text);
  font-size:38px;
  line-height:1.12;
  letter-spacing:-1px;
  font-weight:950;
}

.emp-v20-view-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 24px;
}

.emp-v20-view-meta span{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  padding:0 13px;
  border:1px solid #e8edf4;
  border-radius:999px;
  color:#4f5f74;
  background:#fbfdff;
  font-size:13px;
  font-weight:850;
}

.emp-v20-kv{
  margin:16px 0 0;
  padding:18px;
  border:1px solid #e8edf4;
  border-radius:20px;
  background:#fbfdff;
}

.emp-v20-kv b{
  display:block;
  margin:0 0 8px;
  color:var(--emp-v20-text);
  font-size:14px;
  font-weight:950;
}

.emp-v20-kv p{
  margin:0;
  color:#526277;
  font-size:15px;
  line-height:1.6;
  font-weight:600;
}

.emp-v20-pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.emp-v20-pills span{
  min-height:36px;
  display:inline-flex;
  align-items:center;
  padding:0 13px;
  border-radius:999px;
  color:#075f53;
  background:#e8fff8;
  border:1px solid #b9f7df;
  font-size:13px;
  font-weight:900;
}

.emp-v20-success{
  text-align:center;
  background:
    radial-gradient(circle at 50% 0%,rgba(0,79,67,.12),transparent 42%),
    #fff;
}

.emp-v20-success i{
  width:88px;
  height:88px;
  display:grid;
  place-items:center;
  margin:0 auto 22px;
  border-radius:30px;
  color:#fff;
  background:linear-gradient(135deg,var(--emp-v20-green),#08a88e);
  box-shadow:0 20px 44px rgba(0,79,67,.22);
  font-size:38px;
}

.emp-v20-success p{
  max-width:560px;
  margin:0 auto 24px;
  color:var(--emp-v20-muted);
  font-size:16px;
  line-height:1.55;
}

.emp-v20-success .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:54px;
  border-radius:18px;
}

/* ===== Buttons polish in employer cabinet ===== */
.emp-profile-shell-v20 .btn-primary{
  background:linear-gradient(135deg,var(--emp-v20-green),var(--emp-v20-green-2));
  color:#fff;
}

.emp-profile-shell-v20 .btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 38px rgba(0,79,67,.22);
}

.emp-profile-shell-v20 .btn-light{
  border:1px solid #e3e9f2;
  color:#26364d;
  background:#fff;
}

/* ===== Responsive ===== */
@media (max-width:1180px){
  .emp-profile-shell-v20{
    padding-top:112px;
  }

  .emp-tabs-v20,
  .emp-profile-shell-v20 .jp-tabs-v20{
    top:74px;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .emp-vacancy-item-v20,
  .emp-response-item-v20{
    grid-template-columns:1fr;
  }

  .emp-vacancy-actions-v20{
    justify-content:flex-start;
  }

  .emp-builder-stepper-v20{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:760px){
  .emp-profile-shell-v20{
    padding:86px 0 48px;
  }

  .emp-profile-shell-v20 .hm-container,
  .emp-profile-shell-v20 .jp-container-v20{
    width:calc(100% - 24px) !important;
  }

  .emp-tabs-v20,
  .emp-profile-shell-v20 .jp-tabs-v20{
    position:relative;
    top:auto;
    grid-template-columns:1fr;
    gap:10px;
    padding:10px;
    border-radius:24px;
    margin-bottom:18px;
  }

  .emp-tabs-v20 a,
  .emp-profile-shell-v20 .jp-tabs-v20 a{
    min-height:72px;
    grid-template-columns:42px minmax(0,1fr) auto;
    padding:14px;
    border-radius:18px;
  }

  .emp-tabs-v20 i,
  .emp-profile-shell-v20 .jp-tabs-v20 i{
    width:42px;
    height:42px;
    border-radius:14px;
  }

  .emp-tabs-v20 small,
  .emp-profile-shell-v20 .jp-tabs-v20 small{
    display:none;
  }

  .emp-card-v20,
  .emp-profile-shell-v20 .jp-card,
  .emp-builder-card-v20,
  .jp-create-top-v20{
    border-radius:24px;
  }

  .emp-card-head-v20,
  .emp-profile-shell-v20 .jp-card-head,
  .emp-legal-head-v20,
  .jp-create-top-v20{
    display:block;
    padding:24px 20px 18px;
  }

  .emp-card-head-v20 h2,
  .emp-profile-shell-v20 .jp-card-head h2,
  .emp-legal-head-v20 h2,
  .jp-create-top-v20 h2,
  .emp-builder-panel-v20 h2{
    font-size:26px;
    letter-spacing:-.55px;
  }

  .emp-card-head-v20 .btn,
  .emp-card-head-v20 a.btn{
    width:100%;
    margin-top:18px;
  }

  .emp-vacancy-list-v20,
  .emp-response-list-v20{
    gap:14px;
  }

  .emp-vacancy-item-v20,
  .emp-response-item-v20{
    padding:18px;
    border-radius:20px;
  }

  .emp-vacancy-title-row-v20{
    display:block;
  }

  .emp-vacancy-title-row-v20 h3,
  .emp-response-main-v20 h3{
    font-size:20px;
  }

  .emp-vacancy-title-row-v20 span{
    margin-top:10px;
  }

  .emp-vacancy-actions-v20{
    display:grid;
    grid-template-columns:1fr 1fr;
    width:100%;
  }

  .emp-vacancy-actions-v20 a,
  .emp-vacancy-actions-v20 button{
    width:100%;
    padding:0 10px;
    font-size:12px;
  }

  .emp-form-grid-v20,
  .emp-grid-2-v20{
    grid-template-columns:1fr;
    gap:14px;
  }

  .emp-wide{
    padding:0 18px;
  }

  .emp-form-actions-v20,
  .emp-builder-actions-v20{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    padding:20px 18px 24px;
  }

  .emp-form-actions-v20 p,
  .emp-builder-actions-v20 p{
    margin:0;
  }

  .emp-form-actions-v20 .btn,
  .emp-builder-actions-v20 .btn{
    width:100%;
  }

  .emp-legal-toggle-v20{
    grid-template-columns:1fr;
    padding:18px;
  }

  .emp-legal-status-v20{
    margin-top:16px;
  }

  .jp-create-top-v20{
    padding:22px 18px;
  }

  .jp-back-v20{
    margin-bottom:16px;
  }

  .emp-builder-stepper-v20{
    grid-template-columns:1fr;
    padding:10px;
    border-radius:24px;
  }

  .emp-builder-stepper-v20 button{
    min-height:62px;
    border-radius:17px;
  }

  .emp-builder-panel-v20{
    padding:22px 18px;
  }

  .emp-builder-options-v20{
    padding:14px;
    border-radius:18px;
  }

  .emp-v20-choice span{
    min-height:38px;
    font-size:12px;
  }

  .emp-v20-modal{
  }

  .emp-v20-modal-card{
  }

  .emp-v20-modal-close{
    top:12px;
    margin:12px 12px -40px auto;
  }

  .emp-v20-vacancy-view,
  .emp-v20-resume-view,
  .emp-v20-success{
    padding:34px 18px 22px;
  }

  .emp-v20-vacancy-view h2,
  .emp-v20-resume-view h2,
  .emp-v20-success h2{
    font-size:25px;
    letter-spacing:-.5px;
  }

  .emp-v20-view-meta{
    gap:8px;
  }

  .emp-v20-view-meta span{
    min-height:34px;
    font-size:12px;
  }
}

@media (max-width:430px){
  .emp-vacancy-actions-v20{
    grid-template-columns:1fr;
  }

  .emp-vacancy-metrics-v20 span,
  .emp-profile-meta span{
    width:100%;
    justify-content:flex-start;
  }
}

/* ===== Employer vacancy delete confirm modal v21 ===== */
.emp-v20-delete-confirm{
  padding:54px 42px 42px;
  text-align:center;
}

.emp-v20-delete-icon{
  width:92px;
  height:92px;
  display:grid;
  place-items:center;
  margin:0 auto 22px;
  border-radius:32px;
  color:#fff;
  background:linear-gradient(135deg,#ef4444,#fb7185);
  box-shadow:0 24px 54px rgba(239,68,68,.26);
  font-size:36px;
}

.emp-v20-delete-confirm h2{
  max-width:620px;
  margin:0 auto 14px;
  color:#0f1f35;
  font-size:34px;
  line-height:1.15;
  letter-spacing:-.8px;
  font-weight:950;
}

.emp-v20-delete-confirm p{
  max-width:620px;
  margin:0 auto;
  color:#667085;
  font-size:16px;
  line-height:1.6;
  font-weight:650;
}

.emp-v20-delete-confirm p b{
  color:#0f1f35;
  font-weight:950;
}

.emp-v20-delete-actions{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:30px;
}

.emp-v20-delete-actions .btn{
  height:54px;
  min-width:180px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
}

.emp-v20-delete-actions .btn-light{
  border:1px solid #e3e9f2;
  background:#fff;
  color:#26364d;
}

.emp-v20-delete-actions .is-danger{
  background:linear-gradient(135deg,#ef4444,#dc2626) !important;
  color:#fff !important;
  box-shadow:0 18px 38px rgba(239,68,68,.25) !important;
}

.emp-v20-delete-message{
  min-height:20px;
  margin-top:18px !important;
  font-size:14px !important;
  font-weight:850 !important;
}

.emp-v20-delete-message.is-ok{
  color:#059669 !important;
}

.emp-v20-delete-message.is-error{
  color:#dc2626 !important;
}

.emp-v20-view-hero{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:22px;
  padding:0 0 24px;
  margin-bottom:24px;
  border-bottom:1px solid #edf1f6;
}

.emp-v20-view-kicker{
  display:inline-flex;
  margin-bottom:10px;
  color:#004f43;
  font-size:13px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.emp-v20-view-hero p{
  margin:8px 0 0;
  color:#667085;
  font-size:16px;
  font-weight:750;
}

.emp-v20-view-status{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  padding:0 15px;
  border-radius:999px;
  color:#075f53;
  background:#e8fff8;
  border:1px solid #b9f7df;
  font-size:13px;
  font-weight:950;
  text-transform:uppercase;
}

.emp-v20-view-meta-big span{
  gap:8px;
}

.emp-v20-full-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-bottom:18px;
}

.emp-v20-view-actions{
  display:flex;
  justify-content:flex-end;
  margin-top:24px;
}

.emp-v20-view-actions .btn{
  height:54px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  border-radius:18px;
}

@media(max-width:720px){
  .emp-v20-delete-confirm{
    padding:44px 20px 26px;
  }

  .emp-v20-delete-confirm h2{
    font-size:25px;
  }

  .emp-v20-delete-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .emp-v20-delete-actions .btn{
    width:100%;
  }

  .emp-v20-view-hero{
    display:block;
  }

  .emp-v20-view-status{
    margin-top:16px;
  }

  .emp-v20-full-grid{
    grid-template-columns:1fr;
  }

  .emp-v20-view-actions .btn{
    width:100%;
  }
}

/* ===== Employer privacy/contact box v22 ===== */
.emp-v20-privacy-box{
  display:grid;
  grid-template-columns:54px minmax(0,1fr);
  gap:16px;
  align-items:flex-start;
  margin-top:22px;
  padding:20px;
  border:1px solid #dbeafe;
  border-radius:22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(49,107,255,.10), transparent 34%),
    #f8fbff;
}

.emp-v20-privacy-box > div{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  color:#fff;
  background:linear-gradient(135deg,#316bff,#0ea5e9);
  box-shadow:0 16px 34px rgba(49,107,255,.22);
  font-size:22px;
}

.emp-v20-privacy-box h3{
  margin:0 0 8px;
  color:#0f1f35;
  font-size:18px;
  line-height:1.25;
  font-weight:950;
}

.emp-v20-privacy-box p{
  margin:0;
  color:#5f6f84;
  font-size:14px;
  line-height:1.55;
  font-weight:650;
}

.emp-v20-detail-section{
  margin-top:18px;
  padding:20px;
  border:1px solid #e8edf4;
  border-radius:22px;
  background:#fbfdff;
}

.emp-v20-detail-section h3{
  margin:0 0 10px;
  color:#0f1f35;
  font-size:18px;
  line-height:1.25;
  font-weight:950;
}

.emp-v20-detail-section div{
  color:#526277;
  font-size:15px;
  line-height:1.65;
  font-weight:600;
}

.emp-v20-view-actions{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}

.emp-v20-view-actions .btn{
  height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:18px;
}

@media(max-width:720px){
  .emp-v20-privacy-box{
    grid-template-columns:1fr;
    padding:18px;
  }

  .emp-v20-view-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .emp-v20-view-actions .btn{
    width:100%;
  }
}

.emp-form-grid-v20 label > span,
.emp-wide > span,
.emp-builder-panel-v20 label > span{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:7px;
  width:100%;
  margin:0 0 13px !important;
 
  color:#1f3149;
  font-size:13.5px;
  line-height:1.35;
  font-weight:900;
  letter-spacing:.01em;
}

.emp-form-grid-v20 label > span b,
.emp-wide > span b,
.emp-builder-panel-v20 label > span b{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#ef4444;
  font-size:14px;
  line-height:1;
  font-weight:950;
}

.emp-form-grid-v20 label:focus-within > span,
.emp-wide:focus-within > span,
.emp-builder-panel-v20 label:focus-within > span{
  color:#004f43;
}

/* ===== Employer builder category manual v25 ===== */
.emp-category-manual-v25{
  display:grid !important;
  grid-template-columns:1fr;
  gap:10px;
}

.emp-category-manual-v25 > span{
  margin:0 0 2px !important;
}

.emp-category-manual-v25 select,
.emp-category-manual-v25 input{
  width:100%;
}

.emp-category-manual-v25 small{
  display:block;
  color:#667085;
  font-size:12px;
  line-height:1.45;
  font-weight:750;
}

.emp-builder-stepper-v20{
}

.emp-builder-actions-v20{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto auto;
  gap:12px;
  align-items:center;
}

.emp-builder-actions-v20 > p{
  min-height:22px;
  margin:0;
}

.emp-builder-actions-v20 .btn{
  min-width:180px;
  height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
}

@media(max-width:760px){
  .emp-builder-actions-v20{
    grid-template-columns:1fr;
  }

  .emp-builder-actions-v20 .btn{
    width:100%;
    min-width:0;
  }
}

/* ===== Employer header notifications v26 ===== */
.emp-notify-item-v26{
  position:relative;
}

.emp-notify-item-v26 > i{
  background:#eefdf8;
  color:#004f43;
}

.emp-notify-item-v26.is-unread > i{
  background:#004f43;
  color:#fff;
  box-shadow:0 10px 24px rgba(0,79,67,.22);
}

.emp-notify-item-v26.is-unread strong{
  color:#004f43;
}

.emp-notify-private-v26{
  display:inline-flex;
  align-items:center;
  gap:5px;
  margin-left:6px;
  color:#667085;
  font-size:12px;
  font-weight:850;
}

.emp-notify-private-v26:before{
  content:"";
  width:6px;
  height:6px;
  border-radius:999px;
  background:#98a2b3;
}

.header-notify-btn.has-unread{
  position:relative;
}

.header-notify-btn .notify-dot{
  position:absolute;
  top:-7px;
  right:-7px;
  min-width:20px;
  height:20px;
  padding:0 6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid #fff;
  border-radius:999px;
  background:#ef4444;
  color:#fff;
  font-size:11px;
  line-height:1;
  font-weight:950;
  box-shadow:0 8px 18px rgba(239,68,68,.28);
}

/* ===== Candidates public resume modal v35 ===== */
.candidate-resume-modal-v35{
  position:fixed;
  inset:0;
  z-index:120;
  display:flex;
  align-items:stretch;
  justify-content:center;
  padding:22px;
  background:rgba(7,16,28,.68);
  backdrop-filter:blur(12px);
}

.candidate-resume-modal-v35[hidden]{
  display:none;
}

.candidate-resume-modal-card-v35 {
    position: relative;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-width: none;
    max-height: none;
    overflow: auto;
    border-radius: 0;
    background: #f7f9fc;
    box-shadow: none;
}

.candidate-resume-modal-close-v35{
  position:sticky;
  top:16px;
  float:right;
  z-index:4;
  width:46px;
  height:46px;
  margin:16px 16px 0 0;
  border:0;
  border-radius:16px;
  background:#fff;
  color:#0f1f35;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 14px 34px rgba(15,31,53,.16);
}

.candidate-resume-full-v35{
  padding:34px;
}

.candidate-resume-hero-v35{
  grid-template-columns:86px minmax(0,1fr);
  gap:20px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:
    radial-gradient(circle at 0% 0%,rgba(0,79,67,.16),transparent 36%),
    linear-gradient(135deg,#ffffff,#eef8f5);
  border:1px solid #dfeee9;
}

.candidate-resume-avatar-v35{
  width:86px;
  height:86px;
  display:grid;
  place-items:center;
  border-radius:28px;
  background:#004f43;
  color:#fff;
  font-size:34px;
  font-weight:950;
  box-shadow:0 20px 44px rgba(0,79,67,.24);
}

.candidate-resume-hero-v35 span{
  display:inline-flex;
  margin-bottom:8px;
  color:#004f43;
  font-size:13px;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.candidate-resume-hero-v35 h2{
  margin:0;
  color:#0f1f35;
  font-size:36px;
  line-height:1.12;
  font-weight:950;
  letter-spacing:-.7px;
}

.candidate-resume-hero-v35 p{
  margin:10px 0 0;
  color:#667085;
  font-size:16px;
  font-weight:800;
}

.candidate-resume-meta-v35{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0;
}

.candidate-resume-meta-v35 span{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 15px;
  border-radius:999px;
  background:#fff;
  border:1px solid #e3e9f1;
  color:#344257;
  font-size:14px;
  font-weight:850;
}

.candidate-resume-privacy-v35{
  display:grid;
  grid-template-columns:56px minmax(0,1fr);
  gap:16px;
  align-items:flex-start;
  margin:18px 0;
  padding:22px;
  border-radius:24px;
  background:#fff;
  border:1px solid #dbeafe;
  box-shadow:0 14px 34px rgba(15,31,53,.055);
}

.candidate-resume-privacy-v35 > div{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(135deg,#316bff,#0ea5e9);
  color:#fff;
  font-size:23px;
}

.candidate-resume-privacy-v35 h3{
  margin:0 0 8px;
  color:#0f1f35;
  font-size:18px;
  font-weight:950;
}

.candidate-resume-privacy-v35 p{
  margin:0;
  color:#617085;
  font-size:14px;
  line-height:1.55;
  font-weight:700;
}

.candidate-resume-section-v35{
  margin-top:16px;
  padding:24px;
  border-radius:24px;
  background:#fff;
  border:1px solid #e6ebf2;
  box-shadow:0 12px 32px rgba(15,31,53,.045);
}

.candidate-resume-section-v35 h3{
  margin:0 0 12px;
  color:#0f1f35;
  font-size:19px;
  line-height:1.25;
  font-weight:950;
}

.candidate-resume-section-v35 div{
  color:#536176;
  font-size:15px;
  line-height:1.7;
  font-weight:650;
}

.candidate-resume-chips-v35{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
}

.candidate-resume-chips-v35 span{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 13px;
  border-radius:999px;
  background:#eef8f5;
  color:#004f43;
  font-size:13px;
  font-weight:900;
}

.candidate-resume-photo-grid-v35{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.candidate-resume-photo-v35{
  display:block;
  overflow:hidden;
  border-radius:18px;
  background:#eef2f7;
  aspect-ratio:1.25 / 1;
}

.candidate-resume-photo-v35 img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.candidate-resume-video-grid-v35{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.candidate-resume-media-v35{
  min-height:74px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border-radius:18px;
  background:#f8fafc;
  border:1px solid #e5eaf1;
  color:#0f1f35;
  font-weight:850;
}

.candidate-resume-media-v35 i{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#004f43;
  color:#fff;
}

.candidate-resume-actions-v35{
  position:sticky;
  bottom:0;
  display:flex;
  justify-content:flex-end;
  gap:12px;
  margin-top:18px;
  padding:18px 0 0;
  background:linear-gradient(180deg,rgba(247,249,252,0),#f7f9fc 36%);
}

.candidate-resume-actions-v35 .btn{
  height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:18px;
}

.candidate-resume-open-v35{
  border:0;
  cursor:pointer;
}

.candidate-resume-open-v35:disabled{
  opacity:.7;
  cursor:wait;
}

.candidate-resume-error-v35{
  padding:54px 34px;
  text-align:center;
}

.candidate-resume-error-v35 i{
  font-size:42px;
  color:#ef4444;
}

.candidate-resume-error-v35 h2{
  margin:16px 0 8px;
  color:#0f1f35;
}

.candidate-resume-error-v35 p{
  margin:0;
  color:#667085;
  font-weight:700;
}

@media(max-width:760px){
  .candidate-resume-modal-v35{
    padding:0;
  }

  .candidate-resume-modal-card-v35 {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        border-radius: 0;
    }

  .candidate-resume-full-v35{
    padding:18px;
  }

  .candidate-resume-hero-v35{
    grid-template-columns:1fr;
    padding:24px;
    border-radius:22px;
  }

  .candidate-resume-avatar-v35{
    width:72px;
    height:72px;
    border-radius:22px;
    font-size:28px;
  }

  .candidate-resume-hero-v35 h2{
    font-size:27px;
  }

  .candidate-resume-privacy-v35{
    grid-template-columns:1fr;
  }

  .candidate-resume-photo-grid-v35,
  .candidate-resume-video-grid-v35{
    grid-template-columns:1fr;
  }

  .candidate-resume-actions-v35{
    display:grid;
    grid-template-columns:1fr;
  }

  .candidate-resume-actions-v35 .btn{
    width:100%;
  }
}

/* ===== Vacancy detail employer mode v36 ===== */
.vacancy-employer-view-note-v36{
  display:grid;
  grid-template-columns:54px minmax(0,1fr);
  gap:16px;
  align-items:flex-start;
  margin-top:26px;
  padding:20px;
  border:1px solid #dbeafe;
  border-radius:22px;
  background:
    radial-gradient(circle at 0% 0%,rgba(49,107,255,.12),transparent 34%),
    #f8fbff;
}

.vacancy-employer-view-note-v36 > i{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(135deg,#316bff,#0ea5e9);
  color:#fff;
  font-size:22px;
  box-shadow:0 16px 34px rgba(49,107,255,.22);
}

.vacancy-employer-view-note-v36 strong{
  display:block;
  margin:0 0 7px;
  color:#0f1f35;
  font-size:17px;
  line-height:1.25;
  font-weight:950;
}

.vacancy-employer-view-note-v36 p{
  margin:0;
  color:#5f6f84;
  font-size:14px;
  line-height:1.55;
  font-weight:650;
}

.vacancy-employer-side-note-v36{
  display:grid;
  gap:12px;
  margin:12px 0 16px;
  padding:16px;
  border:1px solid #e6ebf2;
  border-radius:18px;
  background:#f8fafc;
  color:#526277;
}

.vacancy-employer-side-note-v36 i{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#004f43;
  color:#fff;
  font-size:18px;
}

.vacancy-employer-side-note-v36 p{
  margin:0;
  color:#526277;
  font-size:14px;
  line-height:1.55;
  font-weight:700;
}

.vacancy-employer-cabinet-btn-v36{
  width:100%;
  height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
}

@media(max-width:720px){
  .vacancy-employer-view-note-v36{
    grid-template-columns:1fr;
    padding:18px;
  }
}

/* ===== Jobseeker resume delete v37 ===== */
.jp-resume-modern-actions .is-danger,
.jp-personal-resume-item .is-danger{
  background:#fff1f2 !important;
  color:#dc2626 !important;
  border:1px solid #fecdd3 !important;
}

.jp-resume-modern-actions .is-danger:hover,
.jp-personal-resume-item .is-danger:hover{
  background:#dc2626 !important;
  color:#fff !important;
  border-color:#dc2626 !important;
}

.resume-delete-modal-v37{
  position:fixed;
  inset:0;
  z-index:130;
  display:grid;
  place-items:center;
  padding:20px;
  background:rgba(7,16,28,.66);
  backdrop-filter:blur(12px);
}

.resume-delete-modal-v37[hidden]{
  display:none;
}

.resume-delete-card-v37{
  position:relative;
  width:min(470px,100%);
  padding:34px;
  border-radius:28px;
  background:#fff;
  text-align:center;
  box-shadow:0 34px 90px rgba(0,0,0,.32);
}

.resume-delete-close-v37{
  position:absolute;
  top:14px;
  right:14px;
  width:40px;
  height:40px;
  border:0;
  border-radius:14px;
  background:#f3f6f9;
  color:#0f1f35;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.resume-delete-icon-v37{
  width:76px;
  height:76px;
  display:grid;
  place-items:center;
  margin:0 auto 18px;
  border-radius:24px;
  background:#fff1f2;
  color:#dc2626;
  font-size:30px;
}

.resume-delete-card-v37 h2{
  margin:0 0 10px;
  color:#0f1f35;
  font-size:25px;
  line-height:1.2;
  font-weight:950;
}

.resume-delete-card-v37 p{
  margin:0;
  color:#64748b;
  font-size:15px;
  line-height:1.6;
  font-weight:700;
}

.resume-delete-card-v37 p strong{
  display:inline-block;
  margin-top:8px;
  color:#0f1f35;
  font-weight:950;
}

.resume-delete-actions-v37{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:26px;
}

.resume-delete-actions-v37 .btn{
  height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
}

.resume-delete-actions-v37 .is-danger{
  background:#dc2626 !important;
  color:#fff !important;
  box-shadow:0 14px 30px rgba(220,38,38,.24);
}

.resume-delete-actions-v37 .is-danger:hover{
  background:#b91c1c !important;
}

@media(max-width:560px){
  .resume-delete-card-v37{
    padding:28px 20px;
    border-radius:24px;
  }

  .resume-delete-actions-v37{
    grid-template-columns:1fr;
  }
}

/* ===== Remove broken V arrow from employer quick region field ===== */
.emp-v14-region-toggle::after,
.emp-v14-quick-start .city-picker-toggle::after,
.emp-v14-form-card .city-picker-toggle::after{
  content:none !important;
  display:none !important;
  border:0 !important;
}

/* ===== Employer vacancy media v38 ===== */
.emp-vacancy-media-card-v38{
  margin-top:22px;
  padding:24px;
  border:1px solid #e2e8f0;
  border-radius:26px;
  background:#fff;
  box-shadow:0 14px 34px rgba(15,31,53,.045);
}

.emp-vacancy-media-head-v38 h3{
  margin:0 0 8px;
  color:#0f1f35;
  font-size:20px;
  line-height:1.25;
  font-weight:950;
}

.emp-vacancy-media-head-v38 p{
  margin:0 0 18px;
  color:#667085;
  font-size:14px;
  line-height:1.55;
  font-weight:700;
}

.emp-vacancy-media-grid-v38{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.emp-vacancy-upload-field-v38{
  display:block;
  min-height:178px;
  padding:20px;
  border:1.5px dashed #cbd5e1;
  border-radius:22px;
  background:#f8fafc;
  cursor:pointer;
  transition:.18s ease;
}

.emp-vacancy-upload-field-v38:hover{
  border-color:#004f43;
  background:#f1fbf8;
}

.emp-vacancy-upload-field-v38 input{
  display:none;
}

.emp-vacancy-upload-field-v38 > span{
  display:block;
  margin:0 0 12px;
  color:#1f3149;
  font-size:14px;
  font-weight:950;
}

.emp-vacancy-upload-field-v38 strong{
  display:flex;
  align-items:center;
  gap:10px;
  color:#004f43;
  font-size:16px;
  font-weight:950;
}

.emp-vacancy-upload-field-v38 strong i{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:#004f43;
  color:#fff;
}

.emp-vacancy-upload-field-v38 small{
  display:block;
  margin-top:12px;
  color:#667085;
  font-size:12px;
  line-height:1.45;
  font-weight:750;
}

.emp-vacancy-file-preview-v38{
  display:grid;
  gap:12px;
  margin-top:12px;
}

.emp-vacancy-media-empty-v38{
  min-height:74px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:15px;
  border-radius:18px;
  background:#f8fafc;
  color:#667085;
  font-size:13px;
  font-weight:850;
}

.emp-vacancy-media-empty-v38 i{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#eef2f7;
  color:#004f43;
}

.emp-vacancy-media-item-v38{
  display:grid;
  grid-template-columns:92px minmax(0,1fr);
  gap:12px;
  align-items:center;
  padding:12px;
  border:1px solid #e5eaf1;
  border-radius:20px;
  background:#fff;
}

.emp-vacancy-media-thumb-v38{
  width:92px;
  height:72px;
  overflow:hidden;
  border-radius:16px;
  background:#eef2f7;
}

.emp-vacancy-media-thumb-v38 img,
.emp-vacancy-media-thumb-v38 video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.emp-vacancy-media-info-v38{
  min-width:0;
}

.emp-vacancy-media-info-v38 b{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#0f1f35;
  font-size:13px;
  font-weight:950;
}

.emp-vacancy-media-info-v38 span{
  display:block;
  margin-top:4px;
  color:#667085;
  font-size:12px;
  font-weight:750;
}

.emp-vacancy-media-actions-v38{
  grid-column:1 / -1;
  display:flex;
  gap:8px;
  justify-content:flex-end;
}

.emp-vacancy-media-actions-v38 button{
  min-height:38px;
  padding:0 12px;
  border:1px solid #e2e8f0;
  border-radius:13px;
  background:#fff;
  color:#334155;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
}

.emp-vacancy-media-actions-v38 button.is-danger{
  border-color:#fecdd3;
  background:#fff1f2;
  color:#dc2626;
}

.emp-vacancy-media-actions-v38 button.is-danger:hover{
  background:#dc2626;
  border-color:#dc2626;
  color:#fff;
}

.emp-vacancy-public-image-grid-v38{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.emp-vacancy-public-image-grid-v38 a{
  display:block;
  overflow:hidden;
  border-radius:18px;
  background:#eef2f7;
  aspect-ratio:1.25 / 1;
}

.emp-vacancy-public-image-grid-v38 img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.emp-vacancy-public-video-grid-v38{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.emp-vacancy-public-video-grid-v38 a{
  min-height:72px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px;
  border:1px solid #e5eaf1;
  border-radius:18px;
  background:#f8fafc;
  color:#0f1f35;
  font-weight:850;
}

.emp-vacancy-public-video-grid-v38 i{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:#004f43;
  color:#fff;
}

@media(max-width:760px){
  .emp-vacancy-media-grid-v38,
  .emp-vacancy-public-video-grid-v38,
  .emp-vacancy-public-image-grid-v38{
    grid-template-columns:1fr;
  }

  .emp-vacancy-media-item-v38{
    grid-template-columns:78px minmax(0,1fr);
  }

  .emp-vacancy-media-thumb-v38{
    width:78px;
    height:64px;
  }
}

/* ===== Public vacancy / resume media preview v39 ===== */
.hm-public-media-section-v39{
  overflow:hidden;
}

.hm-public-media-grid-v39{
  display:grid;
  gap:14px;
}

.hm-public-media-grid-v39.is-image{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.hm-public-media-grid-v39.is-video{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

.hm-public-media-photo-v39{
  overflow:hidden;
  border-radius:20px;
  background:#eef2f7;
  aspect-ratio:1.35 / 1;
  border:1px solid #e5eaf1;
}

.hm-public-media-photo-v39 img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.hm-public-media-video-v39{
  overflow:hidden;
  border:1px solid #e5eaf1;
  border-radius:20px;
  background:#0f172a;
}

.hm-public-media-video-v39 video{
  width:100%;
  height:230px;
  display:block;
  object-fit:cover;
  background:#0f172a;
}

.hm-public-media-video-v39 span{
  display:block;
  padding:11px 13px;
  background:#fff;
  color:#344257;
  font-size:13px;
  font-weight:850;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

/* Employer vacancy/resume modal preview without download links */
.emp-vacancy-public-image-grid-v38{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.emp-vacancy-public-image-card-v39{
  overflow:hidden;
  border-radius:18px;
  background:#eef2f7;
  border:1px solid #e5eaf1;
  aspect-ratio:1.25 / 1;
}

.emp-vacancy-public-image-card-v39 img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.emp-vacancy-public-video-grid-v38{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.emp-vacancy-public-video-card-v39{
  overflow:hidden;
  border:1px solid #e5eaf1;
  border-radius:18px;
  background:#0f172a;
}

.emp-vacancy-public-video-card-v39 video{
  width:100%;
  height:210px;
  display:block;
  object-fit:cover;
  background:#0f172a;
}

.emp-vacancy-public-video-card-v39 span{
  display:block;
  padding:10px 12px;
  background:#fff;
  color:#344257;
  font-size:13px;
  font-weight:850;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

/* Candidate public resume modal media preview */
.candidate-resume-photo-preview-v39{
  cursor:default;
}

.candidate-resume-video-preview-v39{
  display:block;
  overflow:hidden;
  padding:0;
  border:1px solid #e5eaf1;
  border-radius:18px;
  background:#0f172a;
}

.candidate-resume-video-preview-v39 video{
  width:100%;
  height:230px;
  display:block;
  object-fit:cover;
  background:#0f172a;
}

.candidate-resume-video-preview-v39 span{
  display:block;
  padding:11px 13px;
  background:#fff;
  color:#344257;
  font-size:13px;
  font-weight:850;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

@media(max-width:760px){
  .hm-public-media-grid-v39.is-image,
  .hm-public-media-grid-v39.is-video,
  .emp-vacancy-public-image-grid-v38,
  .emp-vacancy-public-video-grid-v38{
    grid-template-columns:1fr;
  }

  .hm-public-media-video-v39 video,
  .emp-vacancy-public-video-card-v39 video,
  .candidate-resume-video-preview-v39 video{
    height:210px;
  }
}




/* ===== Public vacancy / resume media preview v40 - auto adaptive grid ===== */
.hm-public-media-section-v39{
  overflow:hidden;
}

.hm-public-media-grid-v39{
  display:grid;
  width:100%;
  gap:14px;
  align-items:stretch;
}

/*
  Natija:
  1 ta rasm bo'lsa — 100% kenglikda chiqadi.
  2 ta rasm bo'lsa — 2 tasi yonma-yon 50/50 chiqadi.
  3+ bo'lsa — sahifa kengligiga qarab avtomatik joylashadi.
*/
.hm-public-media-grid-v39.is-image{
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

/*
  Natija:
  1 ta video bo'lsa — 100% kenglikda chiqadi.
  2 ta video bo'lsa — 2 tasi yonma-yon 50/50 chiqadi.
  3+ bo'lsa — sahifa kengligiga qarab avtomatik joylashadi.
*/
.hm-public-media-grid-v39.is-video{
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}

.hm-public-media-photo-v39{
  overflow:hidden;
  border-radius:20px;
  background:#eef2f7;
  aspect-ratio:1.55 / 1;
  border:1px solid #e5eaf1;
}

.hm-public-media-photo-v39 img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.hm-public-media-video-v39{
  overflow:hidden;
  border:1px solid #e5eaf1;
  border-radius:20px;
  background:#0f172a;
}

.hm-public-media-video-v39 video{
  width:100%;
  aspect-ratio:16 / 9;
  height:auto;
  min-height:240px;
  display:block;
  object-fit:cover;
  background:#0f172a;
}

.hm-public-media-video-v39 span{
  display:block;
  padding:11px 13px;
  background:#fff;
  color:#344257;
  font-size:13px;
  font-weight:850;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

/* Employer vacancy/resume modal preview without download links - auto adaptive */
.emp-vacancy-public-image-grid-v38,
.emp-vacancy-public-video-grid-v38{
  display:grid;
  width:100%;
  gap:12px;
  align-items:stretch;
}

.emp-vacancy-public-image-grid-v38{
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.emp-vacancy-public-image-card-v39{
  overflow:hidden;
  border-radius:18px;
  background:#eef2f7;
  border:1px solid #e5eaf1;
  aspect-ratio:1.55 / 1;
}

.emp-vacancy-public-image-card-v39 img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.emp-vacancy-public-video-grid-v38{
  grid-template-columns:repeat(auto-fit, minmax(min(100%, 340px), 1fr));
}

.emp-vacancy-public-video-card-v39{
  overflow:hidden;
  border:1px solid #e5eaf1;
  border-radius:18px;
  background:#0f172a;
}

.emp-vacancy-public-video-card-v39 video{
  width:100%;
  aspect-ratio:16 / 9;
  height:auto;
  min-height:220px;
  display:block;
  object-fit:cover;
  background:#0f172a;
}

.emp-vacancy-public-video-card-v39 span{
  display:block;
  padding:10px 12px;
  background:#fff;
  color:#344257;
  font-size:13px;
  font-weight:850;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

/* Candidate public resume modal media preview */
.candidate-resume-photo-preview-v39{
  cursor:default;
}

.candidate-resume-video-preview-v39{
  display:block;
  overflow:hidden;
  padding:0;
  border:1px solid #e5eaf1;
  border-radius:18px;
  background:#0f172a;
}

.candidate-resume-video-preview-v39 video{
  width:100%;
  aspect-ratio:16 / 9;
  height:auto;
  min-height:230px;
  display:block;
  object-fit:cover;
  background:#0f172a;
}

.candidate-resume-video-preview-v39 span{
  display:block;
  padding:11px 13px;
  background:#fff;
  color:#344257;
  font-size:13px;
  font-weight:850;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

@media(max-width:760px){
  .hm-public-media-grid-v39.is-image,
  .hm-public-media-grid-v39.is-video,
  .emp-vacancy-public-image-grid-v38,
  .emp-vacancy-public-video-grid-v38{
    grid-template-columns:1fr;
  }

  .hm-public-media-photo-v39,
  .emp-vacancy-public-image-card-v39{
    aspect-ratio:1.25 / 1;
  }

  .hm-public-media-video-v39 video,
  .emp-vacancy-public-video-card-v39 video,
  .candidate-resume-video-preview-v39 video{
    min-height:0;
    height:auto;
  }
}


/* ===== Public rich text render: ul/li/br/p for all devices ===== */
.hm-public-rich-text,
.vacancy-text-v4,
.news-detail-article-v2,
.faq-answer-v2,
.emp-response-cover{
  color:inherit;
  line-height:1.75;
  white-space:normal;
  word-break:break-word;
  overflow-wrap:anywhere;
}

.hm-public-rich-text p,
.vacancy-text-v4 p,
.news-detail-article-v2 p,
.faq-answer-v2 p{
  margin:0 0 12px;
}

.hm-public-rich-text div,
.vacancy-text-v4 div,
.news-detail-article-v2 div,
.faq-answer-v2 div{
  margin:0 0 10px;
}

.hm-public-rich-text ul,
.hm-public-rich-text ol,
.vacancy-text-v4 ul,
.vacancy-text-v4 ol,
.news-detail-article-v2 ul,
.news-detail-article-v2 ol,
.faq-answer-v2 ul,
.faq-answer-v2 ol{
  margin:10px 0 14px;
  padding-left:24px;
}

.hm-public-rich-text li,
.vacancy-text-v4 li,
.news-detail-article-v2 li,
.faq-answer-v2 li{
  margin:6px 0;
}

.hm-public-rich-text blockquote,
.vacancy-text-v4 blockquote,
.news-detail-article-v2 blockquote,
.faq-answer-v2 blockquote{
  margin:14px 0;
  padding:12px 16px;
  border-left:4px solid var(--hm-green);
  border-radius:14px;
  background:#f0faf7;
}

.hm-public-rich-text a,
.vacancy-text-v4 a,
.news-detail-article-v2 a,
.faq-answer-v2 a{
  color:var(--hm-green);
  font-weight:800;
  text-decoration:underline;
}

.hm-public-rich-text img,
.news-detail-article-v2 img,
.faq-answer-v2 img{
  display:block;
  max-width:100%;
  height:auto;
  margin:16px 0;
  border-radius:18px;
}

.hm-public-rich-text video,
.news-detail-article-v2 video,
.faq-answer-v2 video{
  display:block;
  width:100%;
  max-height:460px;
  margin:16px 0;
  border-radius:18px;
  background:#0f172a;
}

@media(max-width:640px){
  .hm-public-rich-text,
  .vacancy-text-v4,
  .news-detail-article-v2,
  .faq-answer-v2{
    font-size:14px;
    line-height:1.7;
  }

  .hm-public-rich-text ul,
  .hm-public-rich-text ol,
  .vacancy-text-v4 ul,
  .vacancy-text-v4 ol,
  .news-detail-article-v2 ul,
  .news-detail-article-v2 ol,
  .faq-answer-v2 ul,
  .faq-answer-v2 ol{
    padding-left:20px;
  }
}


/* ===== Public open contacts v41 ===== */
.hm-public-contact-box-v41,
.vacancy-company-contact-v41,
.candidate-contact-open-v41{
  margin-top:16px;
  padding:16px;
  border:1px solid #dce7ee;
  border-radius:18px;
  background:#f8fffc;
  box-shadow:0 10px 28px rgba(0,79,67,.055);
}

.hm-public-contact-box-v41 h3,
.vacancy-company-contact-v41 strong,
.candidate-contact-open-v41 strong{
  display:flex;
  align-items:center;
  gap:9px;
  margin:0 0 12px;
  color:var(--green);
  font-size:15px;
  line-height:1.25;
  font-weight:900;
}

.hm-public-contact-grid-v41,
.candidate-contact-open-v41 div{
  display:grid;
  gap:9px;
}

.hm-public-contact-grid-v41 a,
.vacancy-company-contact-v41 a,
.candidate-contact-open-v41 a{
  min-height:44px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid #e3edf2;
  border-radius:14px;
  background:#fff;
  color:#162235;
  font-size:13px;
  line-height:1.3;
  font-weight:800;
  overflow:hidden;
}

.hm-public-contact-grid-v41 a i,
.vacancy-company-contact-v41 a i,
.candidate-contact-open-v41 a i{
  width:28px;
  height:28px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#ecfdf5;
  color:var(--green);
}

.hm-public-contact-grid-v41 a span{
  min-width:0;
  display:grid;
  gap:2px;
}

.hm-public-contact-grid-v41 a b{
  color:#667085;
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}

.hm-public-contact-grid-v41 a em{
  min-width:0;
  overflow:hidden;
  color:#102033;
  font-style:normal;
  white-space:nowrap;
  text-overflow:ellipsis;
}

@media(max-width:640px){
  .hm-public-contact-box-v41,
  .vacancy-company-contact-v41,
  .candidate-contact-open-v41{
    padding:13px;
    border-radius:16px;
  }

  .hm-public-contact-grid-v41 a,
  .vacancy-company-contact-v41 a,
  .candidate-contact-open-v41 a{
    min-height:42px;
    padding:9px 10px;
  }
}

.vacancy-owner-card-v41,
.public-profile-hero-v41,
.public-info-card-v41,
.public-vacancy-card-v41{
  background:#fff;
  border:1px solid #e5edf1;
  box-shadow:0 18px 50px rgba(15,31,50,.07);
}

.vacancy-owner-card-v41{
  margin:22px 0 26px;
  padding:18px;
  border-radius:24px;
  display:flex;
  align-items:center;
  gap:16px;
}

.vacancy-owner-logo-v41{
  width:74px;
  height:74px;
  flex:0 0 74px;
  border-radius:22px;
  background:#f2faf8;
  display:grid;
  place-items:center;
  overflow:hidden;
  color:#004f43;
  font-size:28px;
}

.vacancy-owner-logo-v41 img,
.public-profile-avatar-v41 img,
.candidate-avatar-v2 img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.vacancy-owner-info-v41{
  min-width:0;
  flex:1;
}

.vacancy-owner-info-v41 span{
  display:block;
  color:#738096;
  font-size:13px;
  font-weight:700;
  margin-bottom:4px;
}

.vacancy-owner-info-v41 h2{
  margin:0 0 8px;
  color:#122033;
  font-size:22px;
  line-height:1.2;
}

.vacancy-owner-info-v41 div{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.vacancy-owner-info-v41 b{
  padding:7px 10px;
  border-radius:999px;
  background:#f5f8fb;
  color:#46566a;
  font-size:12px;
}

.vacancy-owner-card-v41 > a{
  min-height:42px;
  padding:0 16px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#004f43;
  color:#fff;
  font-weight:800;
  white-space:nowrap;
}

.company-public-page-v41,
.candidate-public-page-v41{
  padding:140px 0 70px;
  background:#f5f8fb;
  min-height:100vh;
}

.public-back-v41{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:20px;
  color:#004f43;
  font-weight:800;
}

.public-profile-hero-v41{
  padding:26px;
  border-radius:30px;
  display:flex;
  align-items:center;
  gap:22px;
}

.public-profile-avatar-v41{
  width:112px;
  height:112px;
  flex:0 0 112px;
  border-radius:32px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:#eaf7f4;
  color:#004f43;
  font-size:42px;
  font-weight:900;
}

.public-profile-hero-v41 span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#ecfdf5;
  color:#047857;
  font-weight:800;
  font-size:13px;
}

.public-profile-hero-v41 h1{
  margin:12px 0 8px;
  font-size:38px;
  line-height:1.1;
  color:#122033;
}

.public-profile-hero-v41 p{
  margin:0;
  color:#738096;
  font-weight:700;
}

.public-stats-grid-v41{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin:18px 0;
}

.public-stats-grid-v41 article{
  padding:20px;
  border-radius:22px;
  background:#004f43;
  color:#fff;
}

.public-stats-grid-v41 b{
  display:block;
  font-size:30px;
  line-height:1;
  margin-bottom:8px;
}

.public-stats-grid-v41 span{
  color:rgba(255,255,255,.84);
  font-weight:700;
}

.public-profile-grid-v41{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:18px;
  margin-bottom:22px;
}

.public-info-card-v41{
  padding:24px;
  border-radius:26px;
}

.public-info-card-v41 h2,
.public-list-section-v41 h2{
  margin:0 0 18px;
  color:#122033;
  font-size:24px;
}

.public-info-card-v41 dl{
  margin:0;
  display:grid;
  grid-template-columns:190px 1fr;
  gap:12px 18px;
}

.public-info-card-v41 dt{
  color:#738096;
  font-weight:800;
}

.public-info-card-v41 dd{
  margin:0;
  color:#122033;
  font-weight:700;
}

.public-contact-list-v41{
  display:grid;
  gap:10px;
}

.public-contact-list-v41 a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:13px 14px;
  border-radius:16px;
  background:#f5f8fb;
  color:#122033;
  font-weight:800;
}

.public-contact-list-v41 i{
  color:#004f43;
}

.public-list-section-v41{
  margin-top:22px;
}

.public-card-grid-v41{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.public-vacancy-card-v41{
  display:block;
  padding:22px;
  border-radius:24px;
}

.public-vacancy-card-v41 h3{
  margin:0 0 12px;
  color:#122033;
  font-size:20px;
}

.public-vacancy-card-v41 p{
  margin:0 0 14px;
  color:#004f43;
  font-weight:900;
}

.public-vacancy-card-v41 span{
  color:#738096;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:700;
}

.candidate-avatar-v2{
  overflow:hidden;
}

.candidate-profile-link-v41{
  min-height:42px;
  padding:0 14px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:#f0faf7;
  color:#004f43;
  font-weight:800;
}

@media (max-width:900px){
  .vacancy-owner-card-v41,
  .public-profile-hero-v41{
    align-items:flex-start;
    flex-direction:column;
  }

  .vacancy-owner-card-v41 > a{
    width:100%;
    justify-content:center;
  }

  .public-stats-grid-v41,
  .public-profile-grid-v41,
  .public-card-grid-v41{
    grid-template-columns:1fr;
  }

  .public-info-card-v41 dl{
    grid-template-columns:1fr;
  }

  .company-public-page-v41,
  .candidate-public-page-v41{
    padding-top:120px;
  }

  .public-profile-hero-v41 h1{
    font-size:28px;
  }
}

/* ===== HandyMens worker / recommended resumes / public resume modal v42 ===== */
.hm-worker-choice-v42{
  display:grid;
  gap:12px;
  margin:6px 0 14px;
}
.hm-worker-choice-title-v42{
  color:#122033;
  font-weight:900;
  font-size:15px;
}
.hm-worker-choice-card-v42{
  position:relative;
  display:flex!important;
  gap:12px;
  padding:14px!important;
  border:1px solid #dfe8ee;
  border-radius:18px;
  background:#f8fbfd;
  cursor:pointer;
}
.hm-worker-choice-card-v42 input{
  margin-top:4px;
  accent-color:#004f43;
}
.hm-worker-choice-card-v42 b{
  display:flex;
  align-items:center;
  gap:8px;
  color:#122033;
  font-size:14px;
}
.hm-worker-choice-card-v42 em{
  display:block;
  margin-top:4px;
  color:#738096;
  font-size:12px;
  line-height:1.45;
  font-style:normal;
}
.hm-worker-choice-card-v42:has(input:checked){
  border-color:#004f43;
  background:#eefaf7;
  box-shadow:0 14px 30px rgba(0,79,67,.10);
}

.hm-worker-badge-v42{
  margin-top:12px;
  padding:12px;
  border-radius:18px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  background:linear-gradient(135deg,#ecfdf5,#f0fdfa);
  border:1px solid rgba(0,79,67,.16);
  color:#004f43;
}
.hm-worker-badge-v42 > i{
  margin-top:2px;
  font-size:20px;
}
.hm-worker-badge-v42 b{
  display:block;
  font-weight:900;
  color:#004f43;
}
.hm-worker-badge-v42 em,
.hm-worker-badge-v42 small{
  display:block;
  margin-top:3px;
  color:#357065;
  font-size:12px;
  line-height:1.4;
  font-style:normal;
}

.hm-recommended-head-v42{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}
.hm-recommended-head-v42 h2{
  margin-bottom:8px;
}
.hm-recommended-head-v42 p{
  margin:0;
  color:#738096;
  font-weight:700;
}
.hm-recommended-head-v42 > span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 13px;
  border-radius:999px;
  background:#ecfdf5;
  color:#047857;
  font-weight:900;
  white-space:nowrap;
}

.hm-recommended-card-v42{
  padding:20px;
  border-radius:24px;
  background:#fff;
  border:1px solid #e5edf1;
  box-shadow:0 18px 50px rgba(15,31,50,.07);
}
.hm-recommended-card-top-v42{
  display:flex;
  align-items:center;
  gap:13px;
}
.hm-recommended-avatar-v42{
  width:58px;
  height:58px;
  flex:0 0 58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:#eaf7f4;
  color:#004f43;
  font-weight:900;
  font-size:22px;
}
.hm-recommended-avatar-v42 img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.hm-recommended-card-v42 h3{
  margin:0 0 5px;
  color:#122033;
  font-size:18px;
}
.hm-recommended-card-v42 p{
  margin:0;
  color:#738096;
  font-weight:700;
}
.hm-recommended-card-v42 button,
.public-resume-modal-btn-v42{
  width:100%;
  min-height:46px;
  margin-top:14px;
  border:0;
  border-radius:16px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:#004f43;
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
.public-resume-modal-btn-v42{
  text-align:left;
  align-items:flex-start;
  flex-direction:column;
  background:#fff;
  color:inherit;
  cursor:pointer;
}
.public-resume-modal-btn-v42:hover{
  transform:translateY(-1px);
  box-shadow:0 20px 55px rgba(15,31,50,.10);
}

.hm-public-resume-modal-v42{
  position:fixed;
  inset:0;
  z-index:999;
  padding:24px;
  display:grid;
  place-items:center;
  background:rgba(7,16,28,.62);
}
.hm-public-resume-modal-v42[hidden]{display:none}
.hm-public-resume-modal-card-v42{
  position:relative;
  width:min(1040px,100%);
  max-height:calc(100vh - 48px);
  overflow:auto;
  border-radius:30px;
  background:#f7f9fc;
  box-shadow:0 34px 90px rgba(0,0,0,.32);
  padding:26px;
}
.hm-public-resume-modal-close-v42{
  position:sticky;
  top:0;
  margin-left:auto;
  z-index:3;
  width:42px;
  height:42px;
  border:0;
  border-radius:15px;
  display:grid;
  place-items:center;
  background:#fff;
  color:#122033;
  font-size:26px;
  cursor:pointer;
  box-shadow:0 8px 24px rgba(15,31,50,.10);
}
.hm-public-modal-hero-v42{
  padding:26px;
  border-radius:26px;
  background:#fff;
  border:1px solid #e5edf1;
}
.hm-public-modal-hero-v42 > span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#ecfdf5;
  color:#047857;
  font-weight:900;
}
.hm-public-modal-hero-v42 h2{
  margin:14px 0 8px;
  font-size:32px;
  line-height:1.15;
  color:#122033;
}
.hm-public-modal-hero-v42 p{
  margin:0;
  color:#738096;
  font-weight:800;
}
.hm-public-modal-contact-v42{
  margin:16px 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hm-public-modal-contact-v42 a{
  padding:11px 14px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid #e5edf1;
  color:#122033;
  font-weight:800;
}
.hm-public-modal-section-v42{
  margin-top:16px;
  padding:22px;
  border-radius:24px;
  background:#fff;
  border:1px solid #e5edf1;
}
.hm-public-modal-section-v42 h3{
  margin:0 0 14px;
  color:#122033;
}
.hm-public-modal-section-v42 article{
  padding:14px;
  border-radius:16px;
  background:#f7f9fc;
  margin-top:10px;
}
.hm-public-modal-section-v42 article strong{
  display:block;
  color:#122033;
}
.hm-public-modal-section-v42 article p,
.hm-public-modal-section-v42 article small{
  color:#738096;
}
.hm-public-modal-chips-v42{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.hm-public-modal-chips-v42 span{
  padding:8px 10px;
  border-radius:999px;
  background:#f0faf7;
  color:#004f43;
  font-weight:800;
}
.hm-public-modal-media-v42{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.hm-public-modal-media-v42 img,
.hm-public-modal-media-v42 video{
  width:100%;
  height:210px;
  object-fit:cover;
  border-radius:18px;
  background:#000;
}
.hm-public-modal-media-v42.is-video{
  grid-template-columns:repeat(2,minmax(0,1fr));
}
.hm-public-modal-loading-v42,
.hm-public-modal-error-v42{
  padding:40px;
  text-align:center;
  color:#122033;
  font-weight:900;
}

@media (max-width:760px){
  .hm-recommended-head-v42{
    display:block;
  }
  .hm-recommended-head-v42 > span{
    margin-top:12px;
  }
  .hm-public-resume-modal-v42{
    padding:10px;
  }
  .hm-public-resume-modal-card-v42{
    max-height:calc(100vh - 20px);
    border-radius:22px;
    padding:16px;
  }
  .hm-public-modal-hero-v42 h2{
    font-size:24px;
  }
  .hm-public-modal-media-v42,
  .hm-public-modal-media-v42.is-video{
    grid-template-columns:1fr;
  }
}



/* ===== Create resume modern builder v42 ===== */
.jp-section[data-jp-section="create-resume"],
.jp-section[data-jp-section="create_resume"]{
  background:
    radial-gradient(circle at 8% 10%, rgba(0,79,67,.12), transparent 30%),
    radial-gradient(circle at 95% 8%, rgba(37,99,235,.10), transparent 26%),
    #f5f8fb;
}
.resume-builder,
[data-resume-builder]{
  position:relative;
  overflow:hidden;
  border-radius:34px!important;
  background:#fff!important;
  border:1px solid #e5edf1!important;
  box-shadow:0 24px 80px rgba(15,31,50,.10)!important;
}
.resume-builder:before,
[data-resume-builder]:before{
  content:"";
  display:block;
  min-height:220px;
  margin:-1px -1px 24px;
  background:
    linear-gradient(135deg,rgba(0,79,67,.96),rgba(5,106,91,.92)),
    radial-gradient(circle at 85% 20%, rgba(255,255,255,.22), transparent 28%);
  border-radius:34px 34px 0 0;
}
.resume-builder:after,
[data-resume-builder]:after{
  content:"";
  position:absolute;
  right:34px;
  top:34px;
  width:150px;
  height:150px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  pointer-events:none;
}
.resume-step-title{
  position:relative;
  margin-top:-185px!important;
  padding:0 28px 86px!important;
  color:#fff!important;
  font-size:38px!important;
  line-height:1.12!important;
  letter-spacing:-1px;
}
.resume-step-title{
  font-size:0!important;
}
.resume-step-title + *{
  margin-top:0!important;
}
.resume-form-card{
  border:1px solid #e5edf1!important;
  border-radius:24px!important;
  background:#fff!important;
  box-shadow:0 12px 34px rgba(15,31,50,.06)!important;
}
.resume-field span{
  color:#122033!important;
  font-weight:900!important;
}
.resume-field input,
.resume-field select,
.resume-field textarea{
  border:1px solid #dfe8ee!important;
  border-radius:16px!important;
  background:#f8fbfd!important;
}
.resume-field input:focus,
.resume-field select:focus,
.resume-field textarea:focus{
  border-color:#004f43!important;
  box-shadow:0 0 0 4px rgba(0,79,67,.10)!important;
  outline:0!important;
}
.resume-step-actions,
.resume-builder-actions,
.resume-actions{
  position:sticky;
  bottom:14px;
  z-index:20;
  padding:14px!important;
  border-radius:22px!important;
  background:rgba(255,255,255,.92)!important;
  backdrop-filter:blur(16px);
  box-shadow:0 16px 44px rgba(15,31,50,.12);
}


.hm-worker-choice-v42{
  width:100%;
  margin:18px 0 22px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
}

.hm-worker-choice-title-v42{
  grid-column:1 / -1;
  margin:0 0 2px;
  color:#142238;
  font-size:15px;
  line-height:1.3;
  font-weight:900;
  letter-spacing:-.2px;
}

.hm-worker-choice-card-v42{
  position:relative;
  min-height:122px;
  display:flex;
  cursor:pointer;
}

.hm-worker-choice-card-v42 input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.hm-worker-choice-card-v42 span{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:18px;
  border:1px solid #dde5ee;
  border-radius:22px;
  background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);
  box-shadow:0 12px 30px rgba(15,23,42,.06);
  transition:.18s ease;
}

.hm-worker-choice-card-v42 b{
  color:#122238;
  font-size:16px;
  line-height:1.25;
  font-weight:900;
  letter-spacing:-.35px;
}

.hm-worker-choice-card-v42 em{
  color:#697586;
  font-style:normal;
  font-size:13px;
  line-height:1.45;
  font-weight:600;
}

.hm-worker-choice-card-v42 small{
  display:none;
  width:max-content;
  margin-top:auto;
  padding:6px 10px;
  border-radius:999px;
  background:#004f43;
  color:#fff;
  font-size:11px;
  line-height:1;
  font-weight:900;
}

.hm-worker-choice-card-v42:hover span{
  border-color:rgba(0,79,67,.28);
  box-shadow:0 18px 44px rgba(15,23,42,.09);
  transform:translateY(-1px);
}

.hm-worker-choice-card-v42 input:checked + span{
  border-color:#004f43;
  background:linear-gradient(180deg,#ffffff 0%,#effaf7 100%);
  box-shadow:
    0 18px 44px rgba(0,79,67,.13),
    inset 0 0 0 1px rgba(0,79,67,.18);
}

.hm-worker-choice-card-v42 input:checked + span b{
  color:#004f43;
}

.hm-worker-choice-card-v42 input:checked + span small{
  display:inline-flex;
}

@media(max-width:520px){
  .hm-worker-choice-v42{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:8px;
  }

  .hm-worker-choice-card-v42{
    min-height:130px;
  }

  .hm-worker-choice-card-v42 span{
    padding:14px 11px;
    border-radius:17px;
  }

  .hm-worker-choice-card-v42 b{
    font-size:13px;
    line-height:1.28;
  }

  .hm-worker-choice-card-v42 em{
    font-size:11px;
    line-height:1.35;
  }

  .hm-worker-choice-card-v42 small{
    padding:5px 8px;
    font-size:10px;
  }
}

/* ===== Worker choice cards final fix v42 ===== */
.hm-worker-choice-v42{
  width:100% !important;
  margin:18px 0 22px !important;
  display:block !important;
}

.hm-worker-choice-title-v42{
  margin:0 0 12px !important;
  color:#142238 !important;
  font-size:15px !important;
  line-height:1.3 !important;
  font-weight:900 !important;
  letter-spacing:-.2px !important;
}

.hm-worker-choice-row-v42{
  width:100% !important;
  display:flex !important;
  flex-direction:row !important;
  align-items:stretch !important;
  gap:12px !important;
}

.hm-worker-choice-card-v42{
  position:relative !important;
  flex:1 1 0 !important;
  width:50% !important;
  min-width:0 !important;
  min-height:122px !important;
  display:flex !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  cursor:pointer !important;
}

.hm-worker-choice-card-v42 input{
  position:absolute !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.hm-worker-choice-card-v42 span{
  width:100% !important;
  min-width:0 !important;
  display:flex !important;
  flex-direction:column !important;
  gap:10px !important;
  padding:18px !important;
  border:1px solid #dde5ee !important;
  border-radius:22px !important;
  background:linear-gradient(180deg,#fff 0%,#f8fafc 100%) !important;
  box-shadow:0 12px 30px rgba(15,23,42,.06) !important;
  transition:.18s ease !important;
}

.hm-worker-choice-card-v42 b{
  display:block !important;
  color:#122238 !important;
  font-size:15px !important;
  line-height:1.25 !important;
  font-weight:900 !important;
  letter-spacing:-.35px !important;
}

.hm-worker-choice-card-v42 b i{
  display:none !important;
}

.hm-worker-choice-card-v42 em{
  display:block !important;
  color:#697586 !important;
  font-style:normal !important;
  font-size:12px !important;
  line-height:1.4 !important;
  font-weight:600 !important;
}

.hm-worker-choice-card-v42 small{
  display:none !important;
  width:max-content !important;
  margin-top:auto !important;
  padding:6px 10px !important;
  border-radius:999px !important;
  background:#004f43 !important;
  color:#fff !important;
  font-size:11px !important;
  line-height:1 !important;
  font-weight:900 !important;
}

.hm-worker-choice-card-v42:hover span{
  border-color:rgba(0,79,67,.30) !important;
  box-shadow:0 18px 44px rgba(15,23,42,.09) !important;
  transform:translateY(-1px) !important;
}

.hm-worker-choice-card-v42 input:checked + span{
  border-color:#004f43 !important;
  background:linear-gradient(180deg,#ffffff 0%,#effaf7 100%) !important;
  box-shadow:
    0 18px 44px rgba(0,79,67,.13),
    inset 0 0 0 1px rgba(0,79,67,.18) !important;
}

.hm-worker-choice-card-v42 input:checked + span b{
  color:#004f43 !important;
}

.hm-worker-choice-card-v42 input:checked + span small{
  display:inline-flex !important;
}

@media(max-width:520px){
  .hm-worker-choice-row-v42{
    gap:8px !important;
  }

  .hm-worker-choice-card-v42{
    width:50% !important;
    min-height:132px !important;
  }

  .hm-worker-choice-card-v42 span{
    padding:13px 10px !important;
    border-radius:17px !important;
  }

  .hm-worker-choice-card-v42 b{
    font-size:12px !important;
    line-height:1.25 !important;
  }

  .hm-worker-choice-card-v42 em{
    font-size:10.5px !important;
    line-height:1.32 !important;
  }

  .hm-worker-choice-card-v42 small{
    padding:5px 8px !important;
    font-size:10px !important;
  }
}


/* ===== About overview image + stats v3 ===== */
.hm-about-overview-v3{
  position:relative;
  margin-top:-34px;
  display:grid;
  gap:26px;
  z-index:3;
}

.hm-about-overview-head-v3{
  max-width:920px;
  margin:0 auto;
  text-align:center;
}

.hm-about-overview-head-v3 span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:8px 14px;
  border-radius:999px;
  background:#eaf7f4;
  color:var(--green);
  font-size:12px;
  line-height:1;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.hm-about-overview-head-v3 h2{
  margin:18px 0 0;
  color:#122033;
  font-size:clamp(30px,4vw,48px);
  line-height:1.08;
  letter-spacing:-1.2px;
  font-weight:950;
}

.hm-about-overview-head-v3 p{
  margin:16px auto 0;
  max-width:820px;
  color:#667085;
  font-size:17px;
  line-height:1.72;
  font-weight:600;
}

.hm-about-image-v3{
  position:relative;
  overflow:hidden;
  min-height:420px;
  border-radius:34px;
  background:#0b2d2a;
  box-shadow:0 28px 84px rgba(15,23,42,.14);
}

.hm-about-image-v3:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  
  pointer-events:none;
}

.hm-about-image-v3 img{
  width:100%;
  height:100%;
  min-height:420px;
  object-position:center;
  display:block;
  transform:scale(1.01);
}

.hm-about-image-caption-v3{
  position:absolute;
  left:34px;
  bottom:34px;
  z-index:2;
  width:min(570px, calc(100% - 68px));
  padding:26px 28px;
  border-radius:28px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(255,255,255,.42);
  box-shadow:0 24px 70px rgba(0,0,0,.18);
  backdrop-filter:blur(18px);
}

.hm-about-image-caption-v3 span{
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-height:34px;
  padding:7px 12px;
  border-radius:999px;
  background:#eaf7f4;
  color:var(--green);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.hm-about-image-caption-v3 h3{
  margin:16px 0 0;
  color:#102033;
  font-size:clamp(24px,3vw,36px);
  line-height:1.12;
  letter-spacing:-.8px;
  font-weight:950;
}

.hm-about-image-caption-v3 p{
  margin:13px 0 0;
  color:#627084;
  font-size:15.5px;
  line-height:1.68;
  font-weight:650;
}

.hm-about-stats-after-image-v3{
  margin-top:0 !important;
}

.hm-about-stats-after-image-v3 article{
  position:relative;
  overflow:hidden;
}

.hm-about-stats-after-image-v3 article:before{
  content:"";
  position:absolute;
  width:90px;
  height:90px;
  right:-34px;
  top:-38px;
  border-radius:50%;
  background:rgba(0,79,67,.08);
}

@media (max-width:900px){
  .hm-about-overview-v3{
    margin-top:-16px;
    gap:20px;
  }

  .hm-about-image-v3{
    min-height:390px;
    border-radius:28px;
  }

  .hm-about-image-v3 img{
    min-height:390px;
  }

  .hm-about-image-caption-v3{
    left:18px;
    right:18px;
    bottom:18px;
    width:auto;
    padding:20px;
    border-radius:22px;
  }
}

@media (max-width:620px){
  .hm-about-overview-head-v3{
    text-align:left;
  }

  .hm-about-overview-head-v3 h2{
    font-size:28px;
  }

  .hm-about-overview-head-v3 p{
    font-size:15px;
  }

  .hm-about-image-v3{
    min-height:auto;
    display:grid;
    border-radius:24px;
  }

  .hm-about-image-v3:before{
  }

  .hm-about-image-v3 img{
    min-height:245px;
    height:245px;
  }

  .hm-about-image-caption-v3{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    width:auto;
    margin:0;
    border-radius:0;
    box-shadow:none;
    background:#fff;
  }

  .hm-about-image-caption-v3 h3{
    font-size:22px;
  }

  .hm-about-image-caption-v3 p{
    font-size:14px;
  }
}

/* ===== Legal pages v1 ===== */
.legal-page-v1{
  min-height:100vh;
  padding:132px 0 86px;
  background:
    radial-gradient(circle at 8% 5%, rgba(0,79,67,.13), transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(12,128,111,.10), transparent 28%),
    linear-gradient(180deg,#f7fbfa 0%,#eef5f3 100%);
}
.legal-wrap-v1{display:grid;gap:22px}
.legal-breadcrumbs-v1{
  display:flex;
  align-items:center;
  gap:10px;
  color:#728094;
  font-size:14px;
  font-weight:700;
}
.legal-breadcrumbs-v1 a{color:#004f43}
.legal-breadcrumbs-v1 i{font-size:11px;color:#a8b2c0}
.legal-hero-v1{
  position:relative;
  overflow:hidden;
  padding:36px 38px;
  border-radius:34px;
  background:
    linear-gradient(135deg,rgba(0,79,67,.98),rgba(6,112,97,.94)),
    radial-gradient(circle at 78% 12%,rgba(255,255,255,.22),transparent 32%);
  color:#fff;
  box-shadow:0 28px 76px rgba(0,79,67,.20);
}
.legal-hero-v1:after{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  right:-140px;
  top:-170px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
}
.legal-hero-v1 span,
.legal-hero-v1 h1,
.legal-hero-v1 p{position:relative;z-index:1}
.legal-hero-v1 span{
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-height:34px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:rgba(255,255,255,.92);
  font-size:13px;
  font-weight:900;
}
.legal-hero-v1 h1{
  margin:18px 0 0;
  max-width:980px;
  font-size:clamp(30px,4vw,54px);
  line-height:1.05;
  letter-spacing:-1.4px;
  font-weight:950;
}
.legal-hero-v1 p{
  margin:18px 0 0;
  max-width:920px;
  color:rgba(255,255,255,.86);
  font-size:16px;
  line-height:1.65;
  font-weight:650;
}
.legal-layout-v1{
  display:grid;
  grid-template-columns:320px minmax(0,1fr);
  gap:22px;
  align-items:start;
}
.legal-sidebar-v1{
  position:sticky;
  top:94px;
  display:grid;
  gap:10px;
  padding:18px;
  border:1px solid rgba(218,228,225,.86);
  border-radius:26px;
  background:rgba(255,255,255,.92);
  box-shadow:0 18px 48px rgba(15,23,42,.07);
}
.legal-sidebar-v1 strong{
  display:block;
  margin:0 0 6px;
  color:#102134;
  font-size:15px;
  font-weight:950;
}
.legal-sidebar-v1 a{
  display:flex;
  align-items:flex-start;
  gap:11px;
  padding:13px 12px;
  border-radius:17px;
  color:#344357;
  font-size:14px;
  line-height:1.35;
  font-weight:800;
  transition:.18s ease;
}
.legal-sidebar-v1 a i{margin-top:2px;color:#004f43}
.legal-sidebar-v1 a:hover,
.legal-sidebar-v1 a.is-active{
  background:#004f43;
  color:#fff;
  box-shadow:0 14px 30px rgba(0,79,67,.18);
}
.legal-sidebar-v1 a:hover i,
.legal-sidebar-v1 a.is-active i{color:#fff}
.legal-card-v1{
  overflow:hidden;
  border:1px solid rgba(218,228,225,.86);
  border-radius:34px;
  background:#fff;
  box-shadow:0 20px 62px rgba(15,23,42,.08);
}
.legal-content-v1{
  padding:34px;
  color:#667085;
  font-size:16px;
  line-height:1.72;
}
.legal-content-v1 .legal-muted-v1,
.legal-content-v1 > p:first-child{
  margin-top:0;
  color:#98a2b3;
  font-size:14px;
  font-weight:750;
}
.legal-content-v1 h2{
  margin:34px 0 10px;
  color:#152235;
  font-size:22px;
  line-height:1.35;
  letter-spacing:-.3px;
  font-weight:950;
}
.legal-content-v1 h2:first-child{margin-top:0}
.legal-content-v1 h3{
  margin:22px 0 8px;
  color:#1d2b3d;
  font-size:18px;
  line-height:1.4;
  font-weight:900;
}
.legal-content-v1 p{margin:10px 0}
.legal-content-v1 ul,
.legal-content-v1 ol{
  margin:12px 0 0;
  padding-left:22px;
}
.legal-content-v1 li{margin:8px 0;padding-left:3px}
.legal-content-v1 strong{color:#182638;font-weight:900}
.legal-content-v1 a{color:#006b5d;font-weight:850;text-decoration:underline;text-underline-offset:3px}
.legal-note-v1,
.legal-alert-v1{
  margin:14px 0;
  padding:20px 22px;
  border-radius:22px;
  background:#f7faf9;
  border:1px solid #e5efec;
}
.legal-note-v1 p{margin:5px 0}
.legal-alert-v1.is-warning{background:#fff7df;border-color:#fde5a7;color:#5f4709}
.legal-alert-v1.is-danger{background:#fff1f2;border-color:#fecdd3;color:#7f1d1d}

@media (max-width:1100px){
  .legal-page-v1{padding-top:118px}
  .legal-layout-v1{grid-template-columns:1fr}
  .legal-sidebar-v1{position:relative;top:auto;grid-template-columns:1fr;}
}
@media (max-width:720px){
  .legal-page-v1{padding:112px 0 56px}
  .legal-hero-v1{padding:26px 22px;border-radius:26px}
  .legal-content-v1{padding:22px;font-size:15px}
  .legal-content-v1 h2{font-size:19px;margin-top:28px}
  .legal-card-v1{border-radius:26px}
}

/* ===== Outstaffing page v1 ===== */
.outstaffing-page-v1{
  background:#f5f8fb;
  color:#122033;
  min-height:100vh;
}

.outstaffing-hero-v1{
  position:relative;
  overflow:hidden;
  padding:154px 0 82px;
  background:
    radial-gradient(circle at 12% 8%, rgba(0,79,67,.18), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(12,128,111,.12), transparent 28%),
    linear-gradient(180deg,#f8fbfa 0%,#eef5f3 100%);
}

.outstaffing-hero-grid-v1{
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(420px,.98fr);
  gap:46px;
  align-items:center;
}

.outstaffing-breadcrumbs-v1{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:22px;
  color:#718096;
  font-size:14px;
  font-weight:750;
}

.outstaffing-breadcrumbs-v1 a{color:#004f43}
.outstaffing-breadcrumbs-v1 i{font-size:11px;color:#a8b2c0}

.outstaffing-kicker-v1{
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-height:38px;
  padding:9px 14px;
  border-radius:999px;
  background:#e8f6f3;
  color:#004f43;
  font-size:12px;
  line-height:1;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.outstaffing-hero-copy-v1 h1{
  margin:20px 0 0;
  max-width:760px;
  color:#102033;
  font-size:clamp(38px,5vw,70px);
  line-height:1.02;
  letter-spacing:-2.2px;
  font-weight:950;
}

.outstaffing-hero-copy-v1 p{
  margin:22px 0 0;
  max-width:760px;
  color:#617083;
  font-size:18px;
  line-height:1.72;
  font-weight:650;
}

.outstaffing-hero-actions-v1{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.outstaffing-btn-v1{
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 24px;
  border-radius:18px;
  background:#004f43;
  color:#fff;
  font-size:15px;
  font-weight:900;
  box-shadow:0 18px 38px rgba(0,79,67,.20);
  transition:.18s ease;
}

.outstaffing-btn-v1:hover{
  transform:translateY(-1px);
  background:#003f36;
}

.outstaffing-phone-v1{
  min-height:56px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0 20px;
  border-radius:18px;
  background:#fff;
  color:#122033;
  font-size:15px;
  font-weight:850;
  box-shadow:0 16px 40px rgba(15,23,42,.08);
}

.outstaffing-phone-v1 i{color:#004f43}

.outstaffing-hero-media-v1{
  position:relative;
  min-height:520px;
  overflow:hidden;
  border-radius:38px;
  background:#0b2d2a;
  box-shadow:0 30px 86px rgba(15,23,42,.15);
}

.outstaffing-hero-media-v1:before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,42,36,.62)),
    radial-gradient(circle at 72% 16%, rgba(255,255,255,.18), transparent 30%);
  pointer-events:none;
}

.outstaffing-hero-media-v1 img{
  width:100%;
  height:100%;
  min-height:520px;
  object-fit:cover;
  display:block;
}

.outstaffing-hero-media-v1 div{
  position:absolute;
  left:24px;
  right:24px;
  bottom:24px;
  z-index:2;
  padding:22px;
  border-radius:26px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  box-shadow:0 22px 60px rgba(0,0,0,.18);
}

.outstaffing-hero-media-v1 strong{
  display:block;
  color:#004f43;
  font-size:22px;
  letter-spacing:-.5px;
  font-weight:950;
}

.outstaffing-hero-media-v1 span{
  display:block;
  margin-top:6px;
  color:#667085;
  font-size:14px;
  line-height:1.5;
  font-weight:700;
}

.outstaffing-body-wrap-v1{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
  gap:24px;
  align-items:start;
  margin-top:-34px;
  z-index:2;
}

.outstaffing-content-v1{
  padding:34px;
  border-radius:34px;
  background:#fff;
  border:1px solid #e5ecea;
  box-shadow:0 20px 62px rgba(15,23,42,.08);
  color:#627084;
  font-size:16px;
  line-height:1.75;
}

.outstaffing-content-v1 h2{
  margin:32px 0 12px;
  color:#102033;
  font-size:25px;
  line-height:1.25;
  letter-spacing:-.5px;
  font-weight:950;
}

.outstaffing-content-v1 h2:first-child{margin-top:0}
.outstaffing-content-v1 p{margin:10px 0}
.outstaffing-content-v1 strong{color:#152235;font-weight:900}
.outstaffing-content-v1 ul,
.outstaffing-content-v1 ol{margin:14px 0 0;padding-left:22px}
.outstaffing-content-v1 li{margin:9px 0}

.outstaffing-contact-card-v1{
  position:sticky;
  top:96px;
  padding:24px;
  border-radius:30px;
  background:
    linear-gradient(145deg,#004f43,#087464),
    radial-gradient(circle at 80% 8%,rgba(255,255,255,.18),transparent 30%);
  color:#fff;
  box-shadow:0 24px 58px rgba(0,79,67,.22);
}

.outstaffing-contact-card-v1 span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:32px;
  padding:7px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  color:#e7fff8;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.outstaffing-contact-card-v1 strong{
  display:block;
  margin-top:18px;
  color:#fff;
  font-size:21px;
  line-height:1.28;
  font-weight:950;
}

.outstaffing-contact-card-v1 p{
  margin:10px 0 16px;
  color:rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.55;
  font-weight:650;
}

.outstaffing-contact-card-v1 a{
  display:flex;
  align-items:center;
  min-height:42px;
  margin-top:9px;
  padding:0 13px;
  border-radius:14px;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:14px;
  font-weight:900;
}

.outstaffing-cards-section-v1{
  padding:54px 0 92px;
}

.outstaffing-section-head-v1{
  max-width:850px;
  margin:0 auto 30px;
  text-align:center;
}

.outstaffing-section-head-v1 span{
  display:block;
  color:#102033;
  font-size:clamp(28px,4vw,44px);
  line-height:1.08;
  letter-spacing:-1px;
  font-weight:950;
}

.outstaffing-section-head-v1 p{
  margin:14px auto 0;
  max-width:720px;
  color:#667085;
  font-size:16px;
  line-height:1.65;
  font-weight:650;
}

.outstaffing-cards-grid-v1{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.outstaffing-card-v1{
  overflow:hidden;
  border-radius:30px;
  background:#fff;
  border:1px solid #e5ecea;
  box-shadow:0 18px 52px rgba(15,23,42,.08);
  transition:.18s ease;
}

.outstaffing-card-v1:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 68px rgba(15,23,42,.12);
}

.outstaffing-card-img-v1{
  overflow:hidden;
  background:#eaf0ef;
}

.outstaffing-card-img-v1 img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.25s ease;
}

.outstaffing-card-v1:hover .outstaffing-card-img-v1 img{
  transform:scale(1.035);
}

.outstaffing-card-body-v1{
  padding:24px;
}

.outstaffing-card-body-v1 span{
  display:inline-flex;
  min-height:30px;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:#eaf7f4;
  color:#004f43;
  font-size:12px;
  line-height:1;
  font-weight:950;
}

.outstaffing-card-body-v1 h3{
  margin:15px 0 0;
  color:#102033;
  font-size:22px;
  line-height:1.25;
  letter-spacing:-.4px;
  font-weight:950;
}

.outstaffing-card-body-v1 p{
  margin:12px 0 0;
  color:#667085;
  font-size:15px;
  line-height:1.65;
  font-weight:650;
}

@media (max-width:1100px){
  .outstaffing-hero-grid-v1,
  .outstaffing-body-wrap-v1{
    grid-template-columns:1fr;
  }

  .outstaffing-contact-card-v1{
    position:relative;
    top:auto;
  }

  .outstaffing-cards-grid-v1{
    grid-template-columns:1fr;
  }

  .outstaffing-card-v1{
    display:grid;
    grid-template-columns:320px minmax(0,1fr);
  }

  .outstaffing-card-img-v1{
    height:100%;
    min-height:230px;
  }
}

@media (max-width:720px){
  .outstaffing-hero-v1{
    padding:126px 0 54px;
  }

  .outstaffing-hero-copy-v1 h1{
    font-size:34px;
    letter-spacing:-1px;
  }

  .outstaffing-hero-copy-v1 p{
    font-size:15px;
  }

  .outstaffing-hero-media-v1{
    min-height:320px;
    border-radius:28px;
  }

  .outstaffing-hero-media-v1 img{
    min-height:320px;
  }

  .outstaffing-body-wrap-v1{
    margin-top:-18px;
  }

  .outstaffing-content-v1{
    padding:22px;
    border-radius:26px;
    font-size:15px;
  }

  .outstaffing-content-v1 h2{
    font-size:21px;
  }

  .outstaffing-card-v1{
    display:block;
    border-radius:24px;
  }

  .outstaffing-card-img-v1{
    height:210px;
  }

  .outstaffing-card-body-v1{
    padding:20px;
  }
}

/* ===== Password visibility + consent v50 ===== */
.hm-password-field-v50{
  position:relative;
  display:block;
  width:100%;
}

.hm-password-field-v50 input{
  width:100%;
  padding-right:116px !important;
}

.hm-password-toggle-v50{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  min-width:92px;
  height:36px;
  padding:0 10px;
  border:0;
  border-radius:12px;
  background:#eef7f4;
  color:#004f43;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  font-size:12px;
  font-weight:900;
  cursor:pointer;
  transition:.18s ease;
}

.hm-password-toggle-v50:hover{
  background:#dff3ee;
}

.hm-password-toggle-v50 i{
  font-size:14px;
}

.hm-consent-check-v50{
  display:grid !important;
  grid-template-columns:22px minmax(0,1fr);
  gap:12px;
  align-items:flex-start;
  padding:16px;
  border-radius:18px;
  background:#f5fbf9;
  border:1px solid rgba(0,79,67,.13);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.6);
}

.hm-consent-check-v50 input{
  width:20px !important;
  height:20px !important;
  margin:2px 0 0 !important;
  accent-color:#004f43;
  cursor:pointer;
}

.hm-consent-check-v50 span{
  display:block !important;
  min-width:0;
}

.hm-consent-check-v50 b{
  display:block;
  color:#1d2b3d;
  font-size:13px;
  line-height:1.55;
  font-weight:750;
}

.hm-consent-check-v50 em{
  display:block;
  margin-top:8px;
  color:#69778a;
  font-size:12.5px;
  line-height:1.55;
  font-style:normal;
  font-weight:600;
}

.hm-consent-check-v50 a{
  color:#004f43;
  font-weight:900;
  text-decoration:underline;
  text-underline-offset:3px;
}

@media (max-width:520px){
  .hm-password-field-v50 input{
    padding-right:54px !important;
  }

  .hm-password-toggle-v50{
    min-width:40px;
    width:40px;
    padding:0;
  }

  .hm-password-toggle-v50 span{
    display:none;
  }

  .hm-consent-check-v50{
    padding:14px;
    border-radius:16px;
  }

  .hm-consent-check-v50 b{
    font-size:12.5px;
  }

  .hm-consent-check-v50 em{
    font-size:12px;
  }
}


/* ===== Auth register layout FULL WIDTH final fix v52 ===== */

/* Auth form ichidagi maxsus bloklar 2 ustunli gridda to'liq qatorni egallasin */
.hm-worker-choice-v42,
.hm-consent-check-v50{
  grid-column:1 / -1 !important;
  width:100% !important;
  max-width:100% !important;
  box-sizing:border-box !important;
}

/* Ish qidirish usuli bloki */
.hm-worker-choice-v42{
  display:block !important;
  margin:18px 0 22px !important;
  overflow:visible !important;
}

.hm-worker-choice-title-v42{
  width:100% !important;
  margin:0 0 14px !important;
  color:#142238 !important;
  font-size:15px !important;
  line-height:1.35 !important;
  font-weight:900 !important;
}

/* 2 ta card butun forma kengligiga teng bo'ladi */
.hm-worker-choice-row-v42{
  width:100% !important;
  max-width:100% !important;
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:14px !important;
  align-items:stretch !important;
}

/* Eski width:50% ni to'liq bekor qilamiz */
.hm-worker-choice-card-v42{
  width:100% !important;
  min-width:0 !important;
  max-width:100% !important;
  min-height:auto !important;
  display:flex !important;
  cursor:pointer !important;
}

.hm-worker-choice-card-v42 input{
  position:absolute !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.hm-worker-choice-card-v42 span{
  width:100% !important;
  min-width:0 !important;
  max-width:100% !important;
  min-height:150px !important;
  display:flex !important;
  flex-direction:column !important;
  gap:12px !important;
  padding:20px !important;
  border-radius:22px !important;
  overflow:visible !important;
  box-sizing:border-box !important;
}

.hm-worker-choice-card-v42 b,
.hm-worker-choice-card-v42 em,
.hm-worker-choice-card-v42 small{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  white-space:normal !important;
  overflow:visible !important;
  text-overflow:clip !important;
  overflow-wrap:break-word !important;
  word-break:normal !important;
}

.hm-worker-choice-card-v42 b{
  color:#152238 !important;
  font-size:15px !important;
  line-height:1.28 !important;
  font-weight:950 !important;
}

.hm-worker-choice-card-v42 em{
  color:#6a7688 !important;
  font-size:13px !important;
  line-height:1.48 !important;
  font-style:normal !important;
  font-weight:700 !important;
}

.hm-worker-choice-card-v42 small{
  width:max-content !important;
  max-width:100% !important;
  margin-top:auto !important;
}

/* Rozilik checkboxi butun forma kengligiga chiqadi */
.hm-consent-check-v50{
  display:grid !important;
  grid-template-columns:24px minmax(0, 1fr) !important;
  gap:14px !important;
  align-items:flex-start !important;
  padding:18px 20px !important;
  margin:14px 0 4px !important;
  border-radius:22px !important;
  background:#f4fbf8 !important;
  border:1px solid rgba(0,79,67,.16) !important;
  overflow:visible !important;
}

.hm-consent-check-v50 input{
  width:22px !important;
  height:22px !important;
  min-width:22px !important;
  margin:3px 0 0 !important;
  accent-color:#004f43 !important;
}

.hm-consent-check-v50 span,
.hm-consent-check-v50 b,
.hm-consent-check-v50 em,
.hm-consent-check-v50 a{
  width:100% !important;
  min-width:0 !important;
  max-width:100% !important;
  white-space:normal !important;
  overflow:visible !important;
  text-overflow:clip !important;
  overflow-wrap:break-word !important;
  word-break:normal !important;
}

.hm-consent-check-v50 b{
  display:block !important;
  color:#1d2b3d !important;
  font-size:14px !important;
  line-height:1.6 !important;
  font-weight:850 !important;
}

.hm-consent-check-v50 em{
  display:block !important;
  margin-top:10px !important;
  color:#69778a !important;
  font-size:13px !important;
  line-height:1.58 !important;
  font-style:normal !important;
  font-weight:650 !important;
}

.hm-consent-check-v50 a{
  display:inline !important;
  color:#004f43 !important;
  font-weight:950 !important;
  text-decoration:underline !important;
  text-underline-offset:3px !important;
}

/* Planshet */
@media (max-width:820px){
  .hm-worker-choice-row-v42{
    grid-template-columns:1fr !important;
    gap:12px !important;
  }

  .hm-worker-choice-card-v42 span{
    min-height:auto !important;
    padding:17px !important;
  }
}

/* Telefon */
@media (max-width:520px){
  .hm-worker-choice-v42{
    margin:14px 0 18px !important;
  }

  .hm-worker-choice-title-v42{
    font-size:14px !important;
  }

  .hm-worker-choice-card-v42{
    width:100% !important;
  }

  .hm-worker-choice-card-v42 span{
    width:100% !important;
    min-height:auto !important;
    padding:15px !important;
    border-radius:18px !important;
  }

  .hm-worker-choice-card-v42 b{
    font-size:13.5px !important;
    line-height:1.32 !important;
  }

  .hm-worker-choice-card-v42 em{
    font-size:12.2px !important;
    line-height:1.45 !important;
  }

  .hm-consent-check-v50{
    grid-template-columns:22px minmax(0, 1fr) !important;
    gap:11px !important;
    padding:14px !important;
    border-radius:17px !important;
  }

  .hm-consent-check-v50 b{
    font-size:12.5px !important;
    line-height:1.5 !important;
  }

  .hm-consent-check-v50 em{
    font-size:12px !important;
    line-height:1.45 !important;
  }
}

/* ===== Auth modal vertical screen fit v52 ===== */
.auth-modal,
.hm-auth-modal,
.auth-choice-modal{
  overflow-y:auto !important;
  align-items:flex-start !important;
  padding:10px !important;
}

.auth-modal-card,
.auth-card,
.auth-modal-content,
.hm-auth-modal-card{
  width:min(960px, calc(100vw - 20px)) !important;
  max-width:calc(100vw - 20px) !important;
  max-height:calc(100vh - 20px) !important;
  overflow-y:auto !important;
  overflow-x:hidden !important;
  box-sizing:border-box !important;
}

@media (max-width:620px){
  .auth-modal,
  .hm-auth-modal,
  .auth-choice-modal{
    padding:6px !important;
  }

  .auth-modal-card,
  .auth-card,
  .auth-modal-content,
  .hm-auth-modal-card{
    width:calc(100vw - 12px) !important;
    max-width:calc(100vw - 12px) !important;
    max-height:calc(100vh - 12px) !important;
    border-radius:24px !important;
    padding-left:14px !important;
    padding-right:14px !important;
  }
}

/* Header outstaffing switch v1: 3 ta asosiy tanlov (Ищу работу / Ищу сотрудников / Аутстаффинг) */
@media (max-width:1180px){
  .mobile-mode-row{grid-template-columns:repeat(3,minmax(0,1fr))}
  .mobile-mode-row a{padding:0 10px;text-align:center;font-size:13px;line-height:1.15}
}

@media (max-width:760px){
  .mobile-mode-row{grid-template-columns:1fr}
}


.hm-field-status{
  display:inline-flex;
  align-items:center;
  margin-left:6px;
  font-size:12px;
  line-height:1.2;
  font-weight:900;
  font-style:normal;
  vertical-align:middle;
  white-space:nowrap;
}

.hm-field-status.is-required{
  color:#d92d20;
}

.hm-field-status.is-optional{
  color:#667085;
  font-weight:800;
}

.resume-field.is-resume-missing input,
.resume-field.is-resume-missing select,
.resume-field.is-resume-missing textarea,
.resume-check-row.is-resume-missing,
.resume-form-card.is-resume-missing{
  border-color:#d92d20 !important;
  box-shadow:0 0 0 4px rgba(217,45,32,.12) !important;
}

.resume-required-modal-v1[hidden]{
  display:none !important;
}

.resume-required-modal-v1{
  position:fixed;
  inset:0;
  z-index:99999;
  display:grid;
  place-items:center;
  padding:20px;
}

.resume-required-modal-backdrop-v1{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.58);
  backdrop-filter:blur(8px);
}

.resume-required-modal-card-v1{
  position:relative;
  width:min(560px,100%);
  max-height:calc(100vh - 40px);
  overflow:auto;
  border-radius:26px;
  background:#fff;
  padding:30px;
  box-shadow:0 28px 90px rgba(15,23,42,.28);
}

.resume-required-modal-x-v1{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border:0;
  border-radius:14px;
  background:#f2f4f7;
  color:#101828;
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

.resume-required-modal-icon-v1{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:#fef3f2;
  color:#d92d20;
  font-size:24px;
  margin-bottom:16px;
}

.resume-required-modal-card-v1 h3{
  margin:0 44px 8px 0;
  color:#101828;
  font-size:24px;
  line-height:1.2;
  font-weight:900;
}

.resume-required-modal-card-v1 p{
  margin:0 0 18px;
  color:#667085;
  font-size:15px;
  line-height:1.45;
  font-weight:600;
}

.resume-required-modal-card-v1 ul{
  list-style:none;
  padding:0;
  margin:0 0 22px;
  display:grid;
  gap:10px;
}

.resume-required-modal-card-v1 li button{
  width:100%;
  border:1px solid #fee4e2;
  border-radius:16px;
  background:#fffbfa;
  padding:13px 14px;
  text-align:left;
  cursor:pointer;
  display:grid;
  gap:4px;
}

.resume-required-modal-card-v1 li button strong{
  color:#d92d20;
  font-size:13px;
  font-weight:900;
}

.resume-required-modal-card-v1 li button span{
  color:#101828;
  font-size:15px;
  font-weight:800;
}

.resume-required-modal-ok-v1{
  width:100%;
  height:48px;
  border:0;
  border-radius:16px;
  background:#004f43;
  color:#fff;
  font-size:15px;
  font-weight:900;
  cursor:pointer;
}

body.resume-required-modal-open-v1{
  overflow:hidden;
}

.resume-step-hint-v1{
  margin:0 0 18px;
  padding:14px 16px;
  border:1px solid #e4e7ec;
  border-radius:16px;
  background:#f9fafb;
  color:#475467;
  font-size:14px;
  line-height:1.55;
  font-weight:700;
}

.resume-optional-experience-card-v1{
  border-style:dashed;
}

.resume-add-line .hm-field-status{
  margin-left:8px;
}

.resume-noexp .hm-field-status{
  margin-left:6px;
}


.resume-step-hint-v1{
  margin:0 0 18px;
  padding:14px 16px;
  border:1px solid #e4e7ec;
  border-radius:16px;
  background:#f9fafb;
  color:#475467;
  font-size:14px;
  line-height:1.55;
  font-weight:700;
}

.resume-step-hint-v1.is-muted{
  margin-top:18px;
  background:#f8fafc;
  color:#667085;
}

.resume-education-primary-card-v1{
  border-color:#d1fadf;
  box-shadow:0 12px 34px rgba(12,140,92,.08);
}

.resume-optional-education-card-v1,
.resume-optional-course-card-v1,
.resume-optional-certificate-card-v1{
  border-style:dashed;
}

.resume-add-line .hm-field-status{
  margin-left:8px;
}

.resume-skills-required-card-v1{
  border-color:#d1fadf;
  box-shadow:0 12px 34px rgba(12,140,92,.08);
}

.resume-language-primary-card-v1{
  border-color:#d1fadf;
  box-shadow:0 12px 34px rgba(12,140,92,.08);
}

.resume-language-row{
  display:grid;
  grid-template-columns:1fr 180px auto;
  gap:12px;
  align-items:end;
}

.resume-language-row .resume-field{
  margin:0;
}

.resume-language-row button[data-remove-repeat]{
  min-height:46px;
  border:0;
  border-radius:14px;
  padding:0 14px;
  background:#fef3f2;
  color:#b42318;
  font-weight:900;
  cursor:pointer;
}

.resume-language-primary-row-v1{
  grid-template-columns:1fr 180px;
}

.resume-language-primary-row-v1 button[data-remove-repeat]{
  display:none;
}

.resume-language-optional-row-v1,
.resume-optional-project-card-v1{
  border-style:dashed;
}

.resume-skill-input input.is-resume-missing,
.resume-skills-required-card-v1.is-resume-missing{
  border-color:#d92d20 !important;
  box-shadow:0 0 0 4px rgba(217,45,32,.12) !important;
}

@media (max-width:720px){
  .resume-language-row,
  .resume-language-primary-row-v1{
    grid-template-columns:1fr;
  }
}



.emp-step-hint-v1{
  margin:0 0 18px;
  padding:14px 16px;
  border:1px solid #e4e7ec;
  border-radius:16px;
  background:#f9fafb;
  color:#475467;
  font-size:14px;
  line-height:1.55;
  font-weight:700;
}

.emp-builder-options-v20.is-emp-missing,
.emp-vacancy-media-card-v38.is-emp-missing,
.emp-form-grid-v20.is-emp-missing,
.emp-vacancy-builder-v20 label.is-emp-missing input,
.emp-vacancy-builder-v20 label.is-emp-missing select,
.emp-vacancy-builder-v20 label.is-emp-missing textarea{
  border-color:#d92d20 !important;
  box-shadow:0 0 0 4px rgba(217,45,32,.12) !important;
}

.emp-required-modal-v1[hidden]{
  display:none !important;
}

.emp-required-modal-v1{
  position:fixed;
  inset:0;
  z-index:99999;
  display:grid;
  place-items:center;
  padding:20px;
}

.emp-required-modal-backdrop-v1{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.58);
  backdrop-filter:blur(8px);
}

.emp-required-modal-card-v1{
  position:relative;
  width:min(580px,100%);
  max-height:calc(100vh - 40px);
  overflow:auto;
  border-radius:26px;
  background:#fff;
  padding:30px;
  box-shadow:0 28px 90px rgba(15,23,42,.28);
}

.emp-required-modal-x-v1{
  position:absolute;
  top:14px;
  right:14px;
  width:38px;
  height:38px;
  border:0;
  border-radius:14px;
  background:#f2f4f7;
  color:#101828;
  font-size:26px;
  line-height:1;
  cursor:pointer;
}

.emp-required-modal-icon-v1{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:#fef3f2;
  color:#d92d20;
  font-size:24px;
  margin-bottom:16px;
}

.emp-required-modal-card-v1 h3{
  margin:0 44px 8px 0;
  color:#101828;
  font-size:24px;
  line-height:1.2;
  font-weight:900;
}

.emp-required-modal-card-v1 p{
  margin:0 0 18px;
  color:#667085;
  font-size:15px;
  line-height:1.45;
  font-weight:600;
}

.emp-required-modal-card-v1 ul{
  list-style:none;
  padding:0;
  margin:0 0 22px;
  display:grid;
  gap:10px;
}

.emp-required-modal-card-v1 li button{
  width:100%;
  border:1px solid #fee4e2;
  border-radius:16px;
  background:#fffbfa;
  padding:13px 14px;
  text-align:left;
  cursor:pointer;
  display:grid;
  gap:4px;
}

.emp-required-modal-card-v1 li button strong{
  color:#d92d20;
  font-size:13px;
  font-weight:900;
}

.emp-required-modal-card-v1 li button span{
  color:#101828;
  font-size:15px;
  font-weight:800;
}

.emp-required-modal-ok-v1{
  width:100%;
  height:48px;
  border:0;
  border-radius:16px;
  background:#004f43;
  color:#fff;
  font-size:15px;
  font-weight:900;
  cursor:pointer;
}

body.emp-required-modal-open-v1{
  overflow:hidden;
}

/* ===== Companies public page v1 ===== */
.companies-public-page-v1{
  padding:150px 0 90px;
  background:#f8fafc;
  min-height:760px;
}

.companies-hero-v1{
  border-radius:32px;
  padding:42px;
  background:
    radial-gradient(circle at 88% 20%, rgba(0,79,67,.14), transparent 34%),
    linear-gradient(135deg,#ffffff 0%,#eef8f6 100%);
  border:1px solid #e4e7ec;
  box-shadow:0 20px 60px rgba(15,23,42,.06);
  margin-bottom:24px;
}

.companies-hero-v1 span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 14px;
  border-radius:999px;
  background:#e6f6f2;
  color:#004f43;
  font-weight:900;
  font-size:13px;
  margin-bottom:18px;
}

.companies-hero-v1 h1{
  margin:0;
  color:#101828;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-1.2px;
  font-weight:900;
}

.companies-hero-v1 p{
  margin:16px 0 0;
  max-width:760px;
  color:#667085;
  font-size:16px;
  line-height:1.55;
  font-weight:600;
}

.companies-filter-v1{
  display:grid;
  grid-template-columns:1.2fr 1fr auto auto;
  gap:14px;
  align-items:end;
  padding:18px;
  border-radius:24px;
  background:#fff;
  border:1px solid #e4e7ec;
  box-shadow:0 14px 40px rgba(15,23,42,.05);
  margin-bottom:28px;
}

.companies-filter-v1 label{
  display:grid;
  gap:8px;
}

.companies-filter-v1 label span{
  color:#344054;
  font-size:13px;
  font-weight:900;
}

.companies-filter-v1 input{
  width:100%;
  min-height:48px;
  border:1px solid #d0d5dd;
  border-radius:16px;
  padding:0 16px;
  outline:0;
  color:#101828;
  background:#fff;
  font-weight:700;
}

.companies-filter-v1 input:focus{
  border-color:#004f43;
  box-shadow:0 0 0 4px rgba(0,79,67,.10);
}

.companies-filter-v1 button,
.companies-filter-v1 a{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border:0;
  border-radius:16px;
  padding:0 18px;
  font-weight:900;
  cursor:pointer;
}

.companies-filter-v1 button{
  background:#004f43;
  color:#fff;
}

.companies-filter-v1 a{
  background:#f2f4f7;
  color:#344054;
}

.companies-result-head-v1{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin:0 0 24px;
}

.companies-result-head-v1 h2{
  margin:0;
  color:#101828;
  font-size:28px;
  font-weight:900;
  letter-spacing:-.5px;
}

.companies-result-head-v1 p{
  margin:6px 0 0;
  color:#667085;
  font-weight:700;
}

.companies-result-head-v1 p b{
  color:#004f43;
}

.companies-result-head-v1 > a{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:0 18px;
  border-radius:16px;
  background:#004f43;
  color:#fff;
  font-weight:900;
}

.companies-grid-v1{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.company-card-v1{
  display:flex;
  flex-direction:column;
  gap:18px;
  min-height:100%;
  padding:22px;
  border-radius:26px;
  background:#fff;
  border:1px solid #e4e7ec;
  box-shadow:0 14px 42px rgba(15,23,42,.045);
  transition:.18s ease;
}

.company-card-v1:hover{
  transform:translateY(-2px);
  border-color:#b9d8d2;
  box-shadow:0 20px 58px rgba(15,23,42,.08);
}

.company-card-top-v1{
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  gap:16px;
  align-items:center;
}

.company-card-logo-v1{
  width:72px;
  height:72px;
  border-radius:22px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:#eef8f6;
  color:#004f43;
  font-size:28px;
}

.company-card-logo-v1 img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.company-card-top-v1 span{
  display:inline-flex;
  color:#004f43;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.company-card-top-v1 h3{
  margin:5px 0 7px;
  color:#101828;
  font-size:20px;
  line-height:1.18;
  font-weight:900;
}

.company-card-top-v1 p{
  margin:0;
  display:flex;
  align-items:center;
  gap:7px;
  color:#667085;
  font-size:14px;
  font-weight:700;
}

.company-card-stats-v1{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.company-card-stats-v1 article{
  border-radius:18px;
  background:#f8fafc;
  padding:13px 10px;
  text-align:center;
}

.company-card-stats-v1 b{
  display:block;
  color:#004f43;
  font-size:20px;
  font-weight:900;
}

.company-card-stats-v1 span{
  display:block;
  margin-top:4px;
  color:#667085;
  font-size:11px;
  line-height:1.2;
  font-weight:800;
}

.company-card-info-v1{
  display:grid;
  gap:7px;
  color:#475467;
  font-size:14px;
  line-height:1.45;
  font-weight:650;
}

.company-card-info-v1 p{
  margin:0;
}

.company-card-info-v1 strong{
  color:#101828;
}

.company-card-contacts-v1{
  display:grid;
  gap:9px;
}

.company-card-contacts-v1 a{
  display:grid;
  grid-template-columns:22px 72px minmax(0,1fr);
  gap:8px;
  align-items:center;
  min-height:38px;
  padding:8px 10px;
  border-radius:14px;
  background:#f9fafb;
  color:#344054;
  font-size:13px;
  font-weight:800;
}

.company-card-contacts-v1 a i{
  color:#004f43;
}

.company-card-contacts-v1 a b{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#101828;
}

.company-card-actions-v1{
  margin-top:auto;
}

.company-card-actions-v1 a{
  width:100%;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:16px;
  background:#004f43;
  color:#fff;
  font-size:14px;
  font-weight:900;
}

.companies-empty-v1{
  display:grid;
  place-items:center;
  text-align:center;
  padding:60px 20px;
  border-radius:28px;
  background:#fff;
  border:1px dashed #d0d5dd;
}

.companies-empty-v1 i{
  width:68px;
  height:68px;
  display:grid;
  place-items:center;
  border-radius:22px;
  background:#f2f4f7;
  color:#667085;
  font-size:28px;
  margin-bottom:16px;
}

.companies-empty-v1 h3{
  margin:0 0 8px;
  color:#101828;
  font-size:22px;
  font-weight:900;
}

.companies-empty-v1 p{
  margin:0;
  color:#667085;
  font-weight:700;
}

@media (max-width:1120px){
  .companies-grid-v1{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .companies-filter-v1{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:720px){
  .companies-public-page-v1{
    padding:130px 0 60px;
  }

  .companies-hero-v1{
    padding:28px 20px;
    border-radius:24px;
  }

  .companies-hero-v1 h1{
    font-size:32px;
  }

  .companies-filter-v1{
    grid-template-columns:1fr;
  }

  .companies-result-head-v1{
    display:grid;
  }

  .companies-grid-v1{
    grid-template-columns:1fr;
  }

  .company-card-stats-v1{
    grid-template-columns:1fr;
  }

  .company-card-contacts-v1 a{
    grid-template-columns:22px minmax(0,1fr);
  }

  .company-card-contacts-v1 a span{
    display:none;
  }
}

.auth-social-v60{
  display:grid;
  gap:10px;
  margin:18px 0;
}
.auth-social-title-v60{
  text-align:center;
  font-size:13px;
  font-weight:800;
  color:#6b7280;
}
.auth-social-btn-v60{
  height:48px;
  border:1px solid #e5e7eb;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#fff;
  color:#172438;
  font-weight:800;
  transition:.18s ease;
}
.auth-social-btn-v60:hover{
  transform:translateY(-1px);
  border-color:#004f43;
  box-shadow:0 12px 28px rgba(0,79,67,.10);
}
.auth-forgot-link-v60{
  display:block;
  text-align:center;
  margin-top:12px;
  color:#004f43;
  font-size:14px;
  font-weight:800;
}

/* ===== About company text block v4 ===== */
.hm-about-company-v4{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(320px, .85fr);
  gap:24px;
  margin-top:8px;
}

.hm-about-company-card-v4{
  position:relative;
  overflow:hidden;
  padding:30px;
  border-radius:30px;
  background:#fff;
  border:1px solid rgba(0,79,67,.10);
  box-shadow:0 22px 70px rgba(15,23,42,.08);
}

.hm-about-company-card-v4:before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-120px;
  top:-140px;
  border-radius:50%;
  background:rgba(0,79,67,.07);
  pointer-events:none;
}

.hm-about-company-main-v4{
  grid-row:span 2;
  background:
    radial-gradient(circle at 100% 0%, rgba(0,79,67,.10), transparent 32%),
    linear-gradient(180deg,#ffffff 0%,#f7fbfa 100%);
}

.hm-about-company-card-head-v4{
  position:relative;
  z-index:1;
  margin-bottom:18px;
}

.hm-about-company-card-head-v4 span{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:8px 13px;
  border-radius:999px;
  background:#eaf7f4;
  color:#004f43;
  font-size:12px;
  line-height:1;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}

.hm-about-company-card-head-v4 h3{
  margin:16px 0 0;
  color:#122033;
  font-size:clamp(24px,2.5vw,36px);
  line-height:1.14;
  letter-spacing:-.8px;
  font-weight:950;
}

.hm-about-company-card-v4 p{
  position:relative;
  z-index:1;
  margin:0 0 16px;
  color:#475467;
  font-size:16px;
  line-height:1.82;
  font-weight:600;
}

.hm-about-company-strong-v4{
  padding:18px 20px;
  border-radius:22px;
  background:#f0faf7;
  color:#1f2937!important;
  border:1px solid rgba(0,79,67,.10);
}

.hm-about-company-strong-v4 strong{
  color:#004f43;
  font-weight:950;
}

.hm-about-company-contact-v4{
  position:relative;
  z-index:1;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.hm-about-company-contact-v4 span{
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-height:44px;
  padding:10px 14px;
  border-radius:16px;
  background:#f7f9fb;
  color:#243446;
  font-size:14px;
  line-height:1.35;
  font-weight:800;
}

.hm-about-company-contact-v4 i{
  color:#004f43;
}

.hm-about-company-contact-v4 a{
  color:#004f43;
  font-weight:950;
}

.hm-about-company-list-v4{
  position:relative;
  z-index:1;
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:13px;
}

.hm-about-company-list-v4 li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 15px;
  border-radius:18px;
  background:#f7f9fb;
  color:#1f2d44;
  font-size:15px;
  line-height:1.48;
  font-weight:800;
}

.hm-about-company-list-v4 i{
  display:grid;
  place-items:center;
  width:26px;
  height:26px;
  flex:0 0 auto;
  border-radius:50%;
  background:#004f43;
  color:#fff;
  font-size:12px;
}

.hm-about-company-work-v4{
  background:
    radial-gradient(circle at 100% 0%, rgba(0,79,67,.12), transparent 34%),
    linear-gradient(135deg,#ffffff 0%,#f3faf8 100%);
}

.hm-about-company-steps-v4{
  position:relative;
  z-index:1;
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:14px;
  counter-reset:none;
}

.hm-about-company-steps-v4 li{
  display:grid;
  grid-template-columns:48px 1fr;
  gap:14px;
  align-items:flex-start;
  padding:16px;
  border-radius:20px;
  background:#fff;
  border:1px solid rgba(0,79,67,.09);
}

.hm-about-company-steps-v4 span{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border-radius:18px;
  background:#004f43;
  color:#fff;
  font-size:14px;
  font-weight:950;
}

.hm-about-company-steps-v4 p{
  margin:0;
  color:#344054;
  font-size:15px;
  line-height:1.65;
  font-weight:700;
}

@media(max-width:1050px){
  .hm-about-company-v4{
    grid-template-columns:1fr;
  }

  .hm-about-company-main-v4{
    grid-row:auto;
  }
}

@media(max-width:620px){
  .hm-about-company-card-v4{
    padding:22px;
    border-radius:24px;
  }

  .hm-about-company-card-head-v4 h3{
    font-size:24px;
  }

  .hm-about-company-card-v4 p{
    font-size:15px;
    line-height:1.7;
  }

  .hm-about-company-contact-v4{
    display:grid;
  }

  .hm-about-company-contact-v4 span{
    width:100%;
  }

  .hm-about-company-steps-v4 li{
    grid-template-columns:1fr;
  }
}

/* ===== Outstaffing professional text cards v2 ===== */
.outstaffing-hero-info-v2{
  position:relative;
  overflow:hidden;
  padding:34px;
  border-radius:38px;
  background:
    radial-gradient(circle at 88% 10%, rgba(0,79,67,.12), transparent 34%),
    linear-gradient(145deg,#ffffff 0%,#f3faf8 100%);
  border:1px solid rgba(0,79,67,.12);
  box-shadow:0 30px 86px rgba(15,23,42,.12);
}

.outstaffing-hero-info-v2:before{
  content:"";
  position:absolute;
  width:360px;
  height:360px;
  right:-180px;
  top:-180px;
  border-radius:50%;
  background:rgba(0,79,67,.08);
  pointer-events:none;
}

.outstaffing-hero-logo-v2{
  position:relative;
  z-index:1;
  display:grid;
  gap:8px;
  margin-bottom:28px;
}

.outstaffing-hero-logo-v2 strong{
  color:#0f2137;
  font-size:clamp(34px,4vw,56px);
  line-height:1;
  letter-spacing:-1.8px;
  font-weight:950;
}

.outstaffing-hero-logo-v2 span{
  max-width:420px;
  color:#004f43;
  font-size:22px;
  line-height:1.28;
  font-weight:850;
}

.outstaffing-hero-info-v2 p{
  position:relative;
  z-index:1;
  margin:0;
  padding:24px;
  border-radius:26px;
  background:#004f43;
  color:#fff;
  font-size:22px;
  line-height:1.45;
  font-weight:850;
  font-style:italic;
}

.outstaffing-hero-info-v2 ul{
  position:relative;
  z-index:1;
  list-style:none;
  margin:24px 0 0;
  padding:0;
  display:grid;
  gap:12px;
}

.outstaffing-hero-info-v2 li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 16px;
  border-radius:18px;
  background:#fff;
  color:#1f2d44;
  font-size:15px;
  line-height:1.5;
  font-weight:800;
  border:1px solid rgba(0,79,67,.08);
}

.outstaffing-hero-info-v2 li:before{
  content:"";
  width:11px;
  height:11px;
  margin-top:6px;
  flex:0 0 auto;
  border-radius:50%;
  background:#004f43;
}

.outstaffing-content-v1 h3{
  margin:24px 0 10px;
  color:#102033;
  font-size:21px;
  line-height:1.32;
  font-weight:950;
}

.outstaffing-content-v1 blockquote{
  margin:18px 0;
  padding:20px 22px;
  border-left:5px solid #004f43;
  border-radius:20px;
  background:#f1faf7;
  color:#213247;
  font-size:17px;
  line-height:1.65;
  font-weight:800;
}

.outstaffing-content-v1 em{
  color:#004f43;
  font-style:normal;
  font-weight:950;
}

.outstaffing-card-v2{
  min-height:100%;
}

.outstaffing-card-icon-v2{
  height:96px;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.18), transparent 28%),
    linear-gradient(145deg,#004f43,#087464);
}

.outstaffing-card-icon-v2 i{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:24px;
}

.outstaffing-card-v2 .outstaffing-card-body-v1{
  min-height:250px;
}

.outstaffing-contact-card-v1 a{
  gap:10px;
}

@media(max-width:1100px){
  .outstaffing-hero-info-v2{
    padding:28px;
  }

  .outstaffing-card-v2{
    grid-template-columns:130px minmax(0,1fr);
  }

  .outstaffing-card-v2 .outstaffing-card-icon-v2{
    height:100%;
    min-height:210px;
  }

  .outstaffing-card-v2 .outstaffing-card-body-v1{
    min-height:auto;
  }
}

@media(max-width:720px){
  .outstaffing-hero-info-v2{
    padding:22px;
    border-radius:28px;
  }

  .outstaffing-hero-info-v2 p{
    padding:18px;
    font-size:17px;
  }

  .outstaffing-hero-logo-v2 strong{
    font-size:34px;
  }

  .outstaffing-hero-logo-v2 span{
    font-size:18px;
  }

  .outstaffing-card-v2{
    display:block;
  }

  .outstaffing-card-v2 .outstaffing-card-icon-v2{
    height:86px;
    min-height:auto;
  }
}

/* ===== Header logo size fix v1 ===== */
.header-brand{
  min-width:230px !important;
  height:76px !important;
  display:flex !important;
  align-items:center !important;
  flex:0 0 auto !important;
}

.header-brand .brand-logo-img{
  width:220px !important;
  max-width:220px !important;
  max-height:64px !important;
  height:auto !important;
  object-fit:contain !important;
}

/* Scroll bo'lgan headerda ham logo katta qolsin */
.site-header-modern.is-scrolled .header-brand .brand-logo-img,
.site-header-modern.public-header .header-brand .brand-logo-img{
  width:210px !important;
  max-width:210px !important;
  max-height:60px !important;
}

/* 1500px dan kichik ekranlarda biroz ixcham */
@media (max-width:1500px){
  .header-brand{
    min-width:200px !important;
  }

  
}

/* Planshet */
@media (max-width:1180px){
  .header-brand{
    min-width:180px !important;
  }

  
}

/* Telefon */
@media (max-width:520px){
  .header-brand{
    min-width:126px !important;
    height:64px !important;
  }

  
}


/* ===== Auth register method chooser v61 ===== */

.auth-register-form .auth-worker-choice-top-v61{
  grid-column:1 / -1 !important;
  width:100% !important;
  max-width:100% !important;
  margin:22px auto 26px !important;
}

.auth-register-form .auth-worker-choice-top-v61 .hm-worker-choice-title-v42{
  width:100% !important;
  margin:0 0 14px !important;
  text-align:left !important;
  color:#142238 !important;
  font-size:16px !important;
  line-height:1.35 !important;
  font-weight:950 !important;
}

.auth-register-form .auth-worker-choice-top-v61 .hm-worker-choice-row-v42{
  width:100% !important;
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:16px !important;
  align-items:stretch !important;
}

.auth-register-form .auth-worker-choice-top-v61 .hm-worker-choice-card-v42{
  width:100% !important;
  min-width:0 !important;
  min-height:150px !important;
}

.auth-register-form .auth-worker-choice-top-v61 .hm-worker-choice-card-v42 span{
  width:100% !important;
  min-height:150px !important;
  padding:24px !important;
  border-radius:24px !important;
}

.auth-register-methods-v61{
  grid-column:1 / -1 !important;
  width:min(860px, 100%) !important;
  max-width:100% !important;
  margin:10px auto 28px !important;
  text-align:center !important;
}

.auth-register-methods-v61 .auth-social-title-v60{
  width:100% !important;
  margin:0 0 14px !important;
  text-align:center !important;
  color:#697586 !important;
  font-size:14px !important;
  line-height:1.35 !important;
  font-weight:900 !important;
}

.auth-social-grid-v61{
  width:100% !important;
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:12px !important;
  align-items:stretch !important;
}

.auth-register-methods-v61 .auth-social-btn-v60{
  width:100% !important;
  min-width:0 !important;
  min-height:92px !important;
  height:auto !important;
  padding:15px 12px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
  border:1px solid #dde5ee !important;
  border-radius:20px !important;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%) !important;
  color:#172438 !important;
  font-size:14px !important;
  line-height:1.25 !important;
  font-weight:900 !important;
  text-align:center !important;
  box-shadow:0 12px 30px rgba(15,23,42,.05) !important;
  cursor:pointer !important;
  transition:.18s ease !important;
}

.auth-register-methods-v61 .auth-social-btn-v60 i{
  color:#004f43 !important;
  font-size:20px !important;
  line-height:1 !important;
}

.auth-register-methods-v61 .auth-social-btn-v60 span{
  display:block !important;
  width:100% !important;
  white-space:normal !important;
  overflow-wrap:break-word !important;
}

.auth-register-methods-v61 .auth-social-btn-v60 em{
  display:block !important;
  max-width:150px !important;
  color:#697586 !important;
  font-size:11px !important;
  line-height:1.35 !important;
  font-style:normal !important;
  font-weight:700 !important;
}

.auth-register-methods-v61 .auth-social-btn-v60:hover,
.auth-register-methods-v61 .auth-social-btn-v60.is-active{
  border-color:#004f43 !important;
  background:linear-gradient(180deg,#ffffff 0%,#effaf7 100%) !important;
  box-shadow:
    0 18px 44px rgba(0,79,67,.12),
    inset 0 0 0 1px rgba(0,79,67,.14) !important;
  transform:translateY(-1px) !important;
}

.auth-manual-fields-v61{
  grid-column:1 / -1 !important;
  width:100% !important;
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:14px !important;
  margin-top:4px !important;
  padding:22px !important;
  border:1px solid rgba(0,79,67,.15) !important;
  border-radius:26px !important;
  background:#ffffff !important;
  box-shadow:0 18px 52px rgba(15,23,42,.07) !important;
}

.auth-manual-fields-v61[hidden]{
  display:none !important;
}

.auth-manual-head-v61{
  grid-column:1 / -1 !important;
  padding:2px 0 6px !important;
}

.auth-manual-head-v61 strong{
  display:block !important;
  color:#122033 !important;
  font-size:18px !important;
  line-height:1.25 !important;
  font-weight:950 !important;
}

.auth-manual-fields-v61 label{
  width:100% !important;
  min-width:0 !important;
}

.auth-manual-fields-v61 .hm-consent-check-v50,
.auth-manual-fields-v61 .auth-main-btn,
.auth-manual-fields-v61 .auth-message{
  grid-column:1 / -1 !important;
}

@media (max-width:920px){
  .auth-social-grid-v61{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }

  .auth-register-form .auth-worker-choice-top-v61 .hm-worker-choice-row-v42{
    grid-template-columns:1fr !important;
  }

  .auth-register-form .auth-worker-choice-top-v61 .hm-worker-choice-card-v42,
  .auth-register-form .auth-worker-choice-top-v61 .hm-worker-choice-card-v42 span{
    min-height:auto !important;
  }
}

@media (max-width:620px){
  .auth-social-grid-v61,
  .auth-manual-fields-v61{
    grid-template-columns:1fr !important;
  }

  .auth-register-methods-v61 .auth-social-btn-v60{
    min-height:74px !important;
    flex-direction:row !important;
    justify-content:flex-start !important;
    text-align:left !important;
    padding:14px 16px !important;
  }

  .auth-register-methods-v61 .auth-social-btn-v60 span{
    width:auto !important;
  }

  .auth-register-methods-v61 .auth-social-btn-v60 em{
    display:none !important;
  }

  .auth-manual-fields-v61{
    padding:16px !important;
    border-radius:20px !important;
  }
}


/* ===== Worker choice full width fix v62 ===== */

.auth-register-form .hm-worker-choice-v42{
  grid-column:1 / -1 !important;
  width:100% !important;
  max-width:100% !important;
  margin:22px 0 26px !important;
  display:block !important;
}

.auth-register-form .hm-worker-choice-title-v42{
  width:100% !important;
  margin:0 0 14px !important;
  color:#142238 !important;
  font-size:16px !important;
  line-height:1.35 !important;
  font-weight:950 !important;
  text-align:left !important;
}

.auth-register-form .hm-worker-choice-row-v42{
  width:100% !important;
  max-width:100% !important;
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:14px !important;
  align-items:stretch !important;
}

.auth-register-form .hm-worker-choice-card-v42,
.auth-register-form .hm-worker-choice-card-v42.is-self,
.auth-register-form .hm-worker-choice-card-v42.is-handymens{
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  flex:none !important;
  display:block !important;
  min-height:auto !important;
  padding:0 !important;
  margin:0 !important;
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
}

.auth-register-form .hm-worker-choice-card-v42 input{
  position:absolute !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.auth-register-form .hm-worker-choice-card-v42 span{
  width:100% !important;
  max-width:100% !important;
  min-height:132px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  gap:10px !important;
  padding:24px !important;
  border:1px solid #dfe8ee !important;
  border-radius:24px !important;
  background:#ffffff !important;
  box-shadow:0 12px 34px rgba(15,23,42,.045) !important;
  transition:.18s ease !important;
}

.auth-register-form .hm-worker-choice-card-v42 b{
  display:block !important;
  color:#122238 !important;
  font-size:17px !important;
  line-height:1.25 !important;
  font-weight:950 !important;
}

.auth-register-form .hm-worker-choice-card-v42 em{
  display:block !important;
  max-width:100% !important;
  color:#697586 !important;
  font-style:normal !important;
  font-size:14px !important;
  line-height:1.45 !important;
  font-weight:700 !important;
}

.auth-register-form .hm-worker-choice-card-v42 small{
  display:none !important;
  width:max-content !important;
  margin-top:auto !important;
  padding:7px 11px !important;
  border-radius:999px !important;
  background:#004f43 !important;
  color:#fff !important;
  font-size:11px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.auth-register-form .hm-worker-choice-card-v42:hover span{
  border-color:rgba(0,79,67,.32) !important;
  box-shadow:0 18px 44px rgba(15,23,42,.09) !important;
  transform:translateY(-1px) !important;
}

.auth-register-form .hm-worker-choice-card-v42 input:checked + span{
  border-color:#004f43 !important;
  background:linear-gradient(180deg,#ffffff 0%,#effaf7 100%) !important;
  box-shadow:
    0 18px 44px rgba(0,79,67,.13),
    inset 0 0 0 1px rgba(0,79,67,.18) !important;
}

.auth-register-form .hm-worker-choice-card-v42 input:checked + span b{
  color:#004f43 !important;
}

.auth-register-form .hm-worker-choice-card-v42 input:checked + span small{
  display:inline-flex !important;
}

@media(max-width:620px){
  .auth-register-form .hm-worker-choice-card-v42 span{
    min-height:auto !important;
    padding:18px !important;
    border-radius:20px !important;
  }

  .auth-register-form .hm-worker-choice-card-v42 b{
    font-size:15px !important;
  }

  .auth-register-form .hm-worker-choice-card-v42 em{
    font-size:12.5px !important;
  }
}


/* ===== Job search mode clean layout v64 ===== */

.hm-job-mode-v64{
  grid-column:1 / -1 !important;
  width:100% !important;
  max-width:100% !important;
  display:block !important;
  margin:22px 0 28px !important;
  padding:0 !important;
  box-sizing:border-box !important;
}

.hm-job-mode-title-v64{
  width:100% !important;
  margin:0 0 14px !important;
  color:#142238 !important;
  font-size:16px !important;
  line-height:1.35 !important;
  font-weight:950 !important;
  text-align:left !important;
}

.hm-job-mode-grid-v64{
  width:100% !important;
  max-width:100% !important;
  display:grid !important;
  grid-template-columns:1fr !important;
  gap:16px !important;
  align-items:stretch !important;
}

.hm-job-mode-card-v64{
  position:relative !important;
  width:100% !important;
  max-width:100% !important;
  min-width:0 !important;
  display:block !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  cursor:pointer !important;
  box-sizing:border-box !important;
}

.hm-job-mode-card-v64 input{
  position:absolute !important;
  opacity:0 !important;
  pointer-events:none !important;
}

.hm-job-mode-card-v64 span{
  width:100% !important;
  max-width:100% !important;
  min-height:132px !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  gap:10px !important;
  padding:24px !important;
  border:1px solid #dfe8ee !important;
  border-radius:24px !important;
  background:#ffffff !important;
  box-shadow:0 12px 34px rgba(15,23,42,.045) !important;
  box-sizing:border-box !important;
  transition:.18s ease !important;
}

.hm-job-mode-card-v64 b{
  display:block !important;
  width:100% !important;
  color:#122238 !important;
  font-size:18px !important;
  line-height:1.25 !important;
  font-weight:950 !important;
  white-space:normal !important;
  overflow-wrap:break-word !important;
}

.hm-job-mode-card-v64 em{
  display:block !important;
  width:100% !important;
  max-width:720px !important;
  color:#697586 !important;
  font-style:normal !important;
  font-size:14px !important;
  line-height:1.45 !important;
  font-weight:750 !important;
  white-space:normal !important;
  overflow-wrap:break-word !important;
}

.hm-job-mode-card-v64 small{
  display:none !important;
  width:max-content !important;
  margin-top:auto !important;
  padding:7px 11px !important;
  border-radius:999px !important;
  background:#004f43 !important;
  color:#ffffff !important;
  font-size:11px !important;
  line-height:1 !important;
  font-weight:950 !important;
}

.hm-job-mode-card-v64:hover span{
  border-color:rgba(0,79,67,.32) !important;
  box-shadow:0 18px 44px rgba(15,23,42,.09) !important;
  transform:translateY(-1px) !important;
}

.hm-job-mode-card-v64 input:checked + span{
  border-color:#004f43 !important;
  background:linear-gradient(180deg,#ffffff 0%,#effaf7 100%) !important;
  box-shadow:
    0 18px 44px rgba(0,79,67,.13),
    inset 0 0 0 1px rgba(0,79,67,.18) !important;
}

.hm-job-mode-card-v64 input:checked + span b{
  color:#004f43 !important;
}

.hm-job-mode-card-v64 input:checked + span small{
  display:inline-flex !important;
}

@media(max-width:620px){
  .hm-job-mode-v64{
    margin:18px 0 22px !important;
  }

  .hm-job-mode-grid-v64{
    gap:12px !important;
  }

  .hm-job-mode-card-v64 span{
    min-height:auto !important;
    padding:18px !important;
    border-radius:20px !important;
  }

  .hm-job-mode-card-v64 b{
    font-size:15px !important;
  }

  .hm-job-mode-card-v64 em{
    max-width:100% !important;
    font-size:12.5px !important;
  }
}

/* ===== Mobile first-entry modal ===== */
.hm-entry-modal{
  z-index:130;
  background:rgba(12,18,28,.48);
  backdrop-filter:blur(12px);
  padding:16px;
}

.hm-entry-card{
  width:min(430px,calc(100% - 18px));
  background:#fff;
  border-radius:28px;
  padding:18px 18px 18px;
  position:relative;
  box-shadow:0 28px 80px rgba(15,23,42,.24);
}

.hm-entry-close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border:0;
  border-radius:14px;
  background:#f3f6f8;
  color:#243446;
  font-size:28px;
  line-height:1;
}

.hm-entry-brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:4px 40px 14px;
}

.hm-entry-brand-badge{
  width:58px;
  height:58px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--green),var(--green-2));
  color:#fff;
  font-size:24px;
  font-weight:900;
  box-shadow:0 16px 30px rgba(0,79,67,.24);
  flex:none;
}

.hm-entry-brand-text{
  display:grid;
  gap:2px;
}

.hm-entry-brand-text strong{
  font-size:20px;
  line-height:1.1;
  color:#172438;
  font-weight:900;
}

.hm-entry-brand-text span{
  font-size:13px;
  color:#6b7280;
  line-height:1.35;
}

.hm-entry-title{
  margin:0;
  text-align:center;
  font-size:26px;
  line-height:1.12;
  font-weight:900;
  color:#172438;
}

.hm-entry-subtitle{
  margin:10px 0 0;
  text-align:center;
  color:#667084;
  font-size:14px;
  line-height:1.5;
}

.hm-entry-role-list{
  display:grid;
  gap:12px;
  margin:18px 0 18px;
}

.hm-entry-role{
  width:100%;
  border:1.5px solid #d9e0e7;
  border-radius:22px;
  background:#fff;
  padding:14px;
  display:grid;
  grid-template-columns:56px 1fr;
  gap:14px;
  text-align:left;
  transition:.2s ease;
}

.hm-entry-role.is-selected{
  border-color:var(--green);
  background:#f5fbf9;
  box-shadow:0 0 0 4px rgba(0,79,67,.08);
}

.hm-entry-role-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:#eef2f5;
  color:var(--green);
  font-size:23px;
}

.hm-entry-role-content{
  display:grid;
  gap:6px;
}

.hm-entry-role-content strong{
  font-size:18px;
  line-height:1.2;
  color:#172438;
  font-weight:900;
}

.hm-entry-role-content em{
  font-style:normal;
  font-size:14px;
  line-height:1.45;
  color:#667084;
}

.hm-entry-features{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:2px;
}

.hm-entry-features span{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:#edf4f2;
  color:var(--green);
  font-size:12px;
  font-weight:800;
}

.hm-entry-actions{
  display:grid;
  gap:10px;
}

.hm-entry-primary{
  margin-top:0;
  height:56px;
  border-radius:18px;
}

.hm-entry-secondary{
  width:100%;
  height:56px;
  border-radius:18px;
  border:1px solid #dbe3ea;
  background:#f7fafc;
  color:var(--green);
  font-weight:900;
  font-size:17px;
}

@media (min-width: 861px){
  #mobileEntryModal{
    display:none !important;
  }
}

@media (max-width: 480px){
  .hm-entry-card{
    width:min(100%,calc(100% - 6px));
    border-radius:24px;
    padding:16px;
  }

  .hm-entry-brand{
    margin:0 36px 12px;
  }

  .hm-entry-title{
    font-size:23px;
  }

  .hm-entry-role{
    grid-template-columns:48px 1fr;
    gap:12px;
    border-radius:20px;
    padding:13px;
  }

  .hm-entry-role-icon{
    width:48px;
    height:48px;
    border-radius:15px;
    font-size:21px;
  }

  .hm-entry-role-content strong{
    font-size:17px;
  }

  .hm-entry-role-content em{
    font-size:13px;
  }

  .hm-entry-features span{
    font-size:11px;
    min-height:28px;
  }
}


/* ===== Vacancy builder additions v48 ===== */
.emp-profile-shell-v20 .emp-tabs-v20,
.emp-profile-shell-v20 .jp-tabs-v20{
  background: #d4f3ef;
  border-color: rgba(255,255,255,.24);
  box-shadow:0 26px 74px rgba(0,79,67,.22);
}

.emp-profile-shell-v20 .emp-tabs-v20 a,
.emp-profile-shell-v20 .jp-tabs-v20 a{
  color:#fff;
  background:rgba(255,255,255,.10);
  border-color:rgba(255,255,255,.13);
}

.emp-profile-shell-v20 .emp-tabs-v20 a:hover,
.emp-profile-shell-v20 .jp-tabs-v20 a:hover{
  background:rgba(255,255,255,.18);
  border-color:rgba(255,255,255,.24);
  box-shadow:0 18px 44px rgba(0,0,0,.14);
}

.emp-profile-shell-v20 .emp-tabs-v20 a.is-active,
.emp-profile-shell-v20 .jp-tabs-v20 a.is-active{
  color:#004f43;
  background:#fff;
  border-color:rgba(255,255,255,.66);
  box-shadow:0 20px 48px rgba(0,0,0,.18);
}

.emp-profile-shell-v20 .emp-tabs-v20 small,
.emp-profile-shell-v20 .jp-tabs-v20 small{
  color:rgba(255,255,255,.76);
}

.emp-profile-shell-v20 .emp-tabs-v20 a.is-active small,
.emp-profile-shell-v20 .jp-tabs-v20 a.is-active small{
  color:#6d7b8d;
}

.emp-v20-extra-card,
.emp-v20-benefits-card{
  margin-top:18px;
}

.emp-v20-chip-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.emp-v20-salary-meta{
  margin-top:16px;
}

.emp-v20-mini-note{
  margin:10px 0 0;
  color:#7b8798;
  font-size:13px;
  line-height:1.45;
  font-weight:700;
}

.emp-v20-benefits-select{
  position:relative;
  margin-top:12px;
}

.emp-v20-benefits-select > summary{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 18px;
  border:2px solid rgba(45,177,255,.88);
  border-radius:18px;
  background:#fff;
  color:#26364d;
  font-weight:800;
  cursor:pointer;
  list-style:none;
  box-shadow:0 14px 34px rgba(45,177,255,.08);
}

.emp-v20-benefits-select > summary::-webkit-details-marker{display:none}

.emp-v20-benefits-select > summary:after{
  content:"";
  width:10px;
  height:10px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-2px);
  transition:.18s ease;
}

.emp-v20-benefits-select[open] > summary:after{
  transform:rotate(225deg) translateY(-2px);
}

.emp-v20-benefits-menu{
  display:grid;
  gap:10px;
  margin-top:10px;
  padding:14px;
  border:1px solid #e8eef5;
  border-radius:20px;
  background:#fff;
  box-shadow:0 22px 54px rgba(15,31,53,.10);
}

.emp-v20-benefits-menu .emp-v20-choice{
  justify-content:flex-start;
}

@media (max-width:720px){
  .emp-v20-chip-grid{gap:9px}
  .emp-v20-benefits-menu{max-height:360px;overflow:auto}
}


/* ===== Outstaffing HandyMens workers v1 ===== */
.outstaffing-workers-section-v1{
  padding:0 0 96px;
}

.outstaffing-workers-head-v1{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:28px;
  padding:34px;
  border:1px solid #e5ecea;
  border-radius:34px;
  background:
    radial-gradient(circle at 92% 12%, rgba(0,79,67,.11), transparent 30%),
    linear-gradient(135deg,#ffffff 0%,#f4fbf8 100%);
  box-shadow:0 20px 62px rgba(15,23,42,.07);
}

.outstaffing-workers-head-v1 > div{
  max-width:820px;
}

.outstaffing-workers-head-v1 span{
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-height:34px;
  padding:8px 12px;
  border-radius:999px;
  background:#e8f6f3;
  color:#004f43;
  font-size:12px;
  line-height:1;
  font-weight:950;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.outstaffing-workers-head-v1 h2{
  margin:18px 0 0;
  color:#102033;
  font-size:clamp(28px,4vw,46px);
  line-height:1.08;
  letter-spacing:-1.1px;
  font-weight:950;
}

.outstaffing-workers-head-v1 p{
  margin:14px 0 0;
  color:#667085;
  font-size:16px;
  line-height:1.7;
  font-weight:650;
}

.outstaffing-workers-head-v1 strong{
  flex:0 0 auto;
  min-width:160px;
  padding:18px;
  border-radius:26px;
  background:#004f43;
  color:#dffbf4;
  text-align:center;
  box-shadow:0 18px 38px rgba(0,79,67,.18);
}

.outstaffing-workers-head-v1 strong b{
  display:block;
  color:#fff;
  font-size:34px;
  line-height:1;
  font-weight:950;
}

.outstaffing-workers-head-v1 strong{
  font-size:13px;
  line-height:1.35;
  font-weight:850;
}

.outstaffing-workers-grid-v1{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}

.outstaffing-worker-card-v1{
  display:flex;
  flex-direction:column;
  min-height:100%;
  padding:24px;
  border-radius:30px;
  background:#fff;
  border:1px solid #e5ecea;
  box-shadow:0 18px 52px rgba(15,23,42,.08);
  transition:.18s ease;
}

.outstaffing-worker-card-v1:hover{
  transform:translateY(-2px);
  box-shadow:0 24px 68px rgba(15,23,42,.12);
}

.outstaffing-worker-top-v1{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.outstaffing-worker-avatar-v1{
  width:64px;
  height:64px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  overflow:hidden;
  border-radius:22px;
  background:
    radial-gradient(circle at 75% 12%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(145deg,#004f43,#087464);
  color:#fff;
  font-size:28px;
  font-weight:950;
  text-transform:uppercase;
}

.outstaffing-worker-avatar-v1 img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.outstaffing-worker-top-v1 span{
  display:inline-flex;
  min-height:28px;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:#eef7f4;
  color:#004f43;
  font-size:12px;
  line-height:1;
  font-weight:950;
}

.outstaffing-worker-top-v1 h3{
  margin:12px 0 0;
  color:#102033;
  font-size:22px;
  line-height:1.25;
  letter-spacing:-.45px;
  font-weight:950;
}

.outstaffing-worker-top-v1 p{
  margin:6px 0 0;
  color:#667085;
  font-size:14px;
  line-height:1.45;
  font-weight:750;
}

.outstaffing-worker-badge-v1{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:18px;
  padding:13px;
  border-radius:20px;
  background:linear-gradient(135deg,#ecfdf5,#f0fdfa);
  border:1px solid rgba(0,79,67,.15);
  color:#004f43;
}

.outstaffing-worker-badge-v1 i{
  width:30px;
  height:30px;
  flex:0 0 auto;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:#004f43;
  color:#fff;
  font-size:13px;
}

.outstaffing-worker-badge-v1 span{
  display:block;
  color:#216559;
  font-size:13px;
  line-height:1.45;
  font-weight:850;
}

.outstaffing-worker-badge-v1 small{
  display:block;
  margin-top:4px;
  color:#004f43;
  font-size:12px;
  line-height:1.4;
  font-weight:950;
}

.outstaffing-worker-meta-v1{
  display:grid;
  gap:9px;
  margin-top:18px;
}

.outstaffing-worker-meta-v1 span{
  display:flex;
  align-items:flex-start;
  gap:8px;
  min-height:36px;
  padding:9px 11px;
  border-radius:14px;
  background:#f6f9fb;
  color:#617083;
  font-size:13px;
  line-height:1.35;
  font-weight:750;
}

.outstaffing-worker-meta-v1 i{
  margin-top:1px;
  color:#004f43;
}

.outstaffing-worker-meta-v1 b{
  color:#122033;
  font-weight:950;
}

.outstaffing-worker-skills-v1{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.outstaffing-worker-skills-v1 span{
  padding:7px 10px;
  border-radius:999px;
  background:#eef3f6;
  color:#5d6a7a;
  font-size:12px;
  line-height:1;
  font-weight:850;
}

.outstaffing-worker-link-v1{
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  margin-top:auto;
  padding:0 16px;
  border-radius:16px;
  background:#004f43;
  color:#fff;
  font-size:14px;
  font-weight:950;
  box-shadow:0 16px 34px rgba(0,79,67,.17);
  transition:.18s ease;
}

.outstaffing-worker-link-v1:hover{
  transform:translateY(-1px);
  background:#003f36;
}

.outstaffing-workers-empty-v1{
  padding:42px;
  border-radius:30px;
  background:#fff;
  border:1px dashed #cbd8d4;
  text-align:center;
  box-shadow:0 18px 52px rgba(15,23,42,.06);
}

.outstaffing-workers-empty-v1 > span{
  width:64px;
  height:64px;
  display:grid;
  place-items:center;
  margin:0 auto 16px;
  border-radius:22px;
  background:#eef7f4;
  color:#004f43;
  font-size:26px;
}

.outstaffing-workers-empty-v1 h3{
  margin:0;
  color:#102033;
  font-size:24px;
  line-height:1.25;
  font-weight:950;
}

.outstaffing-workers-empty-v1 p{
  max-width:560px;
  margin:10px auto 0;
  color:#667085;
  font-size:15px;
  line-height:1.65;
  font-weight:650;
}

@media(max-width:1100px){
  .outstaffing-workers-head-v1{
    align-items:flex-start;
    flex-direction:column;
  }

  .outstaffing-workers-grid-v1{
    grid-template-columns:1fr;
  }
}

@media(max-width:720px){
  .outstaffing-workers-section-v1{
    padding-bottom:64px;
  }

  .outstaffing-workers-head-v1{
    padding:24px;
    border-radius:28px;
  }

  .outstaffing-workers-head-v1 strong{
    width:100%;
  }

  .outstaffing-worker-card-v1{
    padding:20px;
    border-radius:26px;
  }

  .outstaffing-worker-top-v1{
    gap:12px;
  }

  .outstaffing-worker-avatar-v1{
    width:56px;
    height:56px;
    border-radius:19px;
    font-size:24px;
  }

  .outstaffing-worker-top-v1 h3{
    font-size:20px;
  }
}


/* ==========================================================
   HandyMens first-visit language gate v1
   ========================================================== */

.hm-language-gate-v1 {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(5, 15, 28, .46);
  backdrop-filter: blur(6px);
}

.hm-language-gate-v1[hidden] {
  display: none !important;
}

.hm-language-gate-card-v1 {
  width: min(420px, 100%);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 75px rgba(5, 15, 28, .24);
  text-align: center;
}

.hm-language-gate-card-v1 > strong {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
  color: #102033;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
}

.hm-language-gate-card-v1 > strong i {
  color: #a1a9b5;
  font-style: normal;
  font-weight: 500;
}

.hm-language-gate-actions-v1 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hm-language-gate-actions-v1 a {
  min-width: 0;
  min-height: 58px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  padding: 8px 5px;
  border: 1px solid #dde4e7;
  border-radius: 13px;
  background: #f7f9fa;
  color: #163047;
  transition:
    border-color .16s ease,
    background .16s ease,
    transform .16s ease;
}

.hm-language-gate-actions-v1 a:hover {
  border-color: #004f43;
  background: #eef8f5;
  transform: translateY(-1px);
}

.hm-language-gate-actions-v1 a b {
  color: #004f43;
  font-size: 14px;
  font-weight: 900;
}

.hm-language-gate-actions-v1 a span {
  min-width: 0;
  overflow: hidden;
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.hm-language-gate-open-v1 {
  overflow: hidden;
}

@media (max-width: 400px) {
  .hm-language-gate-card-v1 {
    padding: 17px;
    border-radius: 17px;
  }

  .hm-language-gate-card-v1 > strong {
    font-size: 12px;
  }

  .hm-language-gate-actions-v1 a {
    min-height: 54px;
  }

  .hm-language-gate-actions-v1 a span {
    font-size: 11px;
  }
}



/* ==========================================================
   Jobs vacancy primary image v4
   ========================================================== */

.jobs-page-v2 .jobs-card-image-v4 {
  position: relative;
  z-index: 3;
  display: block;
  height: 154px;
  margin: -34px -32px 24px;
  overflow: hidden;
  background: #e9efef;
}

.jobs-page-v2 .jobs-card-image-v4::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, .12)
  );
}

.jobs-page-v2 .jobs-card-image-v4 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .28s ease;
}

.jobs-page-v2
.jobs-vacancy-card-v3.has-image:hover
.jobs-card-image-v4 img {
  transform: scale(1.035);
}

.jobs-page-v2
.jobs-vacancy-card-v3.has-image
h2 {
  max-width: 100% !important;
}

@media (max-width: 820px) {
  .jobs-page-v2 .jobs-card-image-v4 {
    height: 138px;
    margin: -26px -22px 21px;
  }
}

@media (max-width: 760px) {
  .route-jobs .jobs-card-image-v4 {
    height: 124px;
    margin: -20px -16px 18px;
  }

  .route-jobs
  .jobs-vacancy-card-v3.has-image
  h2 {
    max-width: 100% !important;
  }
}

/* ==========================================================
   Home page vacancy primary image v5
   /ru, /uz va /tj bosh sahifalari
   ========================================================== */

/*
 * Rasm kartaning ichidagi 28px paddingni to‘ldirib,
 * yuqori va yon chegaralargacha chiqadi.
 */
.day-vacancies.jobs-modern .home-vacancy-image-v5 {
  position: relative;
  z-index: 3;
  display: block;
  width: auto;
  height: 168px;
  flex: 0 0 168px;
  margin: -28px -28px 22px;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: #e8eeed;
}

/*
 * Rasmning pastki qismida yengil soya.
 */
.day-vacancies.jobs-modern .home-vacancy-image-v5::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(5, 15, 28, 0),
    rgba(5, 15, 28, .16)
  );
}

/*
 * Rasm blokni to‘liq egallaydi.
 */
.day-vacancies.jobs-modern .home-vacancy-image-v5 img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform .3s ease;
}

/*
 * Sichqoncha olib borilganda yengil kattalashish.
 */
.day-vacancies.jobs-modern
.vacancy-card-modern.has-image:hover
.home-vacancy-image-v5 img {
  transform: scale(1.045);
}

/*
 * Rasmli kartada sarlavhaning yuqori bo‘shlig‘ini kamaytiramiz.
 * Chunki rasmning o‘zidan keyin allaqachon 22px joy mavjud.
 */
.day-vacancies.jobs-modern
.vacancy-card-modern.has-image
h3 {
  max-width: 100%;
  min-height: 64px;
  margin: 0 0 20px;
}

/*
 * Rasmli kartada fon orb rasm ustiga xalaqit bermaydi.
 */
.day-vacancies.jobs-modern
.vacancy-card-modern.has-image
.vacancy-card-orb {
  opacity: .35;
}

/*
 * Kartalar bir qatorda bir xil balandlikda turadi.
 */
.day-vacancies.jobs-modern
.vacancy-modern-grid {
  align-items: stretch;
}

.day-vacancies.jobs-modern
.vacancy-card-modern {
  height: 100%;
}

.day-vacancies.jobs-modern
.vacancy-card-modern
.vacancy-card-link {
  height: 100%;
}

/* ==========================================================
   Planshet
   Kartada padding 24px bo‘ladi
   ========================================================== */

@media (max-width: 1120px) {
  .day-vacancies.jobs-modern .home-vacancy-image-v5 {
    height: 158px;
    flex-basis: 158px;
    margin: -24px -24px 20px;
    border-radius: 28px 28px 0 0;
  }

  .day-vacancies.jobs-modern
  .vacancy-card-modern.has-image
  h3 {
    min-height: 54px;
    margin-bottom: 18px;
  }
}

/* ==========================================================
   Mobil qurilma
   Kartada padding 22px va radius 22px bo‘ladi
   ========================================================== */

@media (max-width: 680px) {
  .day-vacancies.jobs-modern .home-vacancy-image-v5 {
    height: 148px;
    flex-basis: 148px;
    margin: -22px -22px 18px;
    border-radius: 22px 22px 0 0;
  }

  .day-vacancies.jobs-modern
  .vacancy-card-modern.has-image
  h3 {
    min-height: auto;
    margin: 0 0 16px;
    font-size: 19px;
  }
}