:root{
  --blue:#0d5b9d;
  --orange:#f58220;
  --green:#2b8d3d;
  --ink:#1a2433;
  --muted:#6d7685;
  --line:#e6eaf0;
  --soft:#f7f9fc;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  background:#f4f6f9;
  color:var(--ink);
}
.page{max-width:900px;margin:auto;padding:22px 16px 50px}

.company-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:20px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  box-shadow:0 8px 22px rgba(18,35,58,.05)
}
.brand{display:flex;align-items:center;gap:14px;min-width:0}
.brand img{width:68px;height:68px;object-fit:contain;flex:none}
.brand h1{margin:0;color:var(--blue);font-size:25px}
.brand .address{margin-top:5px;font-size:11px;color:#5d6675}
.brand .services{margin-top:7px;font-size:10px;color:#7a8290;font-weight:700}
.phone{
  text-align:right;
  border-left:1px solid var(--line);
  padding-left:20px;
  white-space:nowrap
}
.phone span{display:block;font-size:9px;color:#8d95a3;text-transform:uppercase;letter-spacing:.7px;font-weight:800}
.phone a{display:block;margin-top:3px;font-size:18px;font-weight:900;color:var(--ink);text-decoration:none}

.recruit-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  margin-top:16px;
  padding:28px 26px;
  box-shadow:0 8px 22px rgba(18,35,58,.05)
}
.recruit-top{text-align:center;max-width:650px;margin:auto}
.kicker{
  display:inline-block;
  font-size:10px;font-weight:900;
  color:var(--orange);
  letter-spacing:1.2px;
  text-transform:uppercase
}
.recruit-top h2{font-size:28px;margin:8px 0 8px}
.recruit-top p{margin:0;color:var(--muted);font-size:12px;line-height:1.55}

.roles{margin-top:24px;display:grid;gap:12px}
.role{
  text-decoration:none;color:inherit;
  display:grid;
  grid-template-columns:54px 1fr auto;
  align-items:center;
  gap:14px;
  border:1px solid var(--line);
  border-radius:14px;
  padding:15px 16px;
  background:#fff;
  transition:.18s ease
}
.role:hover{
  border-color:#cbd5df;
  background:#fbfcfe;
  transform:translateY(-1px)
}
.role-icon{
  width:50px;height:50px;border-radius:12px;
  background:#edf4fa;
  display:grid;place-items:center;font-size:21px
}
.role h3{font-size:14px;margin:0 0 5px}
.role p{font-size:10.5px;margin:0;color:var(--muted);line-height:1.45}
.tags{display:flex;gap:6px;flex-wrap:wrap;margin-top:8px}
.tag{
  display:inline-flex;align-items:center;
  padding:5px 7px;border-radius:999px;
  font-size:8.5px;font-weight:900
}
.tag.female{background:#fff5d9;color:#7c5800}
.tag.salary{background:#edf8f1;color:#176d40}
.tag.general{background:#edf4fa;color:#0d5b9d}
.arrow{
  width:36px;height:36px;border-radius:10px;
  display:grid;place-items:center;
  background:var(--blue);color:#fff;
  font-size:16px;font-weight:900
}

.info{
  margin-top:16px;
  padding:12px 13px;
  border-radius:11px;
  background:#f8fafc;
  border:1px solid var(--line);
  font-size:9.5px;
  color:#697386;
  line-height:1.5;
  text-align:center
}

.footer{
  text-align:center;
  padding:18px 8px 0;
  color:#8a93a2;
  font-size:9px
}

@media(max-width:650px){
  .page{padding:10px 9px 36px}
  .company-card{
    padding:13px;
    border-radius:14px;
    align-items:flex-start
  }
  .brand img{width:52px;height:52px}
  .brand{gap:10px}
  .brand h1{font-size:18px}
  .brand .address{font-size:9px;max-width:220px;line-height:1.35}
  .brand .services{font-size:8px;line-height:1.35}
  .phone{padding-left:10px}
  .phone span{font-size:6.5px}
  .phone a{font-size:12px}
  .recruit-card{padding:20px 13px;border-radius:14px}
  .recruit-top h2{font-size:23px}
  .recruit-top p{font-size:10.5px}
  .roles{margin-top:18px;gap:9px}
  .role{
    grid-template-columns:44px 1fr 32px;
    gap:10px;
    padding:12px
  }
  .role-icon{width:42px;height:42px;font-size:18px}
  .role h3{font-size:12.5px}
  .role p{font-size:9.5px}
  .tag{font-size:7.5px;padding:4px 6px}
  .arrow{width:31px;height:31px;border-radius:9px;font-size:14px}
}

/* Desktop decorative work animations */
.desktop-work-art{
  position:fixed;
  top:50%;
  transform:translateY(-50%);
  width:150px;
  height:390px;
  pointer-events:none;
  z-index:0;
}
.desktop-work-art.left{left:12px}
.desktop-work-art.right{right:12px}

.float-card{
  position:absolute;
  width:92px;
  height:92px;
  border-radius:24px;
  background:rgba(255,255,255,.96);
  border:1px solid #e7ebf1;
  box-shadow:0 16px 40px rgba(20,42,72,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  animation:floatWork 4.8s ease-in-out infinite;
}
.float-card.small{
  width:68px;
  height:68px;
  border-radius:19px;
  font-size:26px;
}
.float-card:nth-child(2){animation-delay:.8s}
.float-card:nth-child(3){animation-delay:1.6s}

.desktop-work-art.left .float-card:nth-child(1){top:18px;left:20px}
.desktop-work-art.left .float-card:nth-child(2){top:152px;left:58px}
.desktop-work-art.left .float-card:nth-child(3){top:285px;left:10px}

.desktop-work-art.right .float-card:nth-child(1){top:22px;right:18px}
.desktop-work-art.right .float-card:nth-child(2){top:154px;right:58px}
.desktop-work-art.right .float-card:nth-child(3){top:288px;right:8px}

.pulse-dot{
  position:absolute;
  width:15px;
  height:15px;
  border-radius:50%;
  background:#f58220;
  box-shadow:0 0 0 0 rgba(245,130,32,.28);
  animation:pulseWork 2.3s infinite;
}
.desktop-work-art.left .pulse-dot{right:18px;top:112px}
.desktop-work-art.right .pulse-dot{left:18px;top:110px}

@keyframes floatWork{
  0%,100%{transform:translateY(0) rotate(0deg)}
  50%{transform:translateY(-12px) rotate(2deg)}
}
@keyframes pulseWork{
  0%{box-shadow:0 0 0 0 rgba(245,130,32,.30)}
  70%{box-shadow:0 0 0 16px rgba(245,130,32,0)}
  100%{box-shadow:0 0 0 0 rgba(245,130,32,0)}
}

.page{position:relative;z-index:1}

@media(max-width:1180px){
  .desktop-work-art{display:none}
}
