:root{
  --blue: #0e2e63;
  --blue2:#0b2550;
  --bg:#ffffff;
  --muted:#6b7280;
  --card:#f3f4f6;
  --radius: 18px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:#111827;
  background: var(--bg);
}

.container{
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

/* NAV */
.brand{ display:flex; align-items:center; gap:12px; }
.brand__img{ height:54px; width:300px; }

.nav{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:15px;
  padding-bottom:7px;
}
.nav__menu{
  display:flex;
  gap:10px;
  margin-left:30px;
}
.nav__menu a{
  text-decoration:none;
  color:#111;
  font-weight:600;
  transition: color 0.2s ease;
  white-space:nowrap;
}
.nav__menu a:hover{ color: var(--blue); }
.nav__menu a:not(:last-child)::after{
  content:"|";
  margin-left:10px;
  margin-right:4px;
  color:black;
}

/* PAGEBAR */
.pagebar{
  background: var(--blue);
  color:#fff;
  padding: 22px 0;
}
.pagebar__inner{
  text-align:center;
}
.pagebar h1{
  margin:0;
  font-size: 23px;
  font-weight: 700;
}
.pagebar p{
  margin:4px 0 0;
  font-size: 16px;
  opacity: .9;
  font-weight: 600;
}

/* MAIN */
.careers{
  padding: 26px 0 70px;
}

/* INTRO (left text + right image) */
.intro{
  display:grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items:start;
  margin-bottom: 22px;
}

.intro__left h2{
  margin:0 0 10px;
  font-size: 28px;
  font-weight: 796;
}

.intro__left p{
  margin:0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  max-width: 520px;
  font-weight: 590;
  color:#111;
}

.intro__right{
  display:flex;
  justify-content:flex-end;
}
.intro__right img{

  width: 535px;
  height: 225px;
  object-fit: cover;
  border-radius: 10px;
  display:block;
}

/* INFO BOXES */
.info{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin: 16px 0 26px;
}

.info__box{
  background: #f1f5f9;
  border-radius: 10px;
  padding: 14px 16px;
}

.info__box h3{
  margin:0 0 10px;
  font-size: 14px;
  font-weight: 799.99;
  color: var(--blue);
}

.info__box p{
  margin:0 0 8px;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 590;
}

.info__box ul{
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 590;
}

/* OPENINGS */
.openings{
  margin-top: 8px;
  text-align:center;
}
.openings__title{
  margin: 14px 0 14px;
  font-size: 16px;
  font-weight: 796;
}
.openings__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 auto;
}
.job{
  text-decoration:none;
  color:#111827;
  background:#d9d9d9;
  border-radius: 10px;
  padding: 27px 22px;
  min-height: 110px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.job:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}
.job__title{
  font-size: 20px;
  font-weight: 897;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 8px;
}
.job__desc{
  font-size: 10px;
  color:#374151;
  line-height: 1.35;
  font-weight: 697;
}

.openings__note{
  margin: 14px 0 0;
  font-size: 12px;
  font-weight: 697;
}

/* PROCESS */
.process{
  margin-top: 18px;
  text-align:center;
}
.process__title{
  margin: 18px 0 18px;
  font-size: 14px;
  font-weight: 799;
}

.process__row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 18px;
  flex-wrap: wrap;
}

.step__circle{
  width: 112px;
  height: 112px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 8px solid #d1d5db;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size: 12px;
  font-weight: 799;
  color:#111;
  line-height: 1.15;
}

.arrow{
  font-size: 34px;
  font-weight: 900;
  color:#111;
  transform: translateY(-2px);
}

.process__footer{
  margin-top: 16px;
  font-size: 12px;
  font-weight: 697;
  line-height: 1.6;
}
.process__email{
  margin: 6px 0 0;
}

/* FOOTER */
.footer{
  background: var(--blue);
  color: #fff;
  padding: 40px 0 0;
}

.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 45px;
}

.footer__title{
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 697;
}

.footer__text{
  margin: 0;
  max-width: 280px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}

.footer__col{
  display:flex;
  flex-direction:column;
  gap: 14px;
}

.footer__link{
  text-decoration:none;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
}

.footer__link:hover{ color:#ffffff; }

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 0;
}

.footer__bottom-inner{
  display:flex;
  justify-content:center;
  text-align:center;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* responsive */
@media (max-width: 980px){
  .intro{ grid-template-columns: 1fr; }
  .info{ grid-template-columns: 1fr; }
  .openings__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px){
  .openings__grid{ grid-template-columns: 1fr; }
  .nav__menu{ flex-wrap: wrap; justify-content:flex-end; }
}